oysterun 1.4.8 → 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.
Files changed (71) hide show
  1. package/README.md +8 -0
  2. package/dev/client/web/index.html +748 -197
  3. package/dev/client/web-chat/dist/assets/{ReactPrism-C6f8462z.js → ReactPrism-Dvxp38RS.js} +1 -1
  4. package/dev/client/web-chat/dist/assets/{ReactPrism-C6f8462z.js.map → ReactPrism-Dvxp38RS.js.map} +1 -1
  5. package/dev/client/web-chat/dist/assets/{index-Bhqm7xK7.js → index-5iJVcklH.js} +2 -2
  6. package/dev/client/web-chat/dist/assets/{index-Bhqm7xK7.js.map → index-5iJVcklH.js.map} +1 -1
  7. package/dev/client/web-chat/dist/assets/{index-BXXBmMM8.js → index-BRrMvB8k.js} +97 -97
  8. package/dev/client/web-chat/dist/assets/index-BRrMvB8k.js.map +1 -0
  9. package/dev/client/web-chat/dist/assets/{index-tlM2bptc.js → index-CdJBbrB6.js} +1 -1
  10. package/dev/client/web-chat/dist/assets/{index-tlM2bptc.js.map → index-CdJBbrB6.js.map} +1 -1
  11. package/dev/client/web-chat/dist/assets/{pdf-D0Ks17S3.js → pdf-C_dxab-C.js} +3 -3
  12. package/dev/client/web-chat/dist/assets/{pdf-D0Ks17S3.js.map → pdf-C_dxab-C.js.map} +1 -1
  13. package/dev/client/web-chat/dist/assets/{web-Bnl6J5CG.js → web-CDiscXap.js} +1 -1
  14. package/dev/client/web-chat/dist/assets/{web-Bnl6J5CG.js.map → web-CDiscXap.js.map} +1 -1
  15. package/dev/client/web-chat/dist/assets/{web-lzzU_sai.js → web-PnVxTH3H.js} +1 -1
  16. package/dev/client/web-chat/dist/assets/{web-lzzU_sai.js.map → web-PnVxTH3H.js.map} +1 -1
  17. package/dev/client/web-chat/dist/index.html +1 -1
  18. package/docs/routec/form_UI_fields.md +5 -2
  19. package/docs/routec/oysterun_operation_interface_spec.md +0 -1
  20. package/docs/routec/provider_contract.md +0 -1
  21. package/docs/routec/tool_message_transfer_compression.md +13 -12
  22. package/host-service/adapters/claude-code-adapter.mjs +564 -50
  23. package/host-service/adapters/codex-app-server-adapter.mjs +12 -2
  24. package/host-service/assets/product-skills/Oysterun/modules/oysterun-find-context/SKILL.md +3 -5
  25. package/host-service/assets/product-skills/Oysterun/modules/oysterun-find-context/scripts/oysterun_find_context.mjs +49 -0
  26. package/host-service/assets/product-skills/Oysterun/modules/oysterun-mail/SKILL.md +3 -3
  27. package/host-service/assets/product-skills/Oysterun/modules/oysterun-mail/scripts/send_mail.mjs +1 -1
  28. package/host-service/assets/product-skills/Oysterun/modules/oysterun-notifications/SKILL.md +3 -3
  29. package/host-service/assets/product-skills/Oysterun/modules/oysterun-scheduler/SKILL.md +5 -5
  30. package/host-service/assets/product-skills/Oysterun/modules/oysterun-session-chat/SKILL.md +3 -3
  31. package/host-service/assets/product-skills/Oysterun/modules/oysterun-sessions/SKILL.md +3 -3
  32. package/host-service/assets/product-skills/Oysterun/modules/oysterun-telegram/SKILL.md +50 -6
  33. package/host-service/assets/product-skills/Oysterun/modules/oysterun-website/SKILL.md +15 -4
  34. package/host-service/assets/product-skills/oysterun-find-context/SKILL.md +3 -5
  35. package/host-service/assets/product-skills/oysterun-mail/SKILL.md +3 -3
  36. package/host-service/assets/product-skills/oysterun-mail/scripts/send_mail.mjs +1 -1
  37. package/host-service/assets/product-skills/oysterun-notifications/SKILL.md +3 -3
  38. package/host-service/assets/product-skills/oysterun-scheduler/SKILL.md +5 -5
  39. package/host-service/assets/product-skills/oysterun-session-chat/SKILL.md +3 -3
  40. package/host-service/assets/product-skills/oysterun-sessions/SKILL.md +3 -3
  41. package/host-service/assets/product-skills/oysterun-telegram/SKILL.md +50 -6
  42. package/host-service/assets/product-skills/oysterun-website/SKILL.md +15 -4
  43. package/host-service/cli/product-cli.mjs +26 -0
  44. package/host-service/folder-browser.mjs +13 -0
  45. package/host-service/large-tool-call-store.mjs +74 -14
  46. package/host-service/matrix-event-writer.mjs +1 -0
  47. package/host-service/matrix-facade.mjs +20 -2
  48. package/host-service/matrix-room-binding.mjs +1 -0
  49. package/host-service/matrix-transcript-read-adapter.mjs +37 -2
  50. package/host-service/package.json +3 -2
  51. package/host-service/portable-scheduler-definitions.mjs +122 -8
  52. package/host-service/replay-claude-acp-raw-events.mjs +193 -0
  53. package/host-service/routec-matrix-sqlite-migration-worker.mjs +36 -0
  54. package/host-service/routec-matrix-sqlite-store.mjs +2057 -0
  55. package/host-service/routec-matrix-storage-adapter.mjs +1074 -318
  56. package/host-service/scheduler-runner.mjs +3 -0
  57. package/host-service/scheduler-service.mjs +22 -7
  58. package/host-service/scheduler-setup-snapshot-contract.mjs +533 -0
  59. package/host-service/server.mjs +815 -567
  60. package/host-service/session-manager.mjs +106 -14
  61. package/host-service/setup.mjs +33 -13
  62. package/host-service/telegram-bridge.mjs +762 -110
  63. package/host-service/templates/demo-agents/oysterun-github-tracker/.claude/commands/scheduler_task.md +71 -0
  64. package/host-service/templates/demo-agents/oysterun-github-tracker/.oysterun/schedulers.json +60 -3
  65. package/host-service/templates/demo-agents/oysterun-github-tracker/README.md +11 -2
  66. package/host-service/tool-event-detail-store.mjs +13 -15
  67. package/host-service/tool-event-transfer-projection.mjs +12 -3
  68. package/host-service/unified-tool-lifecycle-detail.mjs +410 -0
  69. package/package.json +1 -1
  70. package/static/oysterun_logo_v5.PNG +0 -0
  71. package/dev/client/web-chat/dist/assets/index-BXXBmMM8.js.map +0 -1
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`: