oysterun 1.4.7 → 1.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dev/client/web/index.html +748 -197
- package/dev/client/web-chat/dist/assets/{ReactPrism-DQpy9C6y.js → ReactPrism-Dvxp38RS.js} +1 -1
- package/dev/client/web-chat/dist/assets/{ReactPrism-DQpy9C6y.js.map → ReactPrism-Dvxp38RS.js.map} +1 -1
- package/dev/client/web-chat/dist/assets/{index-5-_pCTeV.js → index-5iJVcklH.js} +2 -2
- package/dev/client/web-chat/dist/assets/{index-5-_pCTeV.js.map → index-5iJVcklH.js.map} +1 -1
- package/dev/client/web-chat/dist/assets/{index-DKEDScEA.js → index-BRrMvB8k.js} +97 -97
- package/dev/client/web-chat/dist/assets/index-BRrMvB8k.js.map +1 -0
- package/dev/client/web-chat/dist/assets/{index-DogixscE.js → index-CdJBbrB6.js} +1 -1
- package/dev/client/web-chat/dist/assets/{index-DogixscE.js.map → index-CdJBbrB6.js.map} +1 -1
- package/dev/client/web-chat/dist/assets/{pdf-AYwu3-03.js → pdf-C_dxab-C.js} +3 -3
- package/dev/client/web-chat/dist/assets/{pdf-AYwu3-03.js.map → pdf-C_dxab-C.js.map} +1 -1
- package/dev/client/web-chat/dist/assets/{web-CXqN5ZBB.js → web-CDiscXap.js} +1 -1
- package/dev/client/web-chat/dist/assets/{web-CXqN5ZBB.js.map → web-CDiscXap.js.map} +1 -1
- package/dev/client/web-chat/dist/assets/{web-BGIphkU6.js → web-PnVxTH3H.js} +1 -1
- package/dev/client/web-chat/dist/assets/{web-BGIphkU6.js.map → web-PnVxTH3H.js.map} +1 -1
- package/dev/client/web-chat/dist/index.html +1 -1
- package/docs/routec/dev/scheduler_mail_skill.md +96 -0
- package/docs/routec/form_UI_fields.md +5 -2
- package/docs/routec/oysterun_operation_interface_spec.md +0 -1
- package/docs/routec/provider_contract.md +0 -1
- package/docs/routec/tool_message_transfer_compression.md +13 -12
- package/host-service/adapters/claude-code-adapter.mjs +564 -50
- package/host-service/adapters/codex-app-server-adapter.mjs +12 -2
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-find-context/SKILL.md +3 -5
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-find-context/scripts/oysterun_find_context.mjs +49 -0
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-mail/SKILL.md +10 -5
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-mail/scripts/send_mail.mjs +25 -23
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-notifications/SKILL.md +3 -3
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-scheduler/SKILL.md +17 -5
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-session-chat/SKILL.md +3 -3
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-sessions/SKILL.md +3 -3
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-telegram/SKILL.md +50 -6
- package/host-service/assets/product-skills/Oysterun/modules/oysterun-website/SKILL.md +15 -4
- package/host-service/assets/product-skills/oysterun-find-context/SKILL.md +3 -5
- package/host-service/assets/product-skills/oysterun-mail/SKILL.md +10 -5
- package/host-service/assets/product-skills/oysterun-mail/scripts/send_mail.mjs +25 -23
- package/host-service/assets/product-skills/oysterun-notifications/SKILL.md +3 -3
- package/host-service/assets/product-skills/oysterun-scheduler/SKILL.md +17 -5
- package/host-service/assets/product-skills/oysterun-session-chat/SKILL.md +3 -3
- package/host-service/assets/product-skills/oysterun-sessions/SKILL.md +3 -3
- package/host-service/assets/product-skills/oysterun-telegram/SKILL.md +50 -6
- package/host-service/assets/product-skills/oysterun-website/SKILL.md +15 -4
- package/host-service/cli/product-cli.mjs +83 -47
- package/host-service/folder-browser.mjs +142 -2
- package/host-service/large-tool-call-store.mjs +74 -14
- package/host-service/mail-notification-dispatcher.mjs +2 -2
- package/host-service/mail-store.mjs +17 -26
- package/host-service/matrix-event-writer.mjs +1 -0
- package/host-service/matrix-facade.mjs +20 -2
- package/host-service/matrix-room-binding.mjs +1 -0
- package/host-service/matrix-transcript-read-adapter.mjs +37 -2
- package/host-service/package.json +3 -2
- package/host-service/portable-scheduler-definitions.mjs +122 -8
- package/host-service/replay-claude-acp-raw-events.mjs +193 -0
- package/host-service/routec-matrix-sqlite-migration-worker.mjs +36 -0
- package/host-service/routec-matrix-sqlite-store.mjs +2057 -0
- package/host-service/routec-matrix-storage-adapter.mjs +1074 -318
- package/host-service/scheduler-direct-provider-runner.mjs +8 -1
- package/host-service/scheduler-runner.mjs +3 -0
- package/host-service/scheduler-service.mjs +64 -0
- package/host-service/scheduler-setup-snapshot-contract.mjs +533 -0
- package/host-service/server.mjs +865 -580
- package/host-service/session-manager.mjs +106 -14
- package/host-service/setup.mjs +33 -13
- package/host-service/telegram-bridge.mjs +762 -110
- package/host-service/templates/demo-agents/oysterun-github-tracker/.claude/commands/scheduler_task.md +71 -0
- package/host-service/templates/demo-agents/oysterun-github-tracker/.codex/prompts/scheduler_task.md +71 -0
- package/host-service/templates/demo-agents/oysterun-github-tracker/.oysterun/config.json +5 -1
- package/host-service/templates/demo-agents/oysterun-github-tracker/.oysterun/schedulers.json +117 -0
- package/host-service/templates/demo-agents/oysterun-github-tracker/README.md +49 -5
- package/host-service/templates/demo-agents/oysterun-github-tracker/config.json +18 -0
- package/host-service/templates/demo-agents/oysterun-github-tracker/lib/github_tracker.py +247 -0
- package/host-service/templates/demo-agents/oysterun-github-tracker/tasks/repo_crawler_rich.py +825 -0
- package/host-service/tool-event-detail-store.mjs +13 -15
- package/host-service/tool-event-transfer-projection.mjs +12 -3
- package/host-service/unified-tool-lifecycle-detail.mjs +410 -0
- package/package.json +1 -1
- package/static/oysterun_logo_v5.PNG +0 -0
- package/static/site/index.html +13 -0
- package/tool_scripts/install_oysterun_launch_agents.sh +4 -0
- package/dev/client/web-chat/dist/assets/index-DKEDScEA.js.map +0 -1
- package/host-service/templates/demo-agents/oysterun-github-tracker/agent_brief.md +0 -11
- package/host-service/templates/demo-agents/oysterun-github-tracker/issues.md +0 -11
package/README.md
CHANGED
|
@@ -151,6 +151,14 @@ What it does:
|
|
|
151
151
|
|
|
152
152
|
This is a repo development helper, not the normal product startup path and not a replacement for a real system service such as `launchd`.
|
|
153
153
|
|
|
154
|
+
To start the dev stack, register the Host with Cloud, and display the user-onboarding QR code in one command:
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
./tool_scripts/dev_up_with_qr.sh
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
The first run automatically installs missing web-chat and Host Node dependencies with `npm ci`. If the active Node version changes, it also rebuilds `better-sqlite3` for the current Node ABI.
|
|
161
|
+
|
|
154
162
|
### Optional: detached start/stop/restart scripts
|
|
155
163
|
|
|
156
164
|
If you want the Host to keep running after you close the current terminal, use the background service scripts instead of `tmux`:
|