mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-24 20:28:16 +02:00
* index slack and add to home page * filter only useful slack messages in homr * feat: bundle agent-slack CLI and route all calls through shared executor Pins agent-slack@0.9.3, bundles it next to main.cjs (replaces the startup npm install -g), adds a structured-result executor with bundled/global/PATH resolution, a slack:cliStatus IPC probe, and a PATH shim so the Copilot skill keeps working. * feat: surface Slack failures and add cross-OS auth fallbacks Classify agent-slack errors (not_authed/rate_limited/network/bad_channel), persist per-source sync status with rate-limit backoff, and expose it via slack:knowledgeStatus. Fix the Settings Enable bounce-back with actionable copy, a browser-paste (parse-curl) fallback, and a Windows quit-Slack-and-import button; add home-feed empty/error states. * feat: rank Slack home feed deterministically by recency Drop the per-load LLM ranker (cost/latency/model dependency) in favor of a stronger deterministic filter + recency ordering. The filter now removes system messages, emoji/reaction-only posts, bare greetings/acks, and empty bodies, with a durable-signal escape hatch. Expand tests to one describe per noise class plus ordering/cap/volume coverage. * fix: hide Slack knowledge Save button once saved Only show the Save button when the channel list or enabled toggle differs from the last-persisted config, so it disappears after a successful save and reappears when a new channel is entered. --------- Co-authored-by: Gagancreates <gaganp000999@gmail.com>
47 lines
No EOL
1.6 KiB
JSON
47 lines
No EOL
1.6 KiB
JSON
{
|
|
"name": "rowboat",
|
|
"productName": "Rowboat",
|
|
"description": "AI coworker with memory",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"main": ".package/dist/main.cjs",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"build": "rm -rf dist && tsc && node bundle.mjs",
|
|
"package": "electron-forge package",
|
|
"make": "electron-forge make"
|
|
},
|
|
"dependencies": {
|
|
"@agentclientprotocol/claude-agent-acp": "^0.39.0",
|
|
"@agentclientprotocol/codex-acp": "^0.0.44",
|
|
"@x/core": "workspace:*",
|
|
"@x/shared": "workspace:*",
|
|
"agent-slack": "0.9.3",
|
|
"chokidar": "^4.0.3",
|
|
"electron-squirrel-startup": "^1.0.1",
|
|
"html-to-docx": "^1.8.0",
|
|
"mammoth": "^1.11.0",
|
|
"node-pty": "^1.1.0",
|
|
"papaparse": "^5.5.3",
|
|
"pdf-parse": "^2.4.5",
|
|
"update-electron-app": "^3.1.2",
|
|
"xlsx": "^0.18.5",
|
|
"zod": "^4.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@electron-forge/cli": "^7.10.2",
|
|
"@electron-forge/maker-base": "^7.11.1",
|
|
"@electron-forge/maker-deb": "^7.11.1",
|
|
"@electron-forge/maker-dmg": "^7.10.2",
|
|
"@electron-forge/maker-rpm": "^7.11.1",
|
|
"@electron-forge/maker-squirrel": "^7.10.2",
|
|
"@electron-forge/maker-zip": "^7.10.2",
|
|
"@electron-forge/publisher-github": "^7.11.1",
|
|
"@electron-forge/publisher-s3": "^7.10.2",
|
|
"@types/electron-squirrel-startup": "^1.0.2",
|
|
"@types/node": "^25.0.3",
|
|
"electron": "^39.2.7",
|
|
"esbuild": "^0.24.2"
|
|
}
|
|
} |