@0xmaxma/claude-gateway 1.8.14 → 2.0.1
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 +28 -1613
- package/config.template.json +7 -1
- package/dist/agent/runner.d.ts +419 -0
- package/dist/agent/runner.d.ts.map +1 -1
- package/dist/agent/runner.js +736 -24
- package/dist/agent/runner.js.map +1 -1
- package/dist/agent/skill-learning/index.d.ts +6 -4
- package/dist/agent/skill-learning/index.d.ts.map +1 -1
- package/dist/agent/skill-learning/index.js +3 -3
- package/dist/agent/skill-learning/index.js.map +1 -1
- package/dist/agent/skill-learning/notifier.d.ts +3 -4
- package/dist/agent/skill-learning/notifier.d.ts.map +1 -1
- package/dist/agent/skill-learning/notifier.js +15 -13
- package/dist/agent/skill-learning/notifier.js.map +1 -1
- package/dist/agent/skill-learning/reviewer.d.ts.map +1 -1
- package/dist/agent/skill-learning/reviewer.js +3 -1
- package/dist/agent/skill-learning/reviewer.js.map +1 -1
- package/dist/api/connectors-router.d.ts.map +1 -1
- package/dist/api/connectors-router.js +110 -4
- package/dist/api/connectors-router.js.map +1 -1
- package/dist/api/gateway-router.d.ts +1 -0
- package/dist/api/gateway-router.d.ts.map +1 -1
- package/dist/api/gateway-router.js +13 -1
- package/dist/api/gateway-router.js.map +1 -1
- package/dist/api/line-webhook-router.d.ts +2 -2
- package/dist/api/line-webhook-router.d.ts.map +1 -1
- package/dist/api/line-webhook-router.js +264 -230
- package/dist/api/line-webhook-router.js.map +1 -1
- package/dist/api/router.d.ts.map +1 -1
- package/dist/api/router.js +162 -10
- package/dist/api/router.js.map +1 -1
- package/dist/api/share-router.d.ts.map +1 -1
- package/dist/api/share-router.js +29 -10
- package/dist/api/share-router.js.map +1 -1
- package/dist/api/slack-client.d.ts +2 -0
- package/dist/api/slack-client.d.ts.map +1 -1
- package/dist/api/slack-client.js +6 -2
- package/dist/api/slack-client.js.map +1 -1
- package/dist/api/slack-webhook-router.d.ts +3 -0
- package/dist/api/slack-webhook-router.d.ts.map +1 -1
- package/dist/api/slack-webhook-router.js +226 -131
- package/dist/api/slack-webhook-router.js.map +1 -1
- package/dist/api/voice-router.d.ts +21 -0
- package/dist/api/voice-router.d.ts.map +1 -0
- package/dist/api/voice-router.js +372 -0
- package/dist/api/voice-router.js.map +1 -0
- package/dist/api/voice-settings-router.d.ts +5 -0
- package/dist/api/voice-settings-router.d.ts.map +1 -0
- package/dist/api/voice-settings-router.js +318 -0
- package/dist/api/voice-settings-router.js.map +1 -0
- package/dist/apps/agent-container-migration.d.ts +11 -0
- package/dist/apps/agent-container-migration.d.ts.map +1 -0
- package/dist/apps/agent-container-migration.js +85 -0
- package/dist/apps/agent-container-migration.js.map +1 -0
- package/dist/apps/installer.d.ts +1 -1
- package/dist/apps/installer.d.ts.map +1 -1
- package/dist/apps/installer.js +2 -1
- package/dist/apps/installer.js.map +1 -1
- package/dist/cli/commands/tasks.d.ts +5 -0
- package/dist/cli/commands/tasks.d.ts.map +1 -0
- package/dist/cli/commands/tasks.js +92 -0
- package/dist/cli/commands/tasks.js.map +1 -0
- package/dist/cli/http-client.d.ts +2 -0
- package/dist/cli/http-client.d.ts.map +1 -1
- package/dist/cli/http-client.js +8 -3
- package/dist/cli/http-client.js.map +1 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +5 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/config/config-write-lock.d.ts +2 -0
- package/dist/config/config-write-lock.d.ts.map +1 -1
- package/dist/config/config-write-lock.js +5 -0
- package/dist/config/config-write-lock.js.map +1 -1
- package/dist/config/loader.d.ts.map +1 -1
- package/dist/config/loader.js +87 -2
- package/dist/config/loader.js.map +1 -1
- package/dist/config/migrator.d.ts.map +1 -1
- package/dist/config/migrator.js +12 -1
- package/dist/config/migrator.js.map +1 -1
- package/dist/config/watcher.d.ts.map +1 -1
- package/dist/config/watcher.js +6 -0
- package/dist/config/watcher.js.map +1 -1
- package/dist/connectors/resolve.d.ts.map +1 -1
- package/dist/connectors/resolve.js +3 -1
- package/dist/connectors/resolve.js.map +1 -1
- package/dist/connectors/types.d.ts +8 -0
- package/dist/connectors/types.d.ts.map +1 -1
- package/dist/cron/manager.d.ts.map +1 -1
- package/dist/cron/manager.js +21 -2
- package/dist/cron/manager.js.map +1 -1
- package/dist/discord/receiver.d.ts +2 -1
- package/dist/discord/receiver.d.ts.map +1 -1
- package/dist/discord/receiver.js +5 -1
- package/dist/discord/receiver.js.map +1 -1
- package/dist/history/db.d.ts +3 -0
- package/dist/history/db.d.ts.map +1 -1
- package/dist/history/db.js +21 -1
- package/dist/history/db.js.map +1 -1
- package/dist/history/types.d.ts +2 -0
- package/dist/history/types.d.ts.map +1 -1
- package/dist/index.js +48 -9
- package/dist/index.js.map +1 -1
- package/dist/orchestration/bounded-queue.d.ts +15 -0
- package/dist/orchestration/bounded-queue.d.ts.map +1 -0
- package/dist/orchestration/bounded-queue.js +58 -0
- package/dist/orchestration/bounded-queue.js.map +1 -0
- package/dist/orchestration/bridge.d.ts +55 -0
- package/dist/orchestration/bridge.d.ts.map +1 -0
- package/dist/orchestration/bridge.js +234 -0
- package/dist/orchestration/bridge.js.map +1 -0
- package/dist/orchestration/browser-routing.d.ts +7 -0
- package/dist/orchestration/browser-routing.d.ts.map +1 -0
- package/dist/orchestration/browser-routing.js +22 -0
- package/dist/orchestration/browser-routing.js.map +1 -0
- package/dist/orchestration/capabilities.d.ts +49 -0
- package/dist/orchestration/capabilities.d.ts.map +1 -0
- package/dist/orchestration/capabilities.js +417 -0
- package/dist/orchestration/capabilities.js.map +1 -0
- package/dist/orchestration/capacity.d.ts +14 -0
- package/dist/orchestration/capacity.d.ts.map +1 -0
- package/dist/orchestration/capacity.js +52 -0
- package/dist/orchestration/capacity.js.map +1 -0
- package/dist/orchestration/channel-activity.d.ts +21 -0
- package/dist/orchestration/channel-activity.d.ts.map +1 -0
- package/dist/orchestration/channel-activity.js +72 -0
- package/dist/orchestration/channel-activity.js.map +1 -0
- package/dist/orchestration/channel-controls.d.ts +32 -0
- package/dist/orchestration/channel-controls.d.ts.map +1 -0
- package/dist/orchestration/channel-controls.js +105 -0
- package/dist/orchestration/channel-controls.js.map +1 -0
- package/dist/orchestration/channel-input-media.d.ts +11 -0
- package/dist/orchestration/channel-input-media.d.ts.map +1 -0
- package/dist/orchestration/channel-input-media.js +54 -0
- package/dist/orchestration/channel-input-media.js.map +1 -0
- package/dist/orchestration/channel-media.d.ts +4 -0
- package/dist/orchestration/channel-media.d.ts.map +1 -0
- package/dist/orchestration/channel-media.js +70 -0
- package/dist/orchestration/channel-media.js.map +1 -0
- package/dist/orchestration/channel-speech.d.ts +7 -0
- package/dist/orchestration/channel-speech.d.ts.map +1 -0
- package/dist/orchestration/channel-speech.js +65 -0
- package/dist/orchestration/channel-speech.js.map +1 -0
- package/dist/orchestration/cli-skills.d.ts +12 -0
- package/dist/orchestration/cli-skills.d.ts.map +1 -0
- package/dist/orchestration/cli-skills.js +132 -0
- package/dist/orchestration/cli-skills.js.map +1 -0
- package/dist/orchestration/config.d.ts +260 -0
- package/dist/orchestration/config.d.ts.map +1 -0
- package/dist/orchestration/config.js +110 -0
- package/dist/orchestration/config.js.map +1 -0
- package/dist/orchestration/container.d.ts +21 -0
- package/dist/orchestration/container.d.ts.map +1 -0
- package/dist/orchestration/container.js +195 -0
- package/dist/orchestration/container.js.map +1 -0
- package/dist/orchestration/control-delivery.d.ts +5 -0
- package/dist/orchestration/control-delivery.d.ts.map +1 -0
- package/dist/orchestration/control-delivery.js +50 -0
- package/dist/orchestration/control-delivery.js.map +1 -0
- package/dist/orchestration/conversation-intake.d.ts +32 -0
- package/dist/orchestration/conversation-intake.d.ts.map +1 -0
- package/dist/orchestration/conversation-intake.js +92 -0
- package/dist/orchestration/conversation-intake.js.map +1 -0
- package/dist/orchestration/decisions.d.ts +27 -0
- package/dist/orchestration/decisions.d.ts.map +1 -0
- package/dist/orchestration/decisions.js +151 -0
- package/dist/orchestration/decisions.js.map +1 -0
- package/dist/orchestration/delivery.d.ts +34 -0
- package/dist/orchestration/delivery.d.ts.map +1 -0
- package/dist/orchestration/delivery.js +235 -0
- package/dist/orchestration/delivery.js.map +1 -0
- package/dist/orchestration/display-stream.d.ts +4 -0
- package/dist/orchestration/display-stream.d.ts.map +1 -0
- package/dist/orchestration/display-stream.js +77 -0
- package/dist/orchestration/display-stream.js.map +1 -0
- package/dist/orchestration/events.d.ts +30 -0
- package/dist/orchestration/events.d.ts.map +1 -0
- package/dist/orchestration/events.js +65 -0
- package/dist/orchestration/events.js.map +1 -0
- package/dist/orchestration/execution-observation.d.ts +38 -0
- package/dist/orchestration/execution-observation.d.ts.map +1 -0
- package/dist/orchestration/execution-observation.js +25 -0
- package/dist/orchestration/execution-observation.js.map +1 -0
- package/dist/orchestration/file-delivery.d.ts +16 -0
- package/dist/orchestration/file-delivery.d.ts.map +1 -0
- package/dist/orchestration/file-delivery.js +139 -0
- package/dist/orchestration/file-delivery.js.map +1 -0
- package/dist/orchestration/gateway-config.d.ts +17 -0
- package/dist/orchestration/gateway-config.d.ts.map +1 -0
- package/dist/orchestration/gateway-config.js +128 -0
- package/dist/orchestration/gateway-config.js.map +1 -0
- package/dist/orchestration/history.d.ts +13 -0
- package/dist/orchestration/history.d.ts.map +1 -0
- package/dist/orchestration/history.js +48 -0
- package/dist/orchestration/history.js.map +1 -0
- package/dist/orchestration/identity.d.ts +6 -0
- package/dist/orchestration/identity.d.ts.map +1 -0
- package/dist/orchestration/identity.js +13 -0
- package/dist/orchestration/identity.js.map +1 -0
- package/dist/orchestration/inference-errors.d.ts +3 -0
- package/dist/orchestration/inference-errors.d.ts.map +1 -0
- package/dist/orchestration/inference-errors.js +16 -0
- package/dist/orchestration/inference-errors.js.map +1 -0
- package/dist/orchestration/input-images.d.ts +12 -0
- package/dist/orchestration/input-images.d.ts.map +1 -0
- package/dist/orchestration/input-images.js +66 -0
- package/dist/orchestration/input-images.js.map +1 -0
- package/dist/orchestration/instance-lock.d.ts +5 -0
- package/dist/orchestration/instance-lock.d.ts.map +1 -0
- package/dist/orchestration/instance-lock.js +33 -0
- package/dist/orchestration/instance-lock.js.map +1 -0
- package/dist/orchestration/line-loading.d.ts +21 -0
- package/dist/orchestration/line-loading.d.ts.map +1 -0
- package/dist/orchestration/line-loading.js +89 -0
- package/dist/orchestration/line-loading.js.map +1 -0
- package/dist/orchestration/media.d.ts +3 -0
- package/dist/orchestration/media.d.ts.map +1 -0
- package/dist/orchestration/media.js +46 -0
- package/dist/orchestration/media.js.map +1 -0
- package/dist/orchestration/migrations/schema.d.ts +3 -0
- package/dist/orchestration/migrations/schema.d.ts.map +1 -0
- package/dist/orchestration/migrations/schema.js +80 -0
- package/dist/orchestration/migrations/schema.js.map +1 -0
- package/dist/orchestration/notification-mailbox.d.ts +5 -0
- package/dist/orchestration/notification-mailbox.d.ts.map +1 -0
- package/dist/orchestration/notification-mailbox.js +29 -0
- package/dist/orchestration/notification-mailbox.js.map +1 -0
- package/dist/orchestration/process-activity.d.ts +23 -0
- package/dist/orchestration/process-activity.d.ts.map +1 -0
- package/dist/orchestration/process-activity.js +95 -0
- package/dist/orchestration/process-activity.js.map +1 -0
- package/dist/orchestration/process-supervisor.d.ts +15 -0
- package/dist/orchestration/process-supervisor.d.ts.map +1 -0
- package/dist/orchestration/process-supervisor.js +92 -0
- package/dist/orchestration/process-supervisor.js.map +1 -0
- package/dist/orchestration/process-turn.d.ts +35 -0
- package/dist/orchestration/process-turn.d.ts.map +1 -0
- package/dist/orchestration/process-turn.js +246 -0
- package/dist/orchestration/process-turn.js.map +1 -0
- package/dist/orchestration/progress-review.d.ts +28 -0
- package/dist/orchestration/progress-review.d.ts.map +1 -0
- package/dist/orchestration/progress-review.js +48 -0
- package/dist/orchestration/progress-review.js.map +1 -0
- package/dist/orchestration/recovery.d.ts +8 -0
- package/dist/orchestration/recovery.d.ts.map +1 -0
- package/dist/orchestration/recovery.js +35 -0
- package/dist/orchestration/recovery.js.map +1 -0
- package/dist/orchestration/reply-context.d.ts +7 -0
- package/dist/orchestration/reply-context.d.ts.map +1 -0
- package/dist/orchestration/reply-context.js +54 -0
- package/dist/orchestration/reply-context.js.map +1 -0
- package/dist/orchestration/runtime.d.ts +237 -0
- package/dist/orchestration/runtime.d.ts.map +1 -0
- package/dist/orchestration/runtime.js +1031 -0
- package/dist/orchestration/runtime.js.map +1 -0
- package/dist/orchestration/skills.d.ts +17 -0
- package/dist/orchestration/skills.d.ts.map +1 -0
- package/dist/orchestration/skills.js +32 -0
- package/dist/orchestration/skills.js.map +1 -0
- package/dist/orchestration/source-policy.d.ts +6 -0
- package/dist/orchestration/source-policy.d.ts.map +1 -0
- package/dist/orchestration/source-policy.js +16 -0
- package/dist/orchestration/source-policy.js.map +1 -0
- package/dist/orchestration/speech.d.ts +24 -0
- package/dist/orchestration/speech.d.ts.map +1 -0
- package/dist/orchestration/speech.js +61 -0
- package/dist/orchestration/speech.js.map +1 -0
- package/dist/orchestration/stop-controls.d.ts +30 -0
- package/dist/orchestration/stop-controls.d.ts.map +1 -0
- package/dist/orchestration/stop-controls.js +79 -0
- package/dist/orchestration/stop-controls.js.map +1 -0
- package/dist/orchestration/store.d.ts +92 -0
- package/dist/orchestration/store.d.ts.map +1 -0
- package/dist/orchestration/store.js +326 -0
- package/dist/orchestration/store.js.map +1 -0
- package/dist/orchestration/task-controls.d.ts +172 -0
- package/dist/orchestration/task-controls.d.ts.map +1 -0
- package/dist/orchestration/task-controls.js +59 -0
- package/dist/orchestration/task-controls.js.map +1 -0
- package/dist/orchestration/task-files.d.ts +29 -0
- package/dist/orchestration/task-files.d.ts.map +1 -0
- package/dist/orchestration/task-files.js +200 -0
- package/dist/orchestration/task-files.js.map +1 -0
- package/dist/orchestration/task-questions.d.ts +26 -0
- package/dist/orchestration/task-questions.d.ts.map +1 -0
- package/dist/orchestration/task-questions.js +160 -0
- package/dist/orchestration/task-questions.js.map +1 -0
- package/dist/orchestration/task-report.d.ts +7 -0
- package/dist/orchestration/task-report.d.ts.map +1 -0
- package/dist/orchestration/task-report.js +33 -0
- package/dist/orchestration/task-report.js.map +1 -0
- package/dist/orchestration/tasks/checkpoint-hook.d.ts +19 -0
- package/dist/orchestration/tasks/checkpoint-hook.d.ts.map +1 -0
- package/dist/orchestration/tasks/checkpoint-hook.js +49 -0
- package/dist/orchestration/tasks/checkpoint-hook.js.map +1 -0
- package/dist/orchestration/tasks/cleanup.d.ts +18 -0
- package/dist/orchestration/tasks/cleanup.d.ts.map +1 -0
- package/dist/orchestration/tasks/cleanup.js +113 -0
- package/dist/orchestration/tasks/cleanup.js.map +1 -0
- package/dist/orchestration/tasks/driver.d.ts +23 -0
- package/dist/orchestration/tasks/driver.d.ts.map +1 -0
- package/dist/orchestration/tasks/driver.js +209 -0
- package/dist/orchestration/tasks/driver.js.map +1 -0
- package/dist/orchestration/tasks/failure.d.ts +5 -0
- package/dist/orchestration/tasks/failure.d.ts.map +1 -0
- package/dist/orchestration/tasks/failure.js +17 -0
- package/dist/orchestration/tasks/failure.js.map +1 -0
- package/dist/orchestration/tasks/pool.d.ts +18 -0
- package/dist/orchestration/tasks/pool.d.ts.map +1 -0
- package/dist/orchestration/tasks/pool.js +73 -0
- package/dist/orchestration/tasks/pool.js.map +1 -0
- package/dist/orchestration/tasks/scheduler.d.ts +38 -0
- package/dist/orchestration/tasks/scheduler.d.ts.map +1 -0
- package/dist/orchestration/tasks/scheduler.js +160 -0
- package/dist/orchestration/tasks/scheduler.js.map +1 -0
- package/dist/orchestration/tasks/service.d.ts +114 -0
- package/dist/orchestration/tasks/service.d.ts.map +1 -0
- package/dist/orchestration/tasks/service.js +760 -0
- package/dist/orchestration/tasks/service.js.map +1 -0
- package/dist/orchestration/tasks/shared-workspace.d.ts +25 -0
- package/dist/orchestration/tasks/shared-workspace.d.ts.map +1 -0
- package/dist/orchestration/tasks/shared-workspace.js +162 -0
- package/dist/orchestration/tasks/shared-workspace.js.map +1 -0
- package/dist/orchestration/tasks/task-directive.d.ts +6 -0
- package/dist/orchestration/tasks/task-directive.d.ts.map +1 -0
- package/dist/orchestration/tasks/task-directive.js +41 -0
- package/dist/orchestration/tasks/task-directive.js.map +1 -0
- package/dist/orchestration/tasks/timing.d.ts +15 -0
- package/dist/orchestration/tasks/timing.d.ts.map +1 -0
- package/dist/orchestration/tasks/timing.js +48 -0
- package/dist/orchestration/tasks/timing.js.map +1 -0
- package/dist/orchestration/tasks/tool-repetition.d.ts +3 -0
- package/dist/orchestration/tasks/tool-repetition.d.ts.map +1 -0
- package/dist/orchestration/tasks/tool-repetition.js +30 -0
- package/dist/orchestration/tasks/tool-repetition.js.map +1 -0
- package/dist/orchestration/tasks/workspace.d.ts +24 -0
- package/dist/orchestration/tasks/workspace.d.ts.map +1 -0
- package/dist/orchestration/tasks/workspace.js +147 -0
- package/dist/orchestration/tasks/workspace.js.map +1 -0
- package/dist/orchestration/telegram-speech.d.ts +17 -0
- package/dist/orchestration/telegram-speech.d.ts.map +1 -0
- package/dist/orchestration/telegram-speech.js +55 -0
- package/dist/orchestration/telegram-speech.js.map +1 -0
- package/dist/orchestration/telegram-tool-status.d.ts +23 -0
- package/dist/orchestration/telegram-tool-status.d.ts.map +1 -0
- package/dist/orchestration/telegram-tool-status.js +207 -0
- package/dist/orchestration/telegram-tool-status.js.map +1 -0
- package/dist/orchestration/telegram-voices.d.ts +42 -0
- package/dist/orchestration/telegram-voices.d.ts.map +1 -0
- package/dist/orchestration/telegram-voices.js +70 -0
- package/dist/orchestration/telegram-voices.js.map +1 -0
- package/dist/orchestration/tool-activity.d.ts +10 -0
- package/dist/orchestration/tool-activity.d.ts.map +1 -0
- package/dist/orchestration/tool-activity.js +38 -0
- package/dist/orchestration/tool-activity.js.map +1 -0
- package/dist/orchestration/types.d.ts +177 -0
- package/dist/orchestration/types.d.ts.map +1 -0
- package/dist/orchestration/types.js +13 -0
- package/dist/orchestration/types.js.map +1 -0
- package/dist/orchestration/voice-reply-policy.d.ts +8 -0
- package/dist/orchestration/voice-reply-policy.d.ts.map +1 -0
- package/dist/orchestration/voice-reply-policy.js +46 -0
- package/dist/orchestration/voice-reply-policy.js.map +1 -0
- package/dist/orchestration/worker-shares.d.ts +8 -0
- package/dist/orchestration/worker-shares.d.ts.map +1 -0
- package/dist/orchestration/worker-shares.js +59 -0
- package/dist/orchestration/worker-shares.js.map +1 -0
- package/dist/orchestration/workflow.d.ts +121 -0
- package/dist/orchestration/workflow.d.ts.map +1 -0
- package/dist/orchestration/workflow.js +69 -0
- package/dist/orchestration/workflow.js.map +1 -0
- package/dist/session/input-image.d.ts +10 -0
- package/dist/session/input-image.d.ts.map +1 -0
- package/dist/session/input-image.js +3 -0
- package/dist/session/input-image.js.map +1 -0
- package/dist/session/process.d.ts +15 -3
- package/dist/session/process.d.ts.map +1 -1
- package/dist/session/process.js +143 -35
- package/dist/session/process.js.map +1 -1
- package/dist/session/runtime-profile.d.ts +36 -0
- package/dist/session/runtime-profile.d.ts.map +1 -0
- package/dist/session/runtime-profile.js +63 -0
- package/dist/session/runtime-profile.js.map +1 -0
- package/dist/session/store.d.ts.map +1 -1
- package/dist/session/store.js +23 -1
- package/dist/session/store.js.map +1 -1
- package/dist/share/share-store.d.ts +3 -1
- package/dist/share/share-store.d.ts.map +1 -1
- package/dist/share/share-store.js +13 -2
- package/dist/share/share-store.js.map +1 -1
- package/dist/shared/line-request-order.d.ts +2 -0
- package/dist/shared/line-request-order.d.ts.map +1 -0
- package/dist/shared/line-request-order.js +16 -0
- package/dist/shared/line-request-order.js.map +1 -0
- package/dist/shared/task-elapsed.d.ts +3 -0
- package/dist/shared/task-elapsed.d.ts.map +1 -0
- package/dist/shared/task-elapsed.js +12 -0
- package/dist/shared/task-elapsed.js.map +1 -0
- package/dist/shared/task-updated-time.d.ts +3 -0
- package/dist/shared/task-updated-time.d.ts.map +1 -0
- package/dist/shared/task-updated-time.js +15 -0
- package/dist/shared/task-updated-time.js.map +1 -0
- package/dist/skills/loader.d.ts +2 -0
- package/dist/skills/loader.d.ts.map +1 -1
- package/dist/skills/loader.js.map +1 -1
- package/dist/telegram/chunks.d.ts +19 -0
- package/dist/telegram/chunks.d.ts.map +1 -0
- package/dist/telegram/chunks.js +129 -0
- package/dist/telegram/chunks.js.map +1 -0
- package/dist/telegram/markdown.d.ts.map +1 -1
- package/dist/telegram/markdown.js +18 -3
- package/dist/telegram/markdown.js.map +1 -1
- package/dist/telegram/receiver.d.ts +2 -1
- package/dist/telegram/receiver.d.ts.map +1 -1
- package/dist/telegram/receiver.js +6 -1
- package/dist/telegram/receiver.js.map +1 -1
- package/dist/types.d.ts +14 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/ui/web-ui.d.ts.map +1 -1
- package/dist/ui/web-ui.js +31 -5
- package/dist/ui/web-ui.js.map +1 -1
- package/dist/voice/diagnostics.d.ts +29 -0
- package/dist/voice/diagnostics.d.ts.map +1 -0
- package/dist/voice/diagnostics.js +37 -0
- package/dist/voice/diagnostics.js.map +1 -0
- package/dist/voice/errors.d.ts +19 -0
- package/dist/voice/errors.d.ts.map +1 -0
- package/dist/voice/errors.js +133 -0
- package/dist/voice/errors.js.map +1 -0
- package/dist/voice/line-audio.d.ts +4 -0
- package/dist/voice/line-audio.d.ts.map +1 -0
- package/dist/voice/line-audio.js +27 -0
- package/dist/voice/line-audio.js.map +1 -0
- package/dist/voice/managed-quota.d.ts +5 -0
- package/dist/voice/managed-quota.d.ts.map +1 -0
- package/dist/voice/managed-quota.js +35 -0
- package/dist/voice/managed-quota.js.map +1 -0
- package/dist/voice/mp3.d.ts +3 -0
- package/dist/voice/mp3.d.ts.map +1 -0
- package/dist/voice/mp3.js +30 -0
- package/dist/voice/mp3.js.map +1 -0
- package/dist/voice/notes.d.ts +9 -0
- package/dist/voice/notes.d.ts.map +1 -0
- package/dist/voice/notes.js +68 -0
- package/dist/voice/notes.js.map +1 -0
- package/dist/voice/playback.d.ts +22 -0
- package/dist/voice/playback.d.ts.map +1 -0
- package/dist/voice/playback.js +52 -0
- package/dist/voice/playback.js.map +1 -0
- package/dist/voice/preview.d.ts +6 -0
- package/dist/voice/preview.d.ts.map +1 -0
- package/dist/voice/preview.js +44 -0
- package/dist/voice/preview.js.map +1 -0
- package/dist/voice/protocol.d.ts +10 -0
- package/dist/voice/protocol.d.ts.map +1 -0
- package/dist/voice/protocol.js +30 -0
- package/dist/voice/protocol.js.map +1 -0
- package/dist/voice/providers/cartesia-tts.d.ts +26 -0
- package/dist/voice/providers/cartesia-tts.d.ts.map +1 -0
- package/dist/voice/providers/cartesia-tts.js +95 -0
- package/dist/voice/providers/cartesia-tts.js.map +1 -0
- package/dist/voice/providers/deepgram-stt.d.ts +20 -0
- package/dist/voice/providers/deepgram-stt.d.ts.map +1 -0
- package/dist/voice/providers/deepgram-stt.js +66 -0
- package/dist/voice/providers/deepgram-stt.js.map +1 -0
- package/dist/voice/providers/elevenlabs-stt.d.ts +20 -0
- package/dist/voice/providers/elevenlabs-stt.d.ts.map +1 -0
- package/dist/voice/providers/elevenlabs-stt.js +92 -0
- package/dist/voice/providers/elevenlabs-stt.js.map +1 -0
- package/dist/voice/providers/elevenlabs-tts.d.ts +26 -0
- package/dist/voice/providers/elevenlabs-tts.d.ts.map +1 -0
- package/dist/voice/providers/elevenlabs-tts.js +82 -0
- package/dist/voice/providers/elevenlabs-tts.js.map +1 -0
- package/dist/voice/providers/encoded-audio-tts.d.ts +21 -0
- package/dist/voice/providers/encoded-audio-tts.d.ts.map +1 -0
- package/dist/voice/providers/encoded-audio-tts.js +175 -0
- package/dist/voice/providers/encoded-audio-tts.js.map +1 -0
- package/dist/voice/providers/fake.d.ts +39 -0
- package/dist/voice/providers/fake.d.ts.map +1 -0
- package/dist/voice/providers/fake.js +41 -0
- package/dist/voice/providers/fake.js.map +1 -0
- package/dist/voice/providers/gemini-live-stt.d.ts +21 -0
- package/dist/voice/providers/gemini-live-stt.d.ts.map +1 -0
- package/dist/voice/providers/gemini-live-stt.js +158 -0
- package/dist/voice/providers/gemini-live-stt.js.map +1 -0
- package/dist/voice/providers/gemini.d.ts +60 -0
- package/dist/voice/providers/gemini.d.ts.map +1 -0
- package/dist/voice/providers/gemini.js +124 -0
- package/dist/voice/providers/gemini.js.map +1 -0
- package/dist/voice/providers/model-ref.d.ts +9 -0
- package/dist/voice/providers/model-ref.d.ts.map +1 -0
- package/dist/voice/providers/model-ref.js +31 -0
- package/dist/voice/providers/model-ref.js.map +1 -0
- package/dist/voice/providers/openrouter.d.ts +39 -0
- package/dist/voice/providers/openrouter.d.ts.map +1 -0
- package/dist/voice/providers/openrouter.js +154 -0
- package/dist/voice/providers/openrouter.js.map +1 -0
- package/dist/voice/providers/paxalabs-stt.d.ts +12 -0
- package/dist/voice/providers/paxalabs-stt.d.ts.map +1 -0
- package/dist/voice/providers/paxalabs-stt.js +41 -0
- package/dist/voice/providers/paxalabs-stt.js.map +1 -0
- package/dist/voice/providers/paxalabs-tts.d.ts +23 -0
- package/dist/voice/providers/paxalabs-tts.d.ts.map +1 -0
- package/dist/voice/providers/paxalabs-tts.js +80 -0
- package/dist/voice/providers/paxalabs-tts.js.map +1 -0
- package/dist/voice/providers/recorded-stt.d.ts +34 -0
- package/dist/voice/providers/recorded-stt.d.ts.map +1 -0
- package/dist/voice/providers/recorded-stt.js +59 -0
- package/dist/voice/providers/recorded-stt.js.map +1 -0
- package/dist/voice/providers/registry.d.ts +10 -0
- package/dist/voice/providers/registry.d.ts.map +1 -0
- package/dist/voice/providers/registry.js +77 -0
- package/dist/voice/providers/registry.js.map +1 -0
- package/dist/voice/providers/socket.d.ts +10 -0
- package/dist/voice/providers/socket.d.ts.map +1 -0
- package/dist/voice/providers/socket.js +91 -0
- package/dist/voice/providers/socket.js.map +1 -0
- package/dist/voice/providers/upstream.d.ts +9 -0
- package/dist/voice/providers/upstream.d.ts.map +1 -0
- package/dist/voice/providers/upstream.js +51 -0
- package/dist/voice/providers/upstream.js.map +1 -0
- package/dist/voice/providers/voice-catalog.d.ts +17 -0
- package/dist/voice/providers/voice-catalog.d.ts.map +1 -0
- package/dist/voice/providers/voice-catalog.js +167 -0
- package/dist/voice/providers/voice-catalog.js.map +1 -0
- package/dist/voice/queue.d.ts +2 -0
- package/dist/voice/queue.d.ts.map +1 -0
- package/dist/voice/queue.js +6 -0
- package/dist/voice/queue.js.map +1 -0
- package/dist/voice/session.d.ts +86 -0
- package/dist/voice/session.d.ts.map +1 -0
- package/dist/voice/session.js +464 -0
- package/dist/voice/session.js.map +1 -0
- package/dist/voice/turn-manager.d.ts +27 -0
- package/dist/voice/turn-manager.d.ts.map +1 -0
- package/dist/voice/turn-manager.js +75 -0
- package/dist/voice/turn-manager.js.map +1 -0
- package/dist/voice/types.d.ts +78 -0
- package/dist/voice/types.d.ts.map +1 -0
- package/dist/voice/types.js +18 -0
- package/dist/voice/types.js.map +1 -0
- package/dist/voice/wav.d.ts +2 -0
- package/dist/voice/wav.d.ts.map +1 -0
- package/dist/voice/wav.js +21 -0
- package/dist/voice/wav.js.map +1 -0
- package/dist/wechat/ilink-client.d.ts +13 -0
- package/dist/wechat/ilink-client.d.ts.map +1 -1
- package/dist/wechat/ilink-client.js +19 -0
- package/dist/wechat/ilink-client.js.map +1 -1
- package/dist/whatsapp/manager.d.ts.map +1 -1
- package/dist/whatsapp/manager.js +51 -1
- package/dist/whatsapp/manager.js.map +1 -1
- package/mcp/capability-catalog.ts +206 -0
- package/mcp/modules.ts +56 -0
- package/mcp/server.ts +18 -37
- package/mcp/tools/browser/module.ts +1 -1
- package/mcp/tools/browser/skills/open-browser/SKILL.md +5 -3
- package/mcp/tools/discord/commands.ts +17 -1
- package/mcp/tools/discord/inbound.ts +11 -0
- package/mcp/tools/discord/module.ts +42 -2
- package/mcp/tools/discord/receiver-server.ts +10 -0
- package/mcp/tools/discord/types.ts +4 -1
- package/mcp/tools/image/module.ts +3 -1
- package/mcp/tools/receiver-spool.test.ts +28 -0
- package/mcp/tools/receiver-spool.ts +56 -0
- package/mcp/tools/share-file/module.ts +9 -1
- package/mcp/tools/shared/share-client.ts +19 -0
- package/mcp/tools/tasks/module.ts +35 -0
- package/mcp/tools/telegram/media-group.ts +21 -0
- package/mcp/tools/telegram/receiver-server.ts +246 -11
- package/mcp/tools/telegram/selection-confirmation.ts +20 -0
- package/mcp/tools/telegram/task-browser.ts +117 -0
- package/mcp/tools/telegram/task-detail.ts +36 -0
- package/mcp/tools/telegram/task-elapsed.ts +1 -0
- package/mcp/tools/telegram/typing.ts +6 -116
- package/mcp/tools/video/module.ts +1 -1
- package/mcp/types.ts +5 -0
- package/package.json +2 -1
- package/resource/claude_gateway.jpeg +0 -0
- package/scripts/orchestration/bench-store.cjs +30 -0
- package/scripts/orchestration/inspect.cjs +16 -0
- package/scripts/orchestration/probe-profile.cjs +67 -0
- package/scripts/orchestration/reconcile.cjs +21 -0
- package/scripts/orchestration/smoke-elevenlabs.cjs +90 -0
- package/scripts/orchestration/smoke-media.cjs +70 -0
- package/scripts/orchestration/smoke-text.cjs +101 -0
- package/scripts/orchestration/smoke-vision.cjs +49 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-files.d.ts","sourceRoot":"","sources":["../../src/orchestration/task-files.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,kBAAkB,EAA4B,MAAM,SAAS,CAAC;AAMvE,qBAAa,SAAS;IACR,QAAQ,CAAC,KAAK,EAAE,kBAAkB;IAAE,QAAQ,CAAC,UAAU,EAAE,MAAM;IAAE,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC;IAAU,OAAO,CAAC,QAAQ,CAAC,SAAS;gBAA5H,KAAK,EAAE,kBAAkB,EAAW,UAAU,EAAE,MAAM,EAAmB,cAAc,CAAC,EAAE,MAAM,YAAA,EAAmB,SAAS,SAA+C;IAChM,OAAO,CAAC,QAAQ,CAAC,cAAc,CAA0C;IACzE,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAAkC;IAEpE,oFAAoF;IACpF,aAAa,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,IAAI;IAiCxE,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAOxC,KAAK,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM;;;;;IAU3C,WAAW,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,OAAO,GAAG,MAAM;IAsB9E,KAAK,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;IA2B5F,QAAQ,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;CAsBhG"}
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TaskFiles = void 0;
|
|
4
|
+
const fs_1 = require("fs");
|
|
5
|
+
const path_1 = require("path");
|
|
6
|
+
const crypto_1 = require("crypto");
|
|
7
|
+
const store_1 = require("./store");
|
|
8
|
+
const types_1 = require("./types");
|
|
9
|
+
const media_1 = require("./media");
|
|
10
|
+
const media_store_1 = require("../history/media-store");
|
|
11
|
+
const share_store_1 = require("../share/share-store");
|
|
12
|
+
class TaskFiles {
|
|
13
|
+
constructor(store, agentsRoot, containerSpool, workspace = (0, path_1.join)(agentsRoot, store.agentId, 'workspace')) {
|
|
14
|
+
this.store = store;
|
|
15
|
+
this.agentsRoot = agentsRoot;
|
|
16
|
+
this.containerSpool = containerSpool;
|
|
17
|
+
this.workspace = workspace;
|
|
18
|
+
this.capturedImages = new Map();
|
|
19
|
+
this.pendingImageTools = new Map();
|
|
20
|
+
}
|
|
21
|
+
/** Capture actual MCP image bytes, never model-authored paths or assistant text. */
|
|
22
|
+
captureOutput(attemptId, generation, line) {
|
|
23
|
+
if (this.containerSpool)
|
|
24
|
+
return; // Container output must use the container import boundary.
|
|
25
|
+
let event;
|
|
26
|
+
try {
|
|
27
|
+
event = JSON.parse(line);
|
|
28
|
+
}
|
|
29
|
+
catch {
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
const blocks = event.message?.content;
|
|
33
|
+
if (!Array.isArray(blocks))
|
|
34
|
+
return;
|
|
35
|
+
const pending = this.pendingImageTools.get(attemptId) ?? new Set();
|
|
36
|
+
this.pendingImageTools.set(attemptId, pending);
|
|
37
|
+
for (const block of blocks) {
|
|
38
|
+
if (event.type === 'assistant' && block.type === 'tool_use' && typeof block.name === 'string' && block.name.startsWith('mcp__') && typeof block.id === 'string')
|
|
39
|
+
pending.add(block.id);
|
|
40
|
+
if (event.type !== 'user' || block.type !== 'tool_result' || !pending.delete(block.tool_use_id) || block.is_error || !Array.isArray(block.content))
|
|
41
|
+
continue;
|
|
42
|
+
const image = block.content.find((item) => item.type === 'image');
|
|
43
|
+
const data = image?.source?.type === 'base64' ? image.source.data : image?.data;
|
|
44
|
+
if (typeof data !== 'string' || data.length > 28 * 1024 * 1024 || !/^[A-Za-z0-9+/]*={0,2}$/.test(data))
|
|
45
|
+
continue;
|
|
46
|
+
const bytes = Buffer.from(data, 'base64');
|
|
47
|
+
const mime = (0, share_store_1.detectImageMime)(bytes.subarray(0, 12));
|
|
48
|
+
if (!mime || !bytes.length || bytes.length > 20 * 1024 * 1024)
|
|
49
|
+
continue;
|
|
50
|
+
const { mediaDir } = this.scope(attemptId, generation);
|
|
51
|
+
const images = this.capturedImages.get(attemptId) ?? new Map();
|
|
52
|
+
if (images.has(block.tool_use_id))
|
|
53
|
+
continue;
|
|
54
|
+
if (images.size >= 20) {
|
|
55
|
+
const oldest = images.entries().next().value;
|
|
56
|
+
try {
|
|
57
|
+
(0, fs_1.unlinkSync)(oldest[1]);
|
|
58
|
+
}
|
|
59
|
+
catch { /* already removed */ }
|
|
60
|
+
images.delete(oldest[0]);
|
|
61
|
+
}
|
|
62
|
+
(0, fs_1.mkdirSync)(mediaDir, { recursive: true, mode: 0o700 });
|
|
63
|
+
const suffix = mime === 'image/png' ? '.png' : mime === 'image/jpeg' ? '.jpg' : mime === 'image/webp' ? '.webp' : '.gif';
|
|
64
|
+
const file = (0, path_1.join)(mediaDir, `mcp-image-${(0, crypto_1.randomUUID)()}${suffix}`);
|
|
65
|
+
(0, fs_1.writeFileSync)(file, bytes, { flag: 'wx', mode: 0o600 });
|
|
66
|
+
images.set(block.tool_use_id, file);
|
|
67
|
+
this.capturedImages.set(attemptId, images);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
releaseCaptured(attemptId) {
|
|
71
|
+
this.pendingImageTools.delete(attemptId);
|
|
72
|
+
for (const path of this.capturedImages.get(attemptId)?.values() ?? []) {
|
|
73
|
+
try {
|
|
74
|
+
(0, fs_1.unlinkSync)(path);
|
|
75
|
+
}
|
|
76
|
+
catch { /* staged bytes live independently in content-addressed media */ }
|
|
77
|
+
}
|
|
78
|
+
this.capturedImages.delete(attemptId);
|
|
79
|
+
}
|
|
80
|
+
scope(attemptId, generation) {
|
|
81
|
+
const attempt = this.store.get('SELECT * FROM task_attempts WHERE id=?', attemptId);
|
|
82
|
+
const task = attempt && this.store.task(String(attempt.task_id));
|
|
83
|
+
// The serialized attempt is authoritative; never borrow a later generation.
|
|
84
|
+
const snapshot = attempt && JSON.parse(String(attempt.payload_json));
|
|
85
|
+
if (!task || task.activeAttemptId !== attemptId || snapshot.generation !== generation || !['starting', 'running'].includes(task.state))
|
|
86
|
+
throw new types_1.OrchestrationError('STALE_ATTEMPT');
|
|
87
|
+
const conversation = this.store.get('SELECT * FROM conversations WHERE id=?', task.conversationId);
|
|
88
|
+
const mediaDir = (0, path_1.join)(this.agentsRoot, this.store.agentId, 'media', `api-${task.agentSessionId}`);
|
|
89
|
+
return { task, conversation, mediaDir };
|
|
90
|
+
}
|
|
91
|
+
allowedPath(attemptId, generation, candidate) {
|
|
92
|
+
const { task, mediaDir } = this.scope(attemptId, generation);
|
|
93
|
+
const value = (0, store_1.boundedText)(candidate, 4096);
|
|
94
|
+
const path = (0, fs_1.realpathSync)(value.startsWith('media/') ? media_store_1.MediaStore.resolvePath(this.agentsRoot, this.store.agentId, value) : value);
|
|
95
|
+
const under = (root) => { const ref = (0, path_1.relative)((0, fs_1.realpathSync)(root), path); return !!ref && !ref.startsWith('..') && !(0, path_1.isAbsolute)(ref); };
|
|
96
|
+
if (this.containerSpool) {
|
|
97
|
+
if (!under((0, path_1.join)(this.containerSpool, attemptId)) || !(0, fs_1.statSync)(path).isFile())
|
|
98
|
+
throw new types_1.OrchestrationError('ARTIFACT_PATH_DENIED');
|
|
99
|
+
return path;
|
|
100
|
+
}
|
|
101
|
+
let permitted = false;
|
|
102
|
+
try {
|
|
103
|
+
permitted = under(mediaDir);
|
|
104
|
+
}
|
|
105
|
+
catch { /* not created yet */ }
|
|
106
|
+
for (const row of this.store.all("SELECT worktree_path FROM task_resources WHERE task_id=? AND lifecycle_state='active'", task.taskId)) {
|
|
107
|
+
try {
|
|
108
|
+
permitted || (permitted = under(String(row.worktree_path)));
|
|
109
|
+
}
|
|
110
|
+
catch { /* unavailable resource */ }
|
|
111
|
+
}
|
|
112
|
+
for (const row of this.store.all('SELECT attachment_refs_json FROM conversation_inputs WHERE conversation_id=?', task.conversationId)) {
|
|
113
|
+
for (const ref of JSON.parse(String(row.attachment_refs_json))) {
|
|
114
|
+
try {
|
|
115
|
+
permitted || (permitted = (0, fs_1.realpathSync)(media_store_1.MediaStore.resolvePath(this.agentsRoot, this.store.agentId, ref)) === path);
|
|
116
|
+
}
|
|
117
|
+
catch { /* expired attachment */ }
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
if (!permitted || !(0, fs_1.statSync)(path).isFile())
|
|
121
|
+
throw new types_1.OrchestrationError('ARTIFACT_PATH_DENIED', 'ARTIFACT_PATH_DENIED: File is outside this task scope. Use the original file’s absolute path in the active task workspace, a supplied input attachment, or this session’s media directory. Do not copy it to the agent-wide media root. The gateway stages authorized files automatically.');
|
|
122
|
+
return path;
|
|
123
|
+
}
|
|
124
|
+
stage(attemptId, generation, actionId, args) {
|
|
125
|
+
const { task } = this.scope(attemptId, generation);
|
|
126
|
+
(0, store_1.boundedText)(actionId, 256);
|
|
127
|
+
const old = this.store.get('SELECT * FROM task_files WHERE attempt_id=? AND action_id=?', attemptId, actionId);
|
|
128
|
+
if (old) {
|
|
129
|
+
if (old.args_hash !== (0, store_1.payloadHash)(args))
|
|
130
|
+
throw new types_1.OrchestrationError('IDEMPOTENCY_CONFLICT');
|
|
131
|
+
return { artifactId: String(old.id), path: String(old.path), staged: true };
|
|
132
|
+
}
|
|
133
|
+
if (Number(this.store.get('SELECT COUNT(*) n FROM task_files WHERE attempt_id=?', attemptId).n) >= 10)
|
|
134
|
+
throw new types_1.OrchestrationError('TOO_MANY_ARTIFACTS');
|
|
135
|
+
if (args.path !== undefined && args.source_tool_call_id !== undefined)
|
|
136
|
+
throw new types_1.OrchestrationError('INVALID_INPUT', 'Choose path OR source_tool_call_id, not both.');
|
|
137
|
+
const images = this.capturedImages.get(attemptId);
|
|
138
|
+
const captured = args.source_tool_call_id === undefined ? [...(images?.values() ?? [])].at(-1) : images?.get((0, store_1.boundedText)(args.source_tool_call_id, 256));
|
|
139
|
+
if (args.path === undefined && !captured)
|
|
140
|
+
throw new types_1.OrchestrationError('MCP_IMAGE_NOT_CAPTURED', 'No captured MCP image for this attempt. Capture an image first, or supply an existing local file path.');
|
|
141
|
+
let source;
|
|
142
|
+
try {
|
|
143
|
+
source = this.allowedPath(attemptId, generation, args.path ?? captured);
|
|
144
|
+
}
|
|
145
|
+
catch (error) {
|
|
146
|
+
if (['ENOENT', 'INVALID_REQUEST'].includes(String(error.code)))
|
|
147
|
+
throw new types_1.OrchestrationError('ARTIFACT_FILE_NOT_FOUND', 'The supplied path is not a saved file. For an MCP screenshot, omit path to stage its captured image, or use source_tool_call_id. Do not invent a filename.');
|
|
148
|
+
throw error;
|
|
149
|
+
}
|
|
150
|
+
const caption = args.caption === undefined ? '' : (0, store_1.boundedText)(args.caption, 1024);
|
|
151
|
+
if ((0, fs_1.statSync)(source).size > 50 * 1024 * 1024)
|
|
152
|
+
throw new types_1.OrchestrationError('ATTACHMENT_TOO_LARGE');
|
|
153
|
+
const path = (0, media_1.ingestOrchestrationMedia)(this.agentsRoot, this.store.agentId, `api-${task.agentSessionId}`, source);
|
|
154
|
+
const kind = (0, share_store_1.detectImageMime)((0, fs_1.readFileSync)(source).subarray(0, 12)) ? 'image' : 'file';
|
|
155
|
+
const id = (0, crypto_1.randomUUID)();
|
|
156
|
+
this.store.run('INSERT INTO task_files VALUES(?,?,?,?,?,?,?,?,?,?,?)', id, task.taskId, attemptId, actionId, path, (0, path_1.basename)(source).replace(/[\r\n]/g, '_').slice(0, 200), kind, caption, null, Date.now(), (0, store_1.payloadHash)(args));
|
|
157
|
+
return { artifactId: id, path, staged: true };
|
|
158
|
+
}
|
|
159
|
+
remember(attemptId, generation, actionId, args) {
|
|
160
|
+
const { task, conversation } = this.scope(attemptId, generation);
|
|
161
|
+
if (!task.capabilities.writeMemory || conversation.source === 'api')
|
|
162
|
+
throw new types_1.OrchestrationError('MEMORY_WRITE_DENIED');
|
|
163
|
+
const note = (0, store_1.boundedText)(args.note, 8192), name = args.path === undefined ? `memory/${new Date().toISOString().slice(0, 10)}.md` : (0, store_1.boundedText)(args.path, 256);
|
|
164
|
+
if (!/^(?:MEMORY\.md|USER\.md|memory\/[A-Za-z0-9_-]+\.md)$/.test(name))
|
|
165
|
+
throw new types_1.OrchestrationError('MEMORY_PATH_DENIED');
|
|
166
|
+
const workspace = this.workspace, destination = (0, path_1.join)(workspace, name);
|
|
167
|
+
(0, fs_1.mkdirSync)((0, path_1.dirname)(destination), { recursive: true });
|
|
168
|
+
if ((0, fs_1.realpathSync)((0, path_1.dirname)(destination)) !== (0, path_1.join)((0, fs_1.realpathSync)(workspace), name.startsWith('memory/') ? 'memory' : '') || ((0, fs_1.existsSync)(destination) && (0, fs_1.lstatSync)(destination).isSymbolicLink()))
|
|
169
|
+
throw new types_1.OrchestrationError('MEMORY_PATH_DENIED');
|
|
170
|
+
if ((0, fs_1.existsSync)(destination) && (0, fs_1.statSync)(destination).size > 1048576)
|
|
171
|
+
throw new types_1.OrchestrationError('MEMORY_TOO_LARGE');
|
|
172
|
+
const old = (0, fs_1.existsSync)(destination) ? (0, fs_1.readFileSync)(destination, 'utf8') : '';
|
|
173
|
+
const operation = (0, crypto_1.createHash)('sha256').update(`${attemptId}:${actionId}`).digest('hex');
|
|
174
|
+
const marker = `<!-- orchestration-memory:${operation}:${(0, crypto_1.createHash)('sha256').update(name + '\0' + note).digest('hex')} -->`;
|
|
175
|
+
if (old.includes(`<!-- orchestration-memory:${operation}:`) && !old.includes(marker))
|
|
176
|
+
throw new types_1.OrchestrationError('IDEMPOTENCY_CONFLICT');
|
|
177
|
+
if (!old.includes(marker)) {
|
|
178
|
+
const temporary = `${destination}.${(0, crypto_1.randomUUID)()}.tmp`, fd = (0, fs_1.openSync)(temporary, 'wx', 0o600);
|
|
179
|
+
try {
|
|
180
|
+
(0, fs_1.writeFileSync)(fd, `${old}\n${marker}\n${note}\n`);
|
|
181
|
+
(0, fs_1.fsyncSync)(fd);
|
|
182
|
+
}
|
|
183
|
+
finally {
|
|
184
|
+
(0, fs_1.closeSync)(fd);
|
|
185
|
+
}
|
|
186
|
+
(0, fs_1.renameSync)(temporary, destination);
|
|
187
|
+
const directory = (0, fs_1.openSync)((0, path_1.dirname)(destination), 'r');
|
|
188
|
+
try {
|
|
189
|
+
(0, fs_1.fsyncSync)(directory);
|
|
190
|
+
}
|
|
191
|
+
finally {
|
|
192
|
+
(0, fs_1.closeSync)(directory);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
this.store.transaction(() => this.store.appendEvent(task.conversationId, 'task.memory_updated', { taskId: task.taskId, path: name, operation }));
|
|
196
|
+
return { updated: true, path: name };
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
exports.TaskFiles = TaskFiles;
|
|
200
|
+
//# sourceMappingURL=task-files.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-files.js","sourceRoot":"","sources":["../../src/orchestration/task-files.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ControlMenu, ControlScope } from './channel-controls';
|
|
2
|
+
import { DecisionService } from './decisions';
|
|
3
|
+
import { DeliveryControl } from './delivery';
|
|
4
|
+
import { AcceptInput, OrchestrationStore } from './store';
|
|
5
|
+
import { TaskService } from './tasks/service';
|
|
6
|
+
/** Questions are durable user controls, not ordinary model-generated progress reports. */
|
|
7
|
+
export declare class TaskQuestions {
|
|
8
|
+
private store;
|
|
9
|
+
private tasks;
|
|
10
|
+
private decisions;
|
|
11
|
+
private deliver;
|
|
12
|
+
private publish;
|
|
13
|
+
private reminderMs;
|
|
14
|
+
constructor(store: OrchestrationStore, tasks: TaskService, decisions: DecisionService, deliver: (responseId: string, bindingId: string, text: string, controls: DeliveryControl[]) => void, publish: (sessionId: string, responseId: string, text: string) => void, reminderMs: () => number);
|
|
15
|
+
tick(now?: number): void;
|
|
16
|
+
private suppressQuestionReports;
|
|
17
|
+
private owned;
|
|
18
|
+
handle(scope: ControlScope, text: string, inputId?: string): ControlMenu | undefined;
|
|
19
|
+
private apply;
|
|
20
|
+
/** Only a platform reply to a persisted question message is an unambiguous answer. */
|
|
21
|
+
answerReply(input: AcceptInput, inputId: string): ControlMenu | undefined;
|
|
22
|
+
normalizeReply(input: AcceptInput): AcceptInput;
|
|
23
|
+
matches(input: AcceptInput): boolean;
|
|
24
|
+
private replyQuestion;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=task-questions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-questions.d.ts","sourceRoot":"","sources":["../../src/orchestration/task-questions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,EAAE,WAAW,EAAE,kBAAkB,EAAoB,MAAM,SAAS,CAAC;AAC5E,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAI9C,0FAA0F;AAC1F,qBAAa,aAAa;IACZ,OAAO,CAAC,KAAK;IAAsB,OAAO,CAAC,KAAK;IAAe,OAAO,CAAC,SAAS;IAC1F,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,UAAU;gBAHA,KAAK,EAAE,kBAAkB,EAAU,KAAK,EAAE,WAAW,EAAU,SAAS,EAAE,eAAe,EACnG,OAAO,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,eAAe,EAAE,KAAK,IAAI,EACnG,OAAO,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,EACtE,UAAU,EAAE,MAAM,MAAM;IAElC,IAAI,CAAC,GAAG,SAAa,GAAG,IAAI;IAmD5B,OAAO,CAAC,uBAAuB;IAS/B,OAAO,CAAC,KAAK;IAYb,MAAM,CAAC,KAAK,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,WAAW,GAAG,SAAS;IAGpF,OAAO,CAAC,KAAK;IAmBb,sFAAsF;IACtF,WAAW,CAAC,KAAK,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,GAAG,WAAW,GAAG,SAAS;IAQzE,cAAc,CAAC,KAAK,EAAE,WAAW,GAAG,WAAW;IAW/C,OAAO,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO;IAcpC,OAAO,CAAC,aAAa;CAOtB"}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TaskQuestions = void 0;
|
|
4
|
+
const store_1 = require("./store");
|
|
5
|
+
const types_1 = require("./types");
|
|
6
|
+
const UUID = '[a-f0-9-]{36}';
|
|
7
|
+
/** Questions are durable user controls, not ordinary model-generated progress reports. */
|
|
8
|
+
class TaskQuestions {
|
|
9
|
+
constructor(store, tasks, decisions, deliver, publish, reminderMs) {
|
|
10
|
+
this.store = store;
|
|
11
|
+
this.tasks = tasks;
|
|
12
|
+
this.decisions = decisions;
|
|
13
|
+
this.deliver = deliver;
|
|
14
|
+
this.publish = publish;
|
|
15
|
+
this.reminderMs = reminderMs;
|
|
16
|
+
}
|
|
17
|
+
tick(now = Date.now()) {
|
|
18
|
+
const published = [];
|
|
19
|
+
this.store.compose(() => {
|
|
20
|
+
// A pending message must not ask for an already answered or replaced question.
|
|
21
|
+
for (const row of this.store.all(`SELECT q.* FROM task_questions q JOIN tasks t ON t.id=q.task_id
|
|
22
|
+
WHERE (q.closed=0 OR EXISTS(SELECT 1 FROM deliveries d JOIN task_question_messages m ON m.response_id=d.response_id WHERE m.question_id=q.question_id AND d.state='pending')) AND (t.state!='waiting_input' OR COALESCE(json_extract(t.snapshot_json,'$.pendingQuestion.questionId'),'')!=q.question_id)`)) {
|
|
23
|
+
this.store.run('UPDATE task_questions SET closed=1 WHERE question_id=?', row.question_id);
|
|
24
|
+
this.suppressQuestionReports(String(row.question_id));
|
|
25
|
+
this.store.cancelQuestionDeliveries(String(row.question_id));
|
|
26
|
+
}
|
|
27
|
+
for (const row of this.store.all(`SELECT t.*,c.agent_session_id FROM tasks t JOIN conversations c ON c.id=t.conversation_id
|
|
28
|
+
WHERE t.state='waiting_input' AND c.status='active'`)) {
|
|
29
|
+
const task = this.store.task(String(row.id)), question = task.pendingQuestion;
|
|
30
|
+
if (!question || question.revision !== task.revision)
|
|
31
|
+
continue;
|
|
32
|
+
let saved = this.store.get('SELECT * FROM task_questions WHERE question_id=?', question.questionId);
|
|
33
|
+
if (!saved) {
|
|
34
|
+
// Preserve the originating channel/thread, never pick an arbitrary linked channel.
|
|
35
|
+
const binding = this.store.get('SELECT binding_id FROM conversation_inputs WHERE id=?', task.initiatingInputId);
|
|
36
|
+
if (!binding)
|
|
37
|
+
continue;
|
|
38
|
+
this.store.run('INSERT INTO task_questions(question_id,task_id,revision,state_version,binding_id,next_reminder_at) VALUES(?,?,?,?,?,?)', question.questionId, task.taskId, question.revision, task.stateVersion, binding.binding_id, now);
|
|
39
|
+
saved = this.store.get('SELECT * FROM task_questions WHERE question_id=?', question.questionId);
|
|
40
|
+
}
|
|
41
|
+
if (!saved.closed && !saved.muted && Number(saved.next_reminder_at) <= now) {
|
|
42
|
+
const pending = this.store.get(`SELECT d.id FROM deliveries d JOIN task_question_messages m ON m.response_id=d.response_id
|
|
43
|
+
WHERE m.question_id=? AND d.state IN ('pending','sending') LIMIT 1`, question.questionId);
|
|
44
|
+
if (!pending) {
|
|
45
|
+
const prefix = Number(saved.reminder_count) ? 'Reminder · Waiting for your answer' : 'Waiting for your answer';
|
|
46
|
+
const command = `/task_question ${question.questionId}`;
|
|
47
|
+
const channel = this.store.get('SELECT channel FROM conversation_bindings WHERE id=?', saved.binding_id).channel;
|
|
48
|
+
const fallback = ['telegram', 'discord', 'slack', 'line'].includes(String(channel)) ? '' : `\n\n${command} snooze\n${command} mute`;
|
|
49
|
+
const text = `${prefix}\n${task.title}\n\n${question.text}\n\nReply to this message with your answer, or use:\n${command} answer <your answer>${fallback}`;
|
|
50
|
+
const responseId = this.decisions.notice(task.conversationId, text, false);
|
|
51
|
+
this.store.run('INSERT INTO task_question_messages VALUES(?,?)', responseId, question.questionId);
|
|
52
|
+
this.deliver(responseId, String(saved.binding_id), text, [
|
|
53
|
+
{ label: 'Remind in 1 hour', data: `orch:q:${question.questionId}:snooze` },
|
|
54
|
+
{ label: 'Mute reminders', data: `orch:q:${question.questionId}:mute` },
|
|
55
|
+
]);
|
|
56
|
+
const count = Number(saved.reminder_count) + 1;
|
|
57
|
+
this.store.run('UPDATE task_questions SET reminder_count=?,next_reminder_at=? WHERE question_id=?', count, now + this.reminderMs() * (count === 1 ? 1 : count === 2 ? 3 : 6), question.questionId);
|
|
58
|
+
published.push([String(row.agent_session_id), responseId, text]);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
if (Number(saved.state_version) !== task.stateVersion)
|
|
62
|
+
this.store.run('UPDATE task_questions SET state_version=? WHERE question_id=?', task.stateVersion, question.questionId);
|
|
63
|
+
this.suppressQuestionReports(question.questionId);
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
for (const item of published)
|
|
67
|
+
this.publish(...item);
|
|
68
|
+
}
|
|
69
|
+
suppressQuestionReports(questionId) {
|
|
70
|
+
// Earlier pending progress for this task is superseded by its current question.
|
|
71
|
+
// The durable version fence excludes later terminal results or replacement questions.
|
|
72
|
+
const question = this.store.get('SELECT task_id,state_version FROM task_questions WHERE question_id=?', questionId);
|
|
73
|
+
this.store.run("UPDATE notifications SET status='handled' WHERE task_id=? AND task_state_version<=? AND status='pending'", question.task_id, question.state_version);
|
|
74
|
+
this.store.run(`UPDATE outbox SET state='completed' WHERE kind='notification' AND state='pending' AND json_extract(payload_json,'$.notificationId') IN
|
|
75
|
+
(SELECT id FROM notifications WHERE task_id=? AND task_state_version<=? AND status='handled')`, question.task_id, question.state_version);
|
|
76
|
+
}
|
|
77
|
+
owned(scope, questionId) {
|
|
78
|
+
const row = this.store.get(`SELECT q.*,t.conversation_id,c.agent_session_id FROM task_questions q JOIN tasks t ON t.id=q.task_id
|
|
79
|
+
JOIN conversations c ON c.id=t.conversation_id JOIN conversation_bindings b ON b.id=q.binding_id
|
|
80
|
+
WHERE q.question_id=? AND c.agent_session_id=? AND b.channel=? AND b.chat_id=? AND (b.thread_key=? OR (b.channel='slack' AND b.thread_key='' AND EXISTS(
|
|
81
|
+
SELECT 1 FROM task_question_messages m JOIN deliveries d ON d.response_id=m.response_id
|
|
82
|
+
WHERE m.question_id=q.question_id AND d.binding_id=b.id AND d.state='delivered' AND d.provider_message_id=?)))`, questionId, scope.sessionId, scope.channel, scope.chatId, scope.thread, scope.thread);
|
|
83
|
+
if (!row)
|
|
84
|
+
throw new types_1.OrchestrationError('QUESTION_NOT_FOUND');
|
|
85
|
+
this.store.assertMember(String(row.conversation_id), scope.principalId);
|
|
86
|
+
return row;
|
|
87
|
+
}
|
|
88
|
+
handle(scope, text, inputId) {
|
|
89
|
+
return this.store.compose(() => this.apply(scope, text, inputId));
|
|
90
|
+
}
|
|
91
|
+
apply(scope, text, inputId) {
|
|
92
|
+
const command = new RegExp(`^/task_question (${UUID}) (answer|snooze|mute)(?:\\s+([\\s\\S]+))?$`).exec(text.trim());
|
|
93
|
+
const callback = new RegExp(`^/orch q:(${UUID}):(snooze|mute)$`).exec(text.trim());
|
|
94
|
+
if (!command && !callback)
|
|
95
|
+
return undefined;
|
|
96
|
+
const [, questionId, action] = (command ?? callback);
|
|
97
|
+
const row = this.owned(scope, questionId);
|
|
98
|
+
if (action === 'answer') {
|
|
99
|
+
const task = this.tasks.answerByUser(String(row.conversation_id), scope.principalId, String(row.task_id), questionId, command?.[3] ?? '', inputId);
|
|
100
|
+
this.store.run('UPDATE task_questions SET closed=1 WHERE question_id=?', questionId);
|
|
101
|
+
this.suppressQuestionReports(questionId);
|
|
102
|
+
return { text: `Answer received · ${task.title}\nThe answer is saved. Current task status: ${task.state}.`, buttons: [] };
|
|
103
|
+
}
|
|
104
|
+
const task = this.store.task(String(row.task_id));
|
|
105
|
+
if (row.closed || task?.state !== 'waiting_input' || task.pendingQuestion?.questionId !== questionId)
|
|
106
|
+
throw new types_1.OrchestrationError('STALE_QUESTION');
|
|
107
|
+
this.store.cancelQuestionDeliveries(questionId);
|
|
108
|
+
this.store.run('UPDATE task_questions SET muted=?,next_reminder_at=? WHERE question_id=?', action === 'mute' ? 1 : 0, Date.now() + 3600000, questionId);
|
|
109
|
+
return { text: `${action === 'mute' ? 'Reminders muted' : 'Reminder snoozed for 1 hour'} · ${task.title}\nThe task is still waiting for your answer.`, buttons: [] };
|
|
110
|
+
}
|
|
111
|
+
/** Only a platform reply to a persisted question message is an unambiguous answer. */
|
|
112
|
+
answerReply(input, inputId) {
|
|
113
|
+
if (!input.text.trim() || input.attachmentIds?.length || !input.metadata?.repliedMessageId || input.text.trim().startsWith('/'))
|
|
114
|
+
return undefined;
|
|
115
|
+
const row = this.replyQuestion(input);
|
|
116
|
+
if (!row)
|
|
117
|
+
return undefined;
|
|
118
|
+
const scope = { channel: input.scope.source, chatId: input.scope.chatId, thread: input.scope.threadKey, sessionId: input.scope.agentSessionId, principalId: input.scope.principalId };
|
|
119
|
+
return this.handle(scope, `/task_question ${row.question_id} answer ${input.text}`, inputId);
|
|
120
|
+
}
|
|
121
|
+
normalizeReply(input) {
|
|
122
|
+
if (input.scope.source !== 'slack' || !input.scope.threadKey || input.metadata?.repliedMessageId !== input.scope.threadKey)
|
|
123
|
+
return input;
|
|
124
|
+
const row = this.store.get(`SELECT b.conversation_id FROM task_question_messages m JOIN deliveries d ON d.response_id=m.response_id
|
|
125
|
+
JOIN conversation_bindings b ON b.id=d.binding_id JOIN conversations c ON c.id=b.conversation_id
|
|
126
|
+
WHERE d.provider_message_id=? AND d.state='delivered' AND b.channel='slack' AND b.chat_id=? AND b.account_id=?
|
|
127
|
+
AND b.thread_key='' AND c.agent_session_id=?`, input.scope.threadKey, input.scope.chatId, input.scope.accountId, input.scope.agentSessionId);
|
|
128
|
+
if (!row)
|
|
129
|
+
return input;
|
|
130
|
+
this.store.assertMember(String(row.conversation_id), input.scope.principalId);
|
|
131
|
+
return { ...input, scope: { ...input.scope, threadKey: '' } };
|
|
132
|
+
}
|
|
133
|
+
matches(input) {
|
|
134
|
+
if (/^\/task_question(?:\s|$)/.test(input.text.trim()))
|
|
135
|
+
return true;
|
|
136
|
+
if (!input.text.trim() || input.text.trim().startsWith('/') || input.attachmentIds?.length || !input.metadata?.repliedMessageId)
|
|
137
|
+
return false;
|
|
138
|
+
const question = this.replyQuestion(input);
|
|
139
|
+
if (!question)
|
|
140
|
+
return false;
|
|
141
|
+
if (input.scope.source !== 'slack' || !question.closed)
|
|
142
|
+
return true;
|
|
143
|
+
// Slack repeats the root message as reply metadata for every later thread message.
|
|
144
|
+
// Once answered, only an actual retry of the saved receipt is a question control.
|
|
145
|
+
if (!input.ingressKey)
|
|
146
|
+
return false;
|
|
147
|
+
const s = input.scope;
|
|
148
|
+
const key = (0, store_1.payloadHash)([this.store.agentId, s.source, s.accountId, s.chatId, s.threadKey, s.principalId, input.ingressKey]);
|
|
149
|
+
return Boolean(this.store.get(`SELECT i.input_id FROM ingress_receipts i JOIN conversation_decisions d
|
|
150
|
+
ON d.kind='notice' AND EXISTS(SELECT 1 FROM json_each(d.input_ids_json) WHERE value=i.input_id) WHERE i.ingress_key=?`, key));
|
|
151
|
+
}
|
|
152
|
+
replyQuestion(input) {
|
|
153
|
+
const scope = { channel: input.scope.source, chatId: input.scope.chatId, thread: input.scope.threadKey, sessionId: input.scope.agentSessionId };
|
|
154
|
+
return this.store.get(`SELECT DISTINCT m.question_id,q.closed FROM task_question_messages m JOIN task_questions q ON q.question_id=m.question_id JOIN deliveries d ON d.response_id=m.response_id
|
|
155
|
+
JOIN conversation_bindings b ON b.id=d.binding_id JOIN conversations c ON c.id=b.conversation_id
|
|
156
|
+
WHERE d.provider_message_id=? AND d.state='delivered' AND b.channel=? AND b.chat_id=? AND b.thread_key=? AND c.agent_session_id=?`, input.metadata.repliedMessageId, scope.channel, scope.chatId, scope.thread, scope.sessionId);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
exports.TaskQuestions = TaskQuestions;
|
|
160
|
+
//# sourceMappingURL=task-questions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-questions.js","sourceRoot":"","sources":["../../src/orchestration/task-questions.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { OrchestrationStore } from './store';
|
|
2
|
+
/** Scheduled callers need the report of their own work, not the queue acknowledgement. */
|
|
3
|
+
export declare function taskReport(store: OrchestrationStore, inputId: string): {
|
|
4
|
+
pending: boolean;
|
|
5
|
+
text?: string;
|
|
6
|
+
};
|
|
7
|
+
//# sourceMappingURL=task-report.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-report.d.ts","sourceRoot":"","sources":["../../src/orchestration/task-report.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;AAG7C,0FAA0F;AAC1F,wBAAgB,UAAU,CAAC,KAAK,EAAE,kBAAkB,EAAE,OAAO,EAAE,MAAM,GAAG;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAE,CAoB1G"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.taskReport = taskReport;
|
|
4
|
+
const types_1 = require("./types");
|
|
5
|
+
/** Scheduled callers need the report of their own work, not the queue acknowledgement. */
|
|
6
|
+
function taskReport(store, inputId) {
|
|
7
|
+
const tasks = store.all(`SELECT DISTINCT t.snapshot_json FROM task_commands tc
|
|
8
|
+
JOIN conversation_decisions d ON d.id=tc.decision_id JOIN tasks t ON t.id=tc.task_id
|
|
9
|
+
WHERE EXISTS (SELECT 1 FROM json_each(d.input_ids_json) WHERE value=?)`, inputId)
|
|
10
|
+
.map(row => JSON.parse(String(row.snapshot_json)));
|
|
11
|
+
if (!tasks.length)
|
|
12
|
+
return { pending: false };
|
|
13
|
+
const reports = new Map();
|
|
14
|
+
let pending = false;
|
|
15
|
+
for (const task of tasks) {
|
|
16
|
+
if (['failed', 'cancelled', 'needs_reconciliation', 'waiting_input'].includes(task.state)) {
|
|
17
|
+
throw new types_1.OrchestrationError('SCHEDULED_TASK_INCOMPLETE', `Task ${task.taskId} ${task.state}: ${task.failure?.code ?? task.state} ${task.failure?.message ?? ''}`.trim());
|
|
18
|
+
}
|
|
19
|
+
if (task.state !== 'completed') {
|
|
20
|
+
pending = true;
|
|
21
|
+
continue;
|
|
22
|
+
}
|
|
23
|
+
const report = store.get(`SELECT r.id,r.generated_text FROM notifications n
|
|
24
|
+
JOIN assistant_responses r ON r.decision_id=n.decision_id
|
|
25
|
+
WHERE n.task_id=? AND n.task_state_version=? AND n.status='handled' AND r.state='completed'`, task.taskId, task.stateVersion);
|
|
26
|
+
if (!report?.generated_text)
|
|
27
|
+
pending = true;
|
|
28
|
+
else
|
|
29
|
+
reports.set(String(report.id), String(report.generated_text));
|
|
30
|
+
}
|
|
31
|
+
return pending ? { pending: true } : { pending: false, text: [...reports.values()].join('\n\n') };
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=task-report.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"task-report.js","sourceRoot":"","sources":["../../src/orchestration/task-report.ts"],"names":[],"mappings":";;AAIA,gCAoBC;AAvBD,mCAA2D;AAE3D,0FAA0F;AAC1F,SAAgB,UAAU,CAAC,KAAyB,EAAE,OAAe;IACnE,MAAM,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC;;2EAEiD,EAAE,OAAO,CAAC;SAChF,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,aAAa,CAAC,CAAiB,CAAC,CAAC;IACrE,IAAI,CAAC,KAAK,CAAC,MAAM;QAAE,OAAO,EAAC,OAAO,EAAC,KAAK,EAAC,CAAC;IAC1C,MAAM,OAAO,GAAG,IAAI,GAAG,EAAiB,CAAC;IACzC,IAAI,OAAO,GAAG,KAAK,CAAC;IACpB,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;QACzB,IAAI,CAAC,QAAQ,EAAC,WAAW,EAAC,sBAAsB,EAAC,eAAe,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;YACvF,MAAM,IAAI,0BAAkB,CAAC,2BAA2B,EAAE,QAAQ,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,KAAK,KAAK,IAAI,CAAC,OAAO,EAAE,IAAI,IAAI,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,OAAO,EAAE,OAAO,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;QAC5K,CAAC;QACD,IAAI,IAAI,CAAC,KAAK,KAAK,WAAW,EAAE,CAAC;YAAC,OAAO,GAAG,IAAI,CAAC;YAAC,SAAS;QAAC,CAAC;QAC7D,MAAM,MAAM,GAAG,KAAK,CAAC,GAAG,CAAC;;kGAEqE,EAAE,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;QAChI,IAAI,CAAC,MAAM,EAAE,cAAc;YAAE,OAAO,GAAG,IAAI,CAAC;;YACvC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,EAAC,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC,CAAC;IACpE,CAAC;IACD,OAAO,OAAO,CAAC,CAAC,CAAC,EAAC,OAAO,EAAC,IAAI,EAAC,CAAC,CAAC,CAAC,EAAC,OAAO,EAAC,KAAK,EAAC,IAAI,EAAC,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,EAAC,CAAC;AAC5F,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/** Installed into the attempt directory; never invokes a shell with task/tool data.
|
|
2
|
+
* Claude Code PostToolUse/Failure supplies context before its next model call.
|
|
3
|
+
* Stop handles an update arriving after the last tool. Empty checkpoints are silent.
|
|
4
|
+
*/
|
|
5
|
+
export declare const CHECKPOINT_HOOK: string;
|
|
6
|
+
export declare function checkpointSettings(command: string): {
|
|
7
|
+
disableAllHooks: boolean;
|
|
8
|
+
hooks: {
|
|
9
|
+
[k: string]: {
|
|
10
|
+
matcher: string;
|
|
11
|
+
hooks: {
|
|
12
|
+
type: string;
|
|
13
|
+
command: string;
|
|
14
|
+
timeout: number;
|
|
15
|
+
}[];
|
|
16
|
+
}[];
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=checkpoint-hook.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checkpoint-hook.d.ts","sourceRoot":"","sources":["../../../src/orchestration/tasks/checkpoint-hook.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,eAAO,MAAM,eAAe,QAoC3B,CAAC;AACF,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,MAAM;;;;;;;;;;;;EAEjD"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CHECKPOINT_HOOK = void 0;
|
|
4
|
+
exports.checkpointSettings = checkpointSettings;
|
|
5
|
+
/** Installed into the attempt directory; never invokes a shell with task/tool data.
|
|
6
|
+
* Claude Code PostToolUse/Failure supplies context before its next model call.
|
|
7
|
+
* Stop handles an update arriving after the last tool. Empty checkpoints are silent.
|
|
8
|
+
*/
|
|
9
|
+
exports.CHECKPOINT_HOOK = String.raw `
|
|
10
|
+
const fs = require('fs'), http = require('http');
|
|
11
|
+
let input = ''; process.stdin.setEncoding('utf8');
|
|
12
|
+
process.stdin.on('data', chunk => { input += chunk; if (input.length > 8*1024*1024) process.exit(0); });
|
|
13
|
+
process.stdin.on('end', async () => {
|
|
14
|
+
try {
|
|
15
|
+
const event = JSON.parse(input);
|
|
16
|
+
if (event.agent_id || !['PostToolUse','PostToolUseFailure','Stop'].includes(event.hook_event_name)) return;
|
|
17
|
+
const ticket = JSON.parse(fs.readFileSync(process.argv[2], 'utf8'));
|
|
18
|
+
const call = args => new Promise((resolve,reject) => {
|
|
19
|
+
const url = ticket.socket ? null : new URL(ticket.url);
|
|
20
|
+
const options = ticket.socket ? { socketPath: ticket.socket, path: '/call' } : { hostname:url.hostname, port:url.port, path:url.pathname };
|
|
21
|
+
const request = http.request({...options, method: 'POST', headers: { Authorization: 'Bearer '+ticket.token, 'Content-Type': 'application/json' } }, response => {
|
|
22
|
+
let body = ''; response.setEncoding('utf8');
|
|
23
|
+
response.on('data', chunk => { body += chunk; if(body.length > 2*1024*1024) response.destroy(); });
|
|
24
|
+
response.on('error', reject);
|
|
25
|
+
response.on('end', () => { try { if(response.statusCode !== 200) return reject(Error('checkpoint')); resolve(JSON.parse(body)); } catch(error) { reject(error); } });
|
|
26
|
+
});
|
|
27
|
+
request.on('error',reject); request.setTimeout(2000,()=>request.destroy(Error('timeout')));
|
|
28
|
+
request.end(JSON.stringify({tool:'task_checkpoint', action_id:'hook', args:{sessionId:event.session_id,...args}}));
|
|
29
|
+
});
|
|
30
|
+
const next = await call({});
|
|
31
|
+
const context = [next.directive ? 'Task revision '+next.revision+' received at a tool boundary. Continue this same task; do not redo completed actions.\n'+next.directive : '', next.feedback?.message].filter(Boolean).join('\n\n');
|
|
32
|
+
if (!context) return;
|
|
33
|
+
// Monitoring advice cannot keep a completed worker alive. Explicit task
|
|
34
|
+
// amendments still block Stop so new user work cannot be silently dropped.
|
|
35
|
+
if (event.hook_event_name === 'Stop' && next.directiveKind === 'advice') {
|
|
36
|
+
await call({ackRevision:next.revision,ackFeedback:next.feedback?.id}); return;
|
|
37
|
+
}
|
|
38
|
+
// Stop blocks only for a new revision, never because monitoring wants more work.
|
|
39
|
+
if (event.hook_event_name === 'Stop' && !next.directive) return;
|
|
40
|
+
const output = event.hook_event_name === 'Stop' ? {decision:'block',reason:context} : {hookSpecificOutput:{hookEventName:event.hook_event_name,additionalContext:context}};
|
|
41
|
+
await new Promise(resolve => process.stdout.write(JSON.stringify(output)+'\n',resolve));
|
|
42
|
+
await call({ackRevision:next.revision,ackFeedback:next.feedback?.id});
|
|
43
|
+
} catch { /* A bridge failure cannot kill or authorize a task; its revision stays pending. */ }
|
|
44
|
+
});
|
|
45
|
+
`;
|
|
46
|
+
function checkpointSettings(command) {
|
|
47
|
+
return { disableAllHooks: false, hooks: Object.fromEntries(['PostToolUse', 'PostToolUseFailure', 'Stop'].map(event => [event, [{ matcher: '*', hooks: [{ type: 'command', command, timeout: 5 }] }]])) };
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=checkpoint-hook.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checkpoint-hook.js","sourceRoot":"","sources":["../../../src/orchestration/tasks/checkpoint-hook.ts"],"names":[],"mappings":";;;AAyCA,gDAEC;AA3CD;;;GAGG;AACU,QAAA,eAAe,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCxC,CAAC;AACF,SAAgB,kBAAkB,CAAC,OAAe;IAChD,OAAO,EAAE,eAAe,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,CAAC,WAAW,CAAC,CAAC,aAAa,EAAC,oBAAoB,EAAC,MAAM,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,EAAE,CAAC,EAAE,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;AACzM,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OrchestrationStore } from '../store';
|
|
2
|
+
/** Conservative retention: archive clean worktrees and private shared-project
|
|
3
|
+
* snapshots. Dirty worktrees remain available for review. Never delete a shared
|
|
4
|
+
* project, uncertain attempt, or path outside the orchestration's resource directory. */
|
|
5
|
+
export declare class ResourceCleanup {
|
|
6
|
+
private readonly store;
|
|
7
|
+
private readonly resourceRoot;
|
|
8
|
+
private readonly archiveRoot;
|
|
9
|
+
private readonly retentionDays;
|
|
10
|
+
private running?;
|
|
11
|
+
private readonly controller;
|
|
12
|
+
constructor(store: OrchestrationStore, resourceRoot: string, archiveRoot: string, retentionDays: number);
|
|
13
|
+
tick(now?: number): Promise<void>;
|
|
14
|
+
settle(): Promise<void>;
|
|
15
|
+
stop(): void;
|
|
16
|
+
private run;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=cleanup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cleanup.d.ts","sourceRoot":"","sources":["../../../src/orchestration/tasks/cleanup.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAM9C;;yFAEyF;AACzF,qBAAa,eAAe;IAGd,OAAO,CAAC,QAAQ,CAAC,KAAK;IAAsB,OAAO,CAAC,QAAQ,CAAC,YAAY;IAAU,OAAO,CAAC,QAAQ,CAAC,WAAW;IAAU,OAAO,CAAC,QAAQ,CAAC,aAAa;IAFnK,OAAO,CAAC,OAAO,CAAC,CAAgB;IAChC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAyB;gBACvB,KAAK,EAAE,kBAAkB,EAAmB,YAAY,EAAE,MAAM,EAAmB,WAAW,EAAE,MAAM,EAAmB,aAAa,EAAE,MAAM;IAC3K,IAAI,CAAC,GAAG,SAAa,GAAG,OAAO,CAAC,IAAI,CAAC;IAM/B,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC;IAC7B,IAAI,IAAI,IAAI;YACE,GAAG;CA+ClB"}
|