@creativeintelligence/abbie 0.1.0
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/bin/dev.js +61 -0
- package/bin/run.js +66 -0
- package/dist/cli/base-command.d.ts +71 -0
- package/dist/cli/base-command.d.ts.map +1 -0
- package/dist/cli/base-command.js +200 -0
- package/dist/cli/commands/agent/list.d.ts +12 -0
- package/dist/cli/commands/agent/list.d.ts.map +1 -0
- package/dist/cli/commands/agent/list.js +62 -0
- package/dist/cli/commands/annotation/ack.d.ts +18 -0
- package/dist/cli/commands/annotation/ack.d.ts.map +1 -0
- package/dist/cli/commands/annotation/ack.js +29 -0
- package/dist/cli/commands/annotation/create.d.ts +23 -0
- package/dist/cli/commands/annotation/create.d.ts.map +1 -0
- package/dist/cli/commands/annotation/create.js +58 -0
- package/dist/cli/commands/annotation/events.d.ts +18 -0
- package/dist/cli/commands/annotation/events.d.ts.map +1 -0
- package/dist/cli/commands/annotation/events.js +50 -0
- package/dist/cli/commands/annotation/export.d.ts +19 -0
- package/dist/cli/commands/annotation/export.d.ts.map +1 -0
- package/dist/cli/commands/annotation/export.js +56 -0
- package/dist/cli/commands/annotation/import.d.ts +21 -0
- package/dist/cli/commands/annotation/import.d.ts.map +1 -0
- package/dist/cli/commands/annotation/import.js +84 -0
- package/dist/cli/commands/annotation/ingest.d.ts +24 -0
- package/dist/cli/commands/annotation/ingest.d.ts.map +1 -0
- package/dist/cli/commands/annotation/ingest.js +95 -0
- package/dist/cli/commands/annotation/list.d.ts +18 -0
- package/dist/cli/commands/annotation/list.d.ts.map +1 -0
- package/dist/cli/commands/annotation/list.js +45 -0
- package/dist/cli/commands/annotation/reply.d.ts +20 -0
- package/dist/cli/commands/annotation/reply.d.ts.map +1 -0
- package/dist/cli/commands/annotation/reply.js +38 -0
- package/dist/cli/commands/annotation/resolve.d.ts +18 -0
- package/dist/cli/commands/annotation/resolve.d.ts.map +1 -0
- package/dist/cli/commands/annotation/resolve.js +29 -0
- package/dist/cli/commands/auto/index.d.ts +53 -0
- package/dist/cli/commands/auto/index.d.ts.map +1 -0
- package/dist/cli/commands/auto/index.js +609 -0
- package/dist/cli/commands/backlog/add.d.ts +22 -0
- package/dist/cli/commands/backlog/add.d.ts.map +1 -0
- package/dist/cli/commands/backlog/add.js +65 -0
- package/dist/cli/commands/backlog/claim.d.ts +19 -0
- package/dist/cli/commands/backlog/claim.d.ts.map +1 -0
- package/dist/cli/commands/backlog/claim.js +45 -0
- package/dist/cli/commands/backlog/complete.d.ts +18 -0
- package/dist/cli/commands/backlog/complete.d.ts.map +1 -0
- package/dist/cli/commands/backlog/complete.js +42 -0
- package/dist/cli/commands/backlog/list.d.ts +20 -0
- package/dist/cli/commands/backlog/list.d.ts.map +1 -0
- package/dist/cli/commands/backlog/list.js +91 -0
- package/dist/cli/commands/backlog/pick.d.ts +18 -0
- package/dist/cli/commands/backlog/pick.d.ts.map +1 -0
- package/dist/cli/commands/backlog/pick.js +42 -0
- package/dist/cli/commands/backlog/sync.d.ts +24 -0
- package/dist/cli/commands/backlog/sync.d.ts.map +1 -0
- package/dist/cli/commands/backlog/sync.js +109 -0
- package/dist/cli/commands/bootstrap.d.ts +20 -0
- package/dist/cli/commands/bootstrap.d.ts.map +1 -0
- package/dist/cli/commands/bootstrap.js +177 -0
- package/dist/cli/commands/bridge.d.ts +37 -0
- package/dist/cli/commands/bridge.d.ts.map +1 -0
- package/dist/cli/commands/bridge.js +208 -0
- package/dist/cli/commands/context/inject.d.ts +18 -0
- package/dist/cli/commands/context/inject.d.ts.map +1 -0
- package/dist/cli/commands/context/inject.js +89 -0
- package/dist/cli/commands/context/list.d.ts +19 -0
- package/dist/cli/commands/context/list.d.ts.map +1 -0
- package/dist/cli/commands/context/list.js +96 -0
- package/dist/cli/commands/context/publish.d.ts +23 -0
- package/dist/cli/commands/context/publish.d.ts.map +1 -0
- package/dist/cli/commands/context/publish.js +72 -0
- package/dist/cli/commands/context/read.d.ts +19 -0
- package/dist/cli/commands/context/read.d.ts.map +1 -0
- package/dist/cli/commands/context/read.js +74 -0
- package/dist/cli/commands/daemon.d.ts +56 -0
- package/dist/cli/commands/daemon.d.ts.map +1 -0
- package/dist/cli/commands/daemon.js +1465 -0
- package/dist/cli/commands/digest/index.d.ts +47 -0
- package/dist/cli/commands/digest/index.d.ts.map +1 -0
- package/dist/cli/commands/digest/index.js +191 -0
- package/dist/cli/commands/docs/lint.d.ts +18 -0
- package/dist/cli/commands/docs/lint.d.ts.map +1 -0
- package/dist/cli/commands/docs/lint.js +82 -0
- package/dist/cli/commands/docs/sync.d.ts +19 -0
- package/dist/cli/commands/docs/sync.d.ts.map +1 -0
- package/dist/cli/commands/docs/sync.js +76 -0
- package/dist/cli/commands/doctor.d.ts +23 -0
- package/dist/cli/commands/doctor.d.ts.map +1 -0
- package/dist/cli/commands/doctor.js +220 -0
- package/dist/cli/commands/find/index.d.ts +25 -0
- package/dist/cli/commands/find/index.d.ts.map +1 -0
- package/dist/cli/commands/find/index.js +266 -0
- package/dist/cli/commands/gc.d.ts +29 -0
- package/dist/cli/commands/gc.d.ts.map +1 -0
- package/dist/cli/commands/gc.js +211 -0
- package/dist/cli/commands/history/index.d.ts +49 -0
- package/dist/cli/commands/history/index.d.ts.map +1 -0
- package/dist/cli/commands/history/index.js +210 -0
- package/dist/cli/commands/hooks/guard.d.ts +20 -0
- package/dist/cli/commands/hooks/guard.d.ts.map +1 -0
- package/dist/cli/commands/hooks/guard.js +53 -0
- package/dist/cli/commands/hooks/list.d.ts +22 -0
- package/dist/cli/commands/hooks/list.d.ts.map +1 -0
- package/dist/cli/commands/hooks/list.js +97 -0
- package/dist/cli/commands/hooks/lock.d.ts +19 -0
- package/dist/cli/commands/hooks/lock.d.ts.map +1 -0
- package/dist/cli/commands/hooks/lock.js +36 -0
- package/dist/cli/commands/hooks/status.d.ts +22 -0
- package/dist/cli/commands/hooks/status.d.ts.map +1 -0
- package/dist/cli/commands/hooks/status.js +41 -0
- package/dist/cli/commands/hooks/test.d.ts +30 -0
- package/dist/cli/commands/hooks/test.d.ts.map +1 -0
- package/dist/cli/commands/hooks/test.js +153 -0
- package/dist/cli/commands/hooks/unlock.d.ts +22 -0
- package/dist/cli/commands/hooks/unlock.d.ts.map +1 -0
- package/dist/cli/commands/hooks/unlock.js +44 -0
- package/dist/cli/commands/index.d.ts +36 -0
- package/dist/cli/commands/index.d.ts.map +1 -0
- package/dist/cli/commands/index.js +228 -0
- package/dist/cli/commands/list.d.ts +18 -0
- package/dist/cli/commands/list.d.ts.map +1 -0
- package/dist/cli/commands/list.e2e.test.d.ts +1 -0
- package/dist/cli/commands/list.e2e.test.js +47 -0
- package/dist/cli/commands/list.js +75 -0
- package/dist/cli/commands/login.d.ts +36 -0
- package/dist/cli/commands/login.d.ts.map +1 -0
- package/dist/cli/commands/login.js +201 -0
- package/dist/cli/commands/logout.d.ts +22 -0
- package/dist/cli/commands/logout.d.ts.map +1 -0
- package/dist/cli/commands/logout.js +30 -0
- package/dist/cli/commands/panes/broker.d.ts +17 -0
- package/dist/cli/commands/panes/broker.d.ts.map +1 -0
- package/dist/cli/commands/panes/broker.js +57 -0
- package/dist/cli/commands/panes/pipe-sink.d.ts +17 -0
- package/dist/cli/commands/panes/pipe-sink.d.ts.map +1 -0
- package/dist/cli/commands/panes/pipe-sink.js +90 -0
- package/dist/cli/commands/panes/snapshot.d.ts +20 -0
- package/dist/cli/commands/panes/snapshot.d.ts.map +1 -0
- package/dist/cli/commands/panes/snapshot.js +125 -0
- package/dist/cli/commands/plan.d.ts +21 -0
- package/dist/cli/commands/plan.d.ts.map +1 -0
- package/dist/cli/commands/plan.e2e.test.d.ts +1 -0
- package/dist/cli/commands/plan.e2e.test.js +74 -0
- package/dist/cli/commands/plan.js +57 -0
- package/dist/cli/commands/preview/index.d.ts +38 -0
- package/dist/cli/commands/preview/index.d.ts.map +1 -0
- package/dist/cli/commands/preview/index.js +228 -0
- package/dist/cli/commands/preview/init.d.ts +25 -0
- package/dist/cli/commands/preview/init.d.ts.map +1 -0
- package/dist/cli/commands/preview/init.js +159 -0
- package/dist/cli/commands/preview/list.d.ts +19 -0
- package/dist/cli/commands/preview/list.d.ts.map +1 -0
- package/dist/cli/commands/preview/list.js +87 -0
- package/dist/cli/commands/preview/status.d.ts +21 -0
- package/dist/cli/commands/preview/status.d.ts.map +1 -0
- package/dist/cli/commands/preview/status.js +102 -0
- package/dist/cli/commands/preview/stop.d.ts +22 -0
- package/dist/cli/commands/preview/stop.d.ts.map +1 -0
- package/dist/cli/commands/preview/stop.js +127 -0
- package/dist/cli/commands/preview/sync.d.ts +23 -0
- package/dist/cli/commands/preview/sync.d.ts.map +1 -0
- package/dist/cli/commands/preview/sync.js +144 -0
- package/dist/cli/commands/preview/watch.d.ts +24 -0
- package/dist/cli/commands/preview/watch.d.ts.map +1 -0
- package/dist/cli/commands/preview/watch.js +153 -0
- package/dist/cli/commands/project/add.d.ts +19 -0
- package/dist/cli/commands/project/add.d.ts.map +1 -0
- package/dist/cli/commands/project/add.js +90 -0
- package/dist/cli/commands/project/list.d.ts +14 -0
- package/dist/cli/commands/project/list.d.ts.map +1 -0
- package/dist/cli/commands/project/list.js +113 -0
- package/dist/cli/commands/project/remove.d.ts +18 -0
- package/dist/cli/commands/project/remove.d.ts.map +1 -0
- package/dist/cli/commands/project/remove.js +46 -0
- package/dist/cli/commands/push.d.ts +24 -0
- package/dist/cli/commands/push.d.ts.map +1 -0
- package/dist/cli/commands/push.js +93 -0
- package/dist/cli/commands/reference/add.d.ts +20 -0
- package/dist/cli/commands/reference/add.d.ts.map +1 -0
- package/dist/cli/commands/reference/add.js +231 -0
- package/dist/cli/commands/reference/delete.d.ts +18 -0
- package/dist/cli/commands/reference/delete.d.ts.map +1 -0
- package/dist/cli/commands/reference/delete.js +59 -0
- package/dist/cli/commands/reference/extract.d.ts +22 -0
- package/dist/cli/commands/reference/extract.d.ts.map +1 -0
- package/dist/cli/commands/reference/extract.js +321 -0
- package/dist/cli/commands/reference/list.d.ts +19 -0
- package/dist/cli/commands/reference/list.d.ts.map +1 -0
- package/dist/cli/commands/reference/list.js +100 -0
- package/dist/cli/commands/reference/normalize.d.ts +19 -0
- package/dist/cli/commands/reference/normalize.d.ts.map +1 -0
- package/dist/cli/commands/reference/normalize.js +66 -0
- package/dist/cli/commands/reference/open.d.ts +20 -0
- package/dist/cli/commands/reference/open.d.ts.map +1 -0
- package/dist/cli/commands/reference/open.js +81 -0
- package/dist/cli/commands/reference/save.d.ts +22 -0
- package/dist/cli/commands/reference/save.d.ts.map +1 -0
- package/dist/cli/commands/reference/save.js +84 -0
- package/dist/cli/commands/reference/search.d.ts +18 -0
- package/dist/cli/commands/reference/search.d.ts.map +1 -0
- package/dist/cli/commands/reference/search.js +71 -0
- package/dist/cli/commands/reference/show.d.ts +19 -0
- package/dist/cli/commands/reference/show.d.ts.map +1 -0
- package/dist/cli/commands/reference/show.js +148 -0
- package/dist/cli/commands/reference/update-index.d.ts +16 -0
- package/dist/cli/commands/reference/update-index.d.ts.map +1 -0
- package/dist/cli/commands/reference/update-index.js +82 -0
- package/dist/cli/commands/reference/update.d.ts +23 -0
- package/dist/cli/commands/reference/update.d.ts.map +1 -0
- package/dist/cli/commands/reference/update.js +120 -0
- package/dist/cli/commands/report/blocked.d.ts +28 -0
- package/dist/cli/commands/report/blocked.d.ts.map +1 -0
- package/dist/cli/commands/report/blocked.js +145 -0
- package/dist/cli/commands/report/complete.d.ts +32 -0
- package/dist/cli/commands/report/complete.d.ts.map +1 -0
- package/dist/cli/commands/report/complete.js +163 -0
- package/dist/cli/commands/report/progress.d.ts +28 -0
- package/dist/cli/commands/report/progress.d.ts.map +1 -0
- package/dist/cli/commands/report/progress.js +128 -0
- package/dist/cli/commands/report/start.d.ts +26 -0
- package/dist/cli/commands/report/start.d.ts.map +1 -0
- package/dist/cli/commands/report/start.js +126 -0
- package/dist/cli/commands/resource/acquire.d.ts +21 -0
- package/dist/cli/commands/resource/acquire.d.ts.map +1 -0
- package/dist/cli/commands/resource/acquire.js +90 -0
- package/dist/cli/commands/resource/list.d.ts +15 -0
- package/dist/cli/commands/resource/list.d.ts.map +1 -0
- package/dist/cli/commands/resource/list.js +61 -0
- package/dist/cli/commands/resource/release.d.ts +18 -0
- package/dist/cli/commands/resource/release.d.ts.map +1 -0
- package/dist/cli/commands/resource/release.js +50 -0
- package/dist/cli/commands/resource/wait.d.ts +21 -0
- package/dist/cli/commands/resource/wait.d.ts.map +1 -0
- package/dist/cli/commands/resource/wait.js +73 -0
- package/dist/cli/commands/review.d.ts +27 -0
- package/dist/cli/commands/review.d.ts.map +1 -0
- package/dist/cli/commands/review.js +84 -0
- package/dist/cli/commands/session/attach.d.ts +32 -0
- package/dist/cli/commands/session/attach.d.ts.map +1 -0
- package/dist/cli/commands/session/attach.js +168 -0
- package/dist/cli/commands/session/await.d.ts +19 -0
- package/dist/cli/commands/session/await.d.ts.map +1 -0
- package/dist/cli/commands/session/await.js +68 -0
- package/dist/cli/commands/session/complete.d.ts +20 -0
- package/dist/cli/commands/session/complete.d.ts.map +1 -0
- package/dist/cli/commands/session/complete.js +83 -0
- package/dist/cli/commands/session/create.d.ts +20 -0
- package/dist/cli/commands/session/create.d.ts.map +1 -0
- package/dist/cli/commands/session/create.js +74 -0
- package/dist/cli/commands/session/heartbeat.d.ts +18 -0
- package/dist/cli/commands/session/heartbeat.d.ts.map +1 -0
- package/dist/cli/commands/session/heartbeat.js +49 -0
- package/dist/cli/commands/session/list.d.ts +25 -0
- package/dist/cli/commands/session/list.d.ts.map +1 -0
- package/dist/cli/commands/session/list.js +252 -0
- package/dist/cli/commands/session/mark-done.d.ts +20 -0
- package/dist/cli/commands/session/mark-done.d.ts.map +1 -0
- package/dist/cli/commands/session/mark-done.js +116 -0
- package/dist/cli/commands/session/mine.d.ts +22 -0
- package/dist/cli/commands/session/mine.d.ts.map +1 -0
- package/dist/cli/commands/session/mine.js +160 -0
- package/dist/cli/commands/session/replay.d.ts +84 -0
- package/dist/cli/commands/session/replay.d.ts.map +1 -0
- package/dist/cli/commands/session/replay.js +524 -0
- package/dist/cli/commands/session/run.d.ts +29 -0
- package/dist/cli/commands/session/run.d.ts.map +1 -0
- package/dist/cli/commands/session/run.js +38 -0
- package/dist/cli/commands/session/show.d.ts +23 -0
- package/dist/cli/commands/session/show.d.ts.map +1 -0
- package/dist/cli/commands/session/show.js +156 -0
- package/dist/cli/commands/session/start.d.ts +43 -0
- package/dist/cli/commands/session/start.d.ts.map +1 -0
- package/dist/cli/commands/session/start.js +515 -0
- package/dist/cli/commands/session/state/cleanup.d.ts +16 -0
- package/dist/cli/commands/session/state/cleanup.d.ts.map +1 -0
- package/dist/cli/commands/session/state/cleanup.js +49 -0
- package/dist/cli/commands/session/state/end.d.ts +16 -0
- package/dist/cli/commands/session/state/end.d.ts.map +1 -0
- package/dist/cli/commands/session/state/end.js +39 -0
- package/dist/cli/commands/session/state/get.d.ts +16 -0
- package/dist/cli/commands/session/state/get.d.ts.map +1 -0
- package/dist/cli/commands/session/state/get.js +52 -0
- package/dist/cli/commands/session/state/init.d.ts +17 -0
- package/dist/cli/commands/session/state/init.d.ts.map +1 -0
- package/dist/cli/commands/session/state/init.js +43 -0
- package/dist/cli/commands/session/state/list.d.ts +17 -0
- package/dist/cli/commands/session/state/list.d.ts.map +1 -0
- package/dist/cli/commands/session/state/list.js +52 -0
- package/dist/cli/commands/session/state/update.d.ts +17 -0
- package/dist/cli/commands/session/state/update.d.ts.map +1 -0
- package/dist/cli/commands/session/state/update.js +97 -0
- package/dist/cli/commands/session/stop.d.ts +20 -0
- package/dist/cli/commands/session/stop.d.ts.map +1 -0
- package/dist/cli/commands/session/stop.js +110 -0
- package/dist/cli/commands/session/view.d.ts +24 -0
- package/dist/cli/commands/session/view.d.ts.map +1 -0
- package/dist/cli/commands/session/view.js +145 -0
- package/dist/cli/commands/start.d.ts +36 -0
- package/dist/cli/commands/start.d.ts.map +1 -0
- package/dist/cli/commands/start.js +228 -0
- package/dist/cli/commands/state/dump.d.ts +28 -0
- package/dist/cli/commands/state/dump.d.ts.map +1 -0
- package/dist/cli/commands/state/dump.js +314 -0
- package/dist/cli/commands/status.d.ts +56 -0
- package/dist/cli/commands/status.d.ts.map +1 -0
- package/dist/cli/commands/status.js +200 -0
- package/dist/cli/commands/sync.d.ts +38 -0
- package/dist/cli/commands/sync.d.ts.map +1 -0
- package/dist/cli/commands/sync.js +153 -0
- package/dist/cli/commands/trace/export.d.ts +22 -0
- package/dist/cli/commands/trace/export.d.ts.map +1 -0
- package/dist/cli/commands/trace/export.js +212 -0
- package/dist/cli/commands/triage/claim.d.ts +23 -0
- package/dist/cli/commands/triage/claim.d.ts.map +1 -0
- package/dist/cli/commands/triage/claim.js +186 -0
- package/dist/cli/commands/triage/list.d.ts +22 -0
- package/dist/cli/commands/triage/list.d.ts.map +1 -0
- package/dist/cli/commands/triage/list.js +112 -0
- package/dist/cli/commands/triage/next.d.ts +18 -0
- package/dist/cli/commands/triage/next.d.ts.map +1 -0
- package/dist/cli/commands/triage/next.js +63 -0
- package/dist/cli/commands/triage/pull.d.ts +19 -0
- package/dist/cli/commands/triage/pull.d.ts.map +1 -0
- package/dist/cli/commands/triage/pull.js +82 -0
- package/dist/cli/commands/triage/stats.d.ts +16 -0
- package/dist/cli/commands/triage/stats.d.ts.map +1 -0
- package/dist/cli/commands/triage/stats.js +69 -0
- package/dist/cli/commands/tunnel/list.d.ts +16 -0
- package/dist/cli/commands/tunnel/list.d.ts.map +1 -0
- package/dist/cli/commands/tunnel/list.js +98 -0
- package/dist/cli/commands/tunnel/start.d.ts +24 -0
- package/dist/cli/commands/tunnel/start.d.ts.map +1 -0
- package/dist/cli/commands/tunnel/start.js +107 -0
- package/dist/cli/commands/tunnel/stop.d.ts +20 -0
- package/dist/cli/commands/tunnel/stop.d.ts.map +1 -0
- package/dist/cli/commands/tunnel/stop.js +90 -0
- package/dist/cli/commands/tunnel/url.d.ts +21 -0
- package/dist/cli/commands/tunnel/url.d.ts.map +1 -0
- package/dist/cli/commands/tunnel/url.js +70 -0
- package/dist/cli/commands/web/start.d.ts +20 -0
- package/dist/cli/commands/web/start.d.ts.map +1 -0
- package/dist/cli/commands/web/start.js +110 -0
- package/dist/cli/commands/windows/context.d.ts +18 -0
- package/dist/cli/commands/windows/context.d.ts.map +1 -0
- package/dist/cli/commands/windows/context.js +326 -0
- package/dist/cli/commands/windows/focus.d.ts +17 -0
- package/dist/cli/commands/windows/focus.d.ts.map +1 -0
- package/dist/cli/commands/windows/focus.js +103 -0
- package/dist/cli/commands/windows/list.d.ts +21 -0
- package/dist/cli/commands/windows/list.d.ts.map +1 -0
- package/dist/cli/commands/windows/list.js +172 -0
- package/dist/cli/commands/windows/map.d.ts +17 -0
- package/dist/cli/commands/windows/map.d.ts.map +1 -0
- package/dist/cli/commands/windows/map.js +168 -0
- package/dist/cli/commands/windows/read.d.ts +21 -0
- package/dist/cli/commands/windows/read.d.ts.map +1 -0
- package/dist/cli/commands/windows/read.js +241 -0
- package/dist/cli/commands/windows/search.d.ts +24 -0
- package/dist/cli/commands/windows/search.d.ts.map +1 -0
- package/dist/cli/commands/windows/search.js +171 -0
- package/dist/cli/commands/windows/show.d.ts +19 -0
- package/dist/cli/commands/windows/show.d.ts.map +1 -0
- package/dist/cli/commands/windows/show.js +165 -0
- package/dist/cli/commands/windows/watch.d.ts +19 -0
- package/dist/cli/commands/windows/watch.d.ts.map +1 -0
- package/dist/cli/commands/windows/watch.js +241 -0
- package/dist/lib/active-sessions.d.ts +278 -0
- package/dist/lib/active-sessions.d.ts.map +1 -0
- package/dist/lib/active-sessions.js +1165 -0
- package/dist/lib/agent-adapters.d.ts +89 -0
- package/dist/lib/agent-adapters.d.ts.map +1 -0
- package/dist/lib/agent-adapters.js +296 -0
- package/dist/lib/agent-sessions.d.ts +126 -0
- package/dist/lib/agent-sessions.d.ts.map +1 -0
- package/dist/lib/agent-sessions.js +566 -0
- package/dist/lib/agent-trace.d.ts +84 -0
- package/dist/lib/agent-trace.d.ts.map +1 -0
- package/dist/lib/agent-trace.js +377 -0
- package/dist/lib/analytics.d.ts +55 -0
- package/dist/lib/analytics.d.ts.map +1 -0
- package/dist/lib/analytics.js +155 -0
- package/dist/lib/annotations-convex.d.ts +33 -0
- package/dist/lib/annotations-convex.d.ts.map +1 -0
- package/dist/lib/annotations-convex.js +246 -0
- package/dist/lib/annotations.d.ts +247 -0
- package/dist/lib/annotations.d.ts.map +1 -0
- package/dist/lib/annotations.js +564 -0
- package/dist/lib/auto/discover.d.ts +45 -0
- package/dist/lib/auto/discover.d.ts.map +1 -0
- package/dist/lib/auto/discover.js +426 -0
- package/dist/lib/auto/ideate.d.ts +72 -0
- package/dist/lib/auto/ideate.d.ts.map +1 -0
- package/dist/lib/auto/ideate.js +299 -0
- package/dist/lib/auto/spawn.d.ts +55 -0
- package/dist/lib/auto/spawn.d.ts.map +1 -0
- package/dist/lib/auto/spawn.js +434 -0
- package/dist/lib/auto/workspace.d.ts +62 -0
- package/dist/lib/auto/workspace.d.ts.map +1 -0
- package/dist/lib/auto/workspace.js +229 -0
- package/dist/lib/backlog.d.ts +140 -0
- package/dist/lib/backlog.d.ts.map +1 -0
- package/dist/lib/backlog.js +317 -0
- package/dist/lib/backlog.test.d.ts +1 -0
- package/dist/lib/backlog.test.js +162 -0
- package/dist/lib/config-loader.d.ts +68 -0
- package/dist/lib/config-loader.d.ts.map +1 -0
- package/dist/lib/config-loader.js +323 -0
- package/dist/lib/config-sync/adapters/claude.d.ts +32 -0
- package/dist/lib/config-sync/adapters/claude.d.ts.map +1 -0
- package/dist/lib/config-sync/adapters/claude.js +66 -0
- package/dist/lib/config-sync/adapters/codex.d.ts +23 -0
- package/dist/lib/config-sync/adapters/codex.d.ts.map +1 -0
- package/dist/lib/config-sync/adapters/codex.js +117 -0
- package/dist/lib/config-sync/adapters/copilot.d.ts +37 -0
- package/dist/lib/config-sync/adapters/copilot.d.ts.map +1 -0
- package/dist/lib/config-sync/adapters/copilot.js +72 -0
- package/dist/lib/config-sync/adapters/gemini.d.ts +29 -0
- package/dist/lib/config-sync/adapters/gemini.d.ts.map +1 -0
- package/dist/lib/config-sync/adapters/gemini.js +62 -0
- package/dist/lib/config-sync/adapters/index.d.ts +16 -0
- package/dist/lib/config-sync/adapters/index.d.ts.map +1 -0
- package/dist/lib/config-sync/adapters/index.js +32 -0
- package/dist/lib/config-sync/adapters/opencode.d.ts +28 -0
- package/dist/lib/config-sync/adapters/opencode.d.ts.map +1 -0
- package/dist/lib/config-sync/adapters/opencode.js +83 -0
- package/dist/lib/config-sync/index.d.ts +74 -0
- package/dist/lib/config-sync/index.d.ts.map +1 -0
- package/dist/lib/config-sync/index.js +309 -0
- package/dist/lib/config-sync/types.d.ts +78 -0
- package/dist/lib/config-sync/types.d.ts.map +1 -0
- package/dist/lib/config-sync/types.js +5 -0
- package/dist/lib/config-sync/writer.d.ts +43 -0
- package/dist/lib/config-sync/writer.d.ts.map +1 -0
- package/dist/lib/config-sync/writer.js +159 -0
- package/dist/lib/content-sync/index.d.ts +103 -0
- package/dist/lib/content-sync/index.d.ts.map +1 -0
- package/dist/lib/content-sync/index.js +723 -0
- package/dist/lib/content-sync/types.d.ts +100 -0
- package/dist/lib/content-sync/types.d.ts.map +1 -0
- package/dist/lib/content-sync/types.js +5 -0
- package/dist/lib/contracts.d.ts +82 -0
- package/dist/lib/contracts.d.ts.map +1 -0
- package/dist/lib/contracts.js +119 -0
- package/dist/lib/convex.d.ts +16 -0
- package/dist/lib/convex.d.ts.map +1 -0
- package/dist/lib/convex.js +43 -0
- package/dist/lib/device.d.ts +10 -0
- package/dist/lib/device.d.ts.map +1 -0
- package/dist/lib/device.js +38 -0
- package/dist/lib/digest/index.d.ts +71 -0
- package/dist/lib/digest/index.d.ts.map +1 -0
- package/dist/lib/digest/index.js +428 -0
- package/dist/lib/docs/lint.d.ts +33 -0
- package/dist/lib/docs/lint.d.ts.map +1 -0
- package/dist/lib/docs/lint.js +249 -0
- package/dist/lib/docs/lint.test.d.ts +1 -0
- package/dist/lib/docs/lint.test.js +120 -0
- package/dist/lib/docs/sync.d.ts +22 -0
- package/dist/lib/docs/sync.d.ts.map +1 -0
- package/dist/lib/docs/sync.js +153 -0
- package/dist/lib/doctor/index.d.ts +70 -0
- package/dist/lib/doctor/index.d.ts.map +1 -0
- package/dist/lib/doctor/index.js +547 -0
- package/dist/lib/doctor/repos.d.ts +49 -0
- package/dist/lib/doctor/repos.d.ts.map +1 -0
- package/dist/lib/doctor/repos.js +322 -0
- package/dist/lib/doctor/templates.d.ts +20 -0
- package/dist/lib/doctor/templates.d.ts.map +1 -0
- package/dist/lib/doctor/templates.js +180 -0
- package/dist/lib/errors.d.ts +46 -0
- package/dist/lib/errors.d.ts.map +1 -0
- package/dist/lib/errors.js +99 -0
- package/dist/lib/events.d.ts +206 -0
- package/dist/lib/events.d.ts.map +1 -0
- package/dist/lib/events.js +227 -0
- package/dist/lib/heartbeat.d.ts +106 -0
- package/dist/lib/heartbeat.d.ts.map +1 -0
- package/dist/lib/heartbeat.js +230 -0
- package/dist/lib/heartbeat.test.d.ts +1 -0
- package/dist/lib/heartbeat.test.js +124 -0
- package/dist/lib/hooks/adapters/claude.d.ts +28 -0
- package/dist/lib/hooks/adapters/claude.d.ts.map +1 -0
- package/dist/lib/hooks/adapters/claude.js +85 -0
- package/dist/lib/hooks/adapters/codex.d.ts +20 -0
- package/dist/lib/hooks/adapters/codex.d.ts.map +1 -0
- package/dist/lib/hooks/adapters/codex.js +77 -0
- package/dist/lib/hooks/adapters/copilot.d.ts +29 -0
- package/dist/lib/hooks/adapters/copilot.d.ts.map +1 -0
- package/dist/lib/hooks/adapters/copilot.js +110 -0
- package/dist/lib/hooks/context.d.ts +45 -0
- package/dist/lib/hooks/context.d.ts.map +1 -0
- package/dist/lib/hooks/context.js +155 -0
- package/dist/lib/hooks/index.d.ts +12 -0
- package/dist/lib/hooks/index.d.ts.map +1 -0
- package/dist/lib/hooks/index.js +15 -0
- package/dist/lib/hooks/registry.d.ts +30 -0
- package/dist/lib/hooks/registry.d.ts.map +1 -0
- package/dist/lib/hooks/registry.js +80 -0
- package/dist/lib/hooks/runner.d.ts +18 -0
- package/dist/lib/hooks/runner.d.ts.map +1 -0
- package/dist/lib/hooks/runner.js +188 -0
- package/dist/lib/hooks/types.d.ts +76 -0
- package/dist/lib/hooks/types.d.ts.map +1 -0
- package/dist/lib/hooks/types.js +2 -0
- package/dist/lib/index.test.d.ts +1 -0
- package/dist/lib/index.test.js +334 -0
- package/dist/lib/managed-session.d.ts +27 -0
- package/dist/lib/managed-session.d.ts.map +1 -0
- package/dist/lib/managed-session.js +105 -0
- package/dist/lib/math.d.ts +21 -0
- package/dist/lib/math.d.ts.map +1 -0
- package/dist/lib/math.js +109 -0
- package/dist/lib/math.test.d.ts +1 -0
- package/dist/lib/math.test.js +238 -0
- package/dist/lib/ngrok.d.ts +157 -0
- package/dist/lib/ngrok.d.ts.map +1 -0
- package/dist/lib/ngrok.js +339 -0
- package/dist/lib/nvim/discovery.d.ts +44 -0
- package/dist/lib/nvim/discovery.d.ts.map +1 -0
- package/dist/lib/nvim/discovery.js +140 -0
- package/dist/lib/nvim/discovery.test.d.ts +1 -0
- package/dist/lib/nvim/discovery.test.js +131 -0
- package/dist/lib/nvim/index.d.ts +7 -0
- package/dist/lib/nvim/index.d.ts.map +1 -0
- package/dist/lib/nvim/index.js +8 -0
- package/dist/lib/nvim/remote.d.ts +81 -0
- package/dist/lib/nvim/remote.d.ts.map +1 -0
- package/dist/lib/nvim/remote.js +136 -0
- package/dist/lib/nvim/remote.test.d.ts +1 -0
- package/dist/lib/nvim/remote.test.js +18 -0
- package/dist/lib/panes/broker.d.ts +130 -0
- package/dist/lib/panes/broker.d.ts.map +1 -0
- package/dist/lib/panes/broker.js +97 -0
- package/dist/lib/panes/index.d.ts +2 -0
- package/dist/lib/panes/index.d.ts.map +1 -0
- package/dist/lib/panes/index.js +1 -0
- package/dist/lib/panes/server.d.ts +17 -0
- package/dist/lib/panes/server.d.ts.map +1 -0
- package/dist/lib/panes/server.js +308 -0
- package/dist/lib/preview/detect.d.ts +21 -0
- package/dist/lib/preview/detect.d.ts.map +1 -0
- package/dist/lib/preview/detect.js +147 -0
- package/dist/lib/preview/index.d.ts +2 -0
- package/dist/lib/preview/index.d.ts.map +1 -0
- package/dist/lib/preview/index.js +1 -0
- package/dist/lib/preview/manager.d.ts +77 -0
- package/dist/lib/preview/manager.d.ts.map +1 -0
- package/dist/lib/preview/manager.js +369 -0
- package/dist/lib/preview/schema.d.ts +2 -0
- package/dist/lib/preview/schema.d.ts.map +1 -0
- package/dist/lib/preview/schema.js +32 -0
- package/dist/lib/preview/sprite.d.ts +85 -0
- package/dist/lib/preview/sprite.d.ts.map +1 -0
- package/dist/lib/preview/sprite.js +321 -0
- package/dist/lib/preview/watcher.d.ts +63 -0
- package/dist/lib/preview/watcher.d.ts.map +1 -0
- package/dist/lib/preview/watcher.js +185 -0
- package/dist/lib/process/index.d.ts +6 -0
- package/dist/lib/process/index.d.ts.map +1 -0
- package/dist/lib/process/index.js +5 -0
- package/dist/lib/process/snapshot.d.ts +48 -0
- package/dist/lib/process/snapshot.d.ts.map +1 -0
- package/dist/lib/process/snapshot.js +210 -0
- package/dist/lib/process/snapshot.test.d.ts +1 -0
- package/dist/lib/process/snapshot.test.js +127 -0
- package/dist/lib/project-identity.d.ts +16 -0
- package/dist/lib/project-identity.d.ts.map +1 -0
- package/dist/lib/project-identity.js +75 -0
- package/dist/lib/references.d.ts +146 -0
- package/dist/lib/references.d.ts.map +1 -0
- package/dist/lib/references.js +344 -0
- package/dist/lib/report.d.ts +129 -0
- package/dist/lib/report.d.ts.map +1 -0
- package/dist/lib/report.js +686 -0
- package/dist/lib/resources.d.ts +105 -0
- package/dist/lib/resources.d.ts.map +1 -0
- package/dist/lib/resources.js +321 -0
- package/dist/lib/resources.test.d.ts +1 -0
- package/dist/lib/resources.test.js +94 -0
- package/dist/lib/runner.d.ts +55 -0
- package/dist/lib/runner.d.ts.map +1 -0
- package/dist/lib/runner.js +1034 -0
- package/dist/lib/runner.test.d.ts +1 -0
- package/dist/lib/runner.test.js +234 -0
- package/dist/lib/session-artifacts.d.ts +46 -0
- package/dist/lib/session-artifacts.d.ts.map +1 -0
- package/dist/lib/session-artifacts.js +138 -0
- package/dist/lib/session-manager.d.ts +24 -0
- package/dist/lib/session-manager.d.ts.map +1 -0
- package/dist/lib/session-manager.js +119 -0
- package/dist/lib/session-manager.test.d.ts +1 -0
- package/dist/lib/session-manager.test.js +310 -0
- package/dist/lib/session-result.d.ts +40 -0
- package/dist/lib/session-result.d.ts.map +1 -0
- package/dist/lib/session-result.js +180 -0
- package/dist/lib/session-state.d.ts +77 -0
- package/dist/lib/session-state.d.ts.map +1 -0
- package/dist/lib/session-state.js +350 -0
- package/dist/lib/slack-workspace.d.ts +8 -0
- package/dist/lib/slack-workspace.d.ts.map +1 -0
- package/dist/lib/slack-workspace.js +20 -0
- package/dist/lib/tmux/bridge.d.ts +133 -0
- package/dist/lib/tmux/bridge.d.ts.map +1 -0
- package/dist/lib/tmux/bridge.js +315 -0
- package/dist/lib/tmux/context.d.ts +82 -0
- package/dist/lib/tmux/context.d.ts.map +1 -0
- package/dist/lib/tmux/context.js +239 -0
- package/dist/lib/tmux/context.test.d.ts +1 -0
- package/dist/lib/tmux/context.test.js +215 -0
- package/dist/lib/tmux/index.d.ts +8 -0
- package/dist/lib/tmux/index.d.ts.map +1 -0
- package/dist/lib/tmux/index.js +11 -0
- package/dist/lib/tmux/map.d.ts +57 -0
- package/dist/lib/tmux/map.d.ts.map +1 -0
- package/dist/lib/tmux/map.js +198 -0
- package/dist/lib/tmux/map.test.d.ts +1 -0
- package/dist/lib/tmux/map.test.js +80 -0
- package/dist/lib/tmux/panes.d.ts +27 -0
- package/dist/lib/tmux/panes.d.ts.map +1 -0
- package/dist/lib/tmux/panes.js +151 -0
- package/dist/lib/tmux/redaction.d.ts +57 -0
- package/dist/lib/tmux/redaction.d.ts.map +1 -0
- package/dist/lib/tmux/redaction.js +152 -0
- package/dist/lib/tmux/redaction.test.d.ts +1 -0
- package/dist/lib/tmux/redaction.test.js +183 -0
- package/dist/lib/triage-llm.d.ts +23 -0
- package/dist/lib/triage-llm.d.ts.map +1 -0
- package/dist/lib/triage-llm.js +269 -0
- package/dist/lib/triage-tracker.d.ts +72 -0
- package/dist/lib/triage-tracker.d.ts.map +1 -0
- package/dist/lib/triage-tracker.js +301 -0
- package/dist/lib/triage.d.ts +176 -0
- package/dist/lib/triage.d.ts.map +1 -0
- package/dist/lib/triage.js +487 -0
- package/dist/lib/types.d.ts +56 -0
- package/dist/lib/types.d.ts.map +1 -0
- package/dist/lib/types.js +51 -0
- package/dist/lib/web/analytics.d.ts +63 -0
- package/dist/lib/web/analytics.js +168 -0
- package/dist/lib/web/server.d.ts +26 -0
- package/dist/lib/web/server.js +697 -0
- package/dist/lib/web/tmux-bridge.d.ts +7 -0
- package/dist/lib/web/tmux-bridge.js +7 -0
- package/dist/lib/windows/index.d.ts +3 -0
- package/dist/lib/windows/index.d.ts.map +1 -0
- package/dist/lib/windows/index.js +2 -0
- package/dist/lib/windows/inventory.d.ts +21 -0
- package/dist/lib/windows/inventory.d.ts.map +1 -0
- package/dist/lib/windows/inventory.js +263 -0
- package/dist/lib/windows/inventory.test.d.ts +1 -0
- package/dist/lib/windows/inventory.test.js +292 -0
- package/dist/lib/windows/types.d.ts +46 -0
- package/dist/lib/windows/types.d.ts.map +1 -0
- package/dist/lib/windows/types.js +1 -0
- package/dist/lib.d.ts +91 -0
- package/dist/lib.d.ts.map +1 -0
- package/dist/lib.js +106 -0
- package/dist/web/app/@overlay/default.d.ts +1 -0
- package/dist/web/app/@overlay/default.js +3 -0
- package/dist/web/app/about/page.d.ts +1 -0
- package/dist/web/app/about/page.js +6 -0
- package/dist/web/app/layout.d.ts +7 -0
- package/dist/web/app/layout.js +19 -0
- package/dist/web/app/page.d.ts +1 -0
- package/dist/web/app/page.js +38 -0
- package/dist/web/app/settings/page.d.ts +1 -0
- package/dist/web/app/settings/page.js +6 -0
- package/dist/web/app/shortcuts/page.d.ts +1 -0
- package/dist/web/app/shortcuts/page.js +6 -0
- package/dist/web/atoms/sidebar.d.ts +16 -0
- package/dist/web/atoms/sidebar.js +58 -0
- package/dist/web/atoms/state.d.ts +24 -0
- package/dist/web/atoms/state.js +43 -0
- package/dist/web/components/command-palette.d.ts +6 -0
- package/dist/web/components/command-palette.js +297 -0
- package/dist/web/components/main-view.d.ts +1 -0
- package/dist/web/components/main-view.js +93 -0
- package/dist/web/components/overlay/page-overlay.d.ts +16 -0
- package/dist/web/components/overlay/page-overlay.js +84 -0
- package/dist/web/components/pane-view.d.ts +5 -0
- package/dist/web/components/pane-view.js +168 -0
- package/dist/web/components/project-files-view.d.ts +6 -0
- package/dist/web/components/project-files-view.js +205 -0
- package/dist/web/components/project-planning-view.d.ts +6 -0
- package/dist/web/components/project-planning-view.js +146 -0
- package/dist/web/components/session-view.d.ts +6 -0
- package/dist/web/components/session-view.js +211 -0
- package/dist/web/components/sessions-list-view.d.ts +1 -0
- package/dist/web/components/sessions-list-view.js +118 -0
- package/dist/web/components/sidebar/index.d.ts +9 -0
- package/dist/web/components/sidebar/index.js +29 -0
- package/dist/web/components/sidebar/kbd.d.ts +17 -0
- package/dist/web/components/sidebar/kbd.js +47 -0
- package/dist/web/components/sidebar/nav-group.d.ts +22 -0
- package/dist/web/components/sidebar/nav-group.js +43 -0
- package/dist/web/components/sidebar/nav-item.d.ts +17 -0
- package/dist/web/components/sidebar/nav-item.js +38 -0
- package/dist/web/components/sidebar/sidebar-header.d.ts +9 -0
- package/dist/web/components/sidebar/sidebar-header.js +18 -0
- package/dist/web/components/sidebar/sidebar-nav.d.ts +7 -0
- package/dist/web/components/sidebar/sidebar-nav.js +505 -0
- package/dist/web/components/sidebar/sidebar-search.d.ts +7 -0
- package/dist/web/components/sidebar/sidebar-search.js +18 -0
- package/dist/web/components/sidebar/sidebar-settings.d.ts +4 -0
- package/dist/web/components/sidebar/sidebar-settings.js +28 -0
- package/dist/web/components/sidebar/sidebar-transition.d.ts +12 -0
- package/dist/web/components/sidebar/sidebar-transition.js +58 -0
- package/dist/web/components/status-bar.d.ts +1 -0
- package/dist/web/components/status-bar.js +53 -0
- package/dist/web/components/terminal.d.ts +4 -0
- package/dist/web/components/terminal.js +324 -0
- package/dist/web/components/toast.d.ts +7 -0
- package/dist/web/components/toast.js +72 -0
- package/dist/web/hooks/use-keybindings.d.ts +30 -0
- package/dist/web/hooks/use-keybindings.js +322 -0
- package/dist/web/hooks/use-state.d.ts +11 -0
- package/dist/web/hooks/use-state.js +84 -0
- package/dist/web/lib/api.d.ts +179 -0
- package/dist/web/lib/api.js +79 -0
- package/dist/web/lib/paths.d.ts +2 -0
- package/dist/web/lib/paths.js +26 -0
- package/dist/web/lib/utils.d.ts +2 -0
- package/dist/web/lib/utils.js +5 -0
- package/dist/web/lib/ws.d.ts +18 -0
- package/dist/web/lib/ws.js +138 -0
- package/dist/web/next.config.d.ts +3 -0
- package/dist/web/next.config.js +9 -0
- package/extensions/abbie/index.ts +646 -0
- package/extensions/abbie/package.json +9 -0
- package/oclif.manifest.json +11676 -0
- package/package.json +101 -0
- package/scripts/generate-manifest.ts +44 -0
- package/src/cli/base-command.ts +233 -0
- package/src/cli/commands/__tests__/annotations.test.ts +704 -0
- package/src/cli/commands/__tests__/bridge.test.ts +101 -0
- package/src/cli/commands/__tests__/daemon.test.ts +79 -0
- package/src/cli/commands/agent/list.ts +75 -0
- package/src/cli/commands/annotation/ack.ts +37 -0
- package/src/cli/commands/annotation/create.ts +67 -0
- package/src/cli/commands/annotation/events.ts +63 -0
- package/src/cli/commands/annotation/export.ts +67 -0
- package/src/cli/commands/annotation/import.ts +98 -0
- package/src/cli/commands/annotation/ingest.ts +112 -0
- package/src/cli/commands/annotation/list.ts +57 -0
- package/src/cli/commands/annotation/reply.ts +46 -0
- package/src/cli/commands/annotation/resolve.ts +37 -0
- package/src/cli/commands/auto/index.ts +755 -0
- package/src/cli/commands/backlog/add.ts +74 -0
- package/src/cli/commands/backlog/claim.ts +53 -0
- package/src/cli/commands/backlog/complete.ts +51 -0
- package/src/cli/commands/backlog/list.ts +107 -0
- package/src/cli/commands/backlog/pick.ts +50 -0
- package/src/cli/commands/backlog/sync.ts +131 -0
- package/src/cli/commands/bootstrap.ts +205 -0
- package/src/cli/commands/bridge.ts +233 -0
- package/src/cli/commands/context/inject.ts +103 -0
- package/src/cli/commands/context/list.ts +112 -0
- package/src/cli/commands/context/publish.ts +83 -0
- package/src/cli/commands/context/read.ts +85 -0
- package/src/cli/commands/daemon.ts +1809 -0
- package/src/cli/commands/digest/index.ts +245 -0
- package/src/cli/commands/docs/lint.ts +93 -0
- package/src/cli/commands/docs/sync.ts +90 -0
- package/src/cli/commands/doctor.ts +267 -0
- package/src/cli/commands/find/index.ts +313 -0
- package/src/cli/commands/history/index.ts +257 -0
- package/src/cli/commands/hooks/guard.ts +71 -0
- package/src/cli/commands/hooks/list.ts +139 -0
- package/src/cli/commands/hooks/lock.ts +47 -0
- package/src/cli/commands/hooks/status.ts +56 -0
- package/src/cli/commands/hooks/test.ts +190 -0
- package/src/cli/commands/hooks/unlock.ts +56 -0
- package/src/cli/commands/list.e2e.test.ts +58 -0
- package/src/cli/commands/list.ts +96 -0
- package/src/cli/commands/login.ts +236 -0
- package/src/cli/commands/logout.ts +45 -0
- package/src/cli/commands/panes/broker.ts +68 -0
- package/src/cli/commands/panes/pipe-sink.ts +101 -0
- package/src/cli/commands/panes/snapshot.ts +156 -0
- package/src/cli/commands/plan.e2e.test.ts +90 -0
- package/src/cli/commands/plan.ts +68 -0
- package/src/cli/commands/preview/index.ts +282 -0
- package/src/cli/commands/preview/list.ts +116 -0
- package/src/cli/commands/preview/status.ts +137 -0
- package/src/cli/commands/preview/stop.ts +165 -0
- package/src/cli/commands/project/add.ts +110 -0
- package/src/cli/commands/project/list.ts +136 -0
- package/src/cli/commands/project/remove.ts +60 -0
- package/src/cli/commands/push.ts +115 -0
- package/src/cli/commands/reference/add.ts +266 -0
- package/src/cli/commands/reference/delete.ts +67 -0
- package/src/cli/commands/reference/extract.ts +389 -0
- package/src/cli/commands/reference/list.ts +117 -0
- package/src/cli/commands/reference/normalize.ts +90 -0
- package/src/cli/commands/reference/open.ts +92 -0
- package/src/cli/commands/reference/save.ts +103 -0
- package/src/cli/commands/reference/search.ts +85 -0
- package/src/cli/commands/reference/show.ts +174 -0
- package/src/cli/commands/reference/update-index.ts +103 -0
- package/src/cli/commands/reference/update.ts +136 -0
- package/src/cli/commands/report/blocked.ts +165 -0
- package/src/cli/commands/report/complete.ts +179 -0
- package/src/cli/commands/report/progress.ts +142 -0
- package/src/cli/commands/report/start.ts +140 -0
- package/src/cli/commands/resource/acquire.ts +116 -0
- package/src/cli/commands/resource/list.ts +77 -0
- package/src/cli/commands/resource/release.ts +64 -0
- package/src/cli/commands/resource/wait.ts +93 -0
- package/src/cli/commands/review.ts +105 -0
- package/src/cli/commands/session/attach.ts +200 -0
- package/src/cli/commands/session/await.ts +83 -0
- package/src/cli/commands/session/complete.ts +100 -0
- package/src/cli/commands/session/create.ts +92 -0
- package/src/cli/commands/session/heartbeat.ts +63 -0
- package/src/cli/commands/session/list.ts +281 -0
- package/src/cli/commands/session/mark-done.ts +132 -0
- package/src/cli/commands/session/mine.ts +189 -0
- package/src/cli/commands/session/replay.ts +659 -0
- package/src/cli/commands/session/run.ts +44 -0
- package/src/cli/commands/session/show.ts +177 -0
- package/src/cli/commands/session/start.ts +580 -0
- package/src/cli/commands/session/state/cleanup.ts +61 -0
- package/src/cli/commands/session/state/end.ts +47 -0
- package/src/cli/commands/session/state/get.ts +65 -0
- package/src/cli/commands/session/state/init.ts +50 -0
- package/src/cli/commands/session/state/list.ts +68 -0
- package/src/cli/commands/session/state/update.ts +108 -0
- package/src/cli/commands/session/stop.ts +134 -0
- package/src/cli/commands/session/view.ts +186 -0
- package/src/cli/commands/start.ts +250 -0
- package/src/cli/commands/state/dump.ts +449 -0
- package/src/cli/commands/status.ts +244 -0
- package/src/cli/commands/sync.ts +174 -0
- package/src/cli/commands/trace/export.ts +255 -0
- package/src/cli/commands/triage/claim.ts +203 -0
- package/src/cli/commands/triage/list.ts +137 -0
- package/src/cli/commands/triage/next.ts +73 -0
- package/src/cli/commands/triage/pull.ts +97 -0
- package/src/cli/commands/triage/stats.ts +82 -0
- package/src/cli/commands/tunnel/list.ts +113 -0
- package/src/cli/commands/tunnel/start.ts +122 -0
- package/src/cli/commands/tunnel/stop.ts +108 -0
- package/src/cli/commands/tunnel/url.ts +82 -0
- package/src/cli/commands/web/start.ts +125 -0
- package/src/cli/commands/windows/context.ts +439 -0
- package/src/cli/commands/windows/focus.ts +130 -0
- package/src/cli/commands/windows/list.ts +213 -0
- package/src/cli/commands/windows/map.ts +223 -0
- package/src/cli/commands/windows/read.ts +279 -0
- package/src/cli/commands/windows/search.ts +219 -0
- package/src/cli/commands/windows/show.ts +188 -0
- package/src/cli/commands/windows/watch.ts +262 -0
- package/src/lib/__tests__/annotations-convex.test.ts +104 -0
- package/src/lib/active-sessions.ts +1486 -0
- package/src/lib/agent-adapters.ts +412 -0
- package/src/lib/agent-sessions.ts +671 -0
- package/src/lib/agent-trace.test.ts +296 -0
- package/src/lib/agent-trace.ts +513 -0
- package/src/lib/analytics.ts +178 -0
- package/src/lib/annotations-convex.ts +296 -0
- package/src/lib/annotations.test.ts +274 -0
- package/src/lib/annotations.ts +836 -0
- package/src/lib/auto/discover.ts +545 -0
- package/src/lib/auto/ideate.ts +412 -0
- package/src/lib/auto/spawn.ts +549 -0
- package/src/lib/auto/workspace.ts +282 -0
- package/src/lib/backlog.test.ts +194 -0
- package/src/lib/backlog.ts +428 -0
- package/src/lib/config-loader.ts +391 -0
- package/src/lib/config-sync/adapters/claude.ts +91 -0
- package/src/lib/config-sync/adapters/codex.ts +135 -0
- package/src/lib/config-sync/adapters/copilot.ts +98 -0
- package/src/lib/config-sync/adapters/gemini.ts +86 -0
- package/src/lib/config-sync/adapters/index.ts +39 -0
- package/src/lib/config-sync/adapters/opencode.ts +94 -0
- package/src/lib/config-sync/index.ts +399 -0
- package/src/lib/config-sync/types.ts +92 -0
- package/src/lib/config-sync/writer.ts +188 -0
- package/src/lib/content-sync/index.ts +882 -0
- package/src/lib/content-sync/types.ts +104 -0
- package/src/lib/contracts.test.ts +186 -0
- package/src/lib/contracts.ts +195 -0
- package/src/lib/convex.ts +54 -0
- package/src/lib/device.ts +41 -0
- package/src/lib/digest/index.ts +529 -0
- package/src/lib/docs/lint.test.ts +135 -0
- package/src/lib/docs/lint.ts +310 -0
- package/src/lib/docs/sync.ts +184 -0
- package/src/lib/doctor/index.ts +647 -0
- package/src/lib/doctor/repos.ts +381 -0
- package/src/lib/doctor/templates.ts +191 -0
- package/src/lib/errors.ts +111 -0
- package/src/lib/events.ts +479 -0
- package/src/lib/heartbeat.test.ts +164 -0
- package/src/lib/heartbeat.ts +326 -0
- package/src/lib/hooks/adapters/claude.ts +115 -0
- package/src/lib/hooks/adapters/codex.ts +92 -0
- package/src/lib/hooks/adapters/copilot.ts +141 -0
- package/src/lib/hooks/context.ts +174 -0
- package/src/lib/hooks/index.ts +39 -0
- package/src/lib/hooks/registry.ts +101 -0
- package/src/lib/hooks/runner.ts +208 -0
- package/src/lib/hooks/types.ts +89 -0
- package/src/lib/index.test.ts +426 -0
- package/src/lib/managed-session.ts +117 -0
- package/src/lib/math.test.ts +299 -0
- package/src/lib/math.ts +120 -0
- package/src/lib/ngrok.ts +441 -0
- package/src/lib/nvim/discovery.test.ts +157 -0
- package/src/lib/nvim/discovery.ts +181 -0
- package/src/lib/nvim/index.ts +28 -0
- package/src/lib/nvim/remote.test.ts +21 -0
- package/src/lib/nvim/remote.ts +184 -0
- package/src/lib/panes/README.md +20 -0
- package/src/lib/panes/broker.ts +261 -0
- package/src/lib/panes/index.ts +1 -0
- package/src/lib/panes/server.ts +379 -0
- package/src/lib/preview/detect.ts +184 -0
- package/src/lib/preview/index.ts +1 -0
- package/src/lib/process/index.ts +16 -0
- package/src/lib/process/snapshot.test.ts +188 -0
- package/src/lib/process/snapshot.ts +257 -0
- package/src/lib/references.ts +481 -0
- package/src/lib/report.ts +973 -0
- package/src/lib/resources.test.ts +132 -0
- package/src/lib/resources.ts +429 -0
- package/src/lib/runner.test.ts +288 -0
- package/src/lib/runner.ts +1223 -0
- package/src/lib/session-artifacts.test.ts +107 -0
- package/src/lib/session-artifacts.ts +193 -0
- package/src/lib/session-manager.test.ts +402 -0
- package/src/lib/session-manager.ts +150 -0
- package/src/lib/session-result.test.ts +98 -0
- package/src/lib/session-result.ts +262 -0
- package/src/lib/session-state.ts +470 -0
- package/src/lib/slack-workspace.ts +25 -0
- package/src/lib/tmux/bridge.ts +439 -0
- package/src/lib/tmux/context.test.ts +242 -0
- package/src/lib/tmux/context.ts +380 -0
- package/src/lib/tmux/index.ts +46 -0
- package/src/lib/tmux/map.test.ts +99 -0
- package/src/lib/tmux/map.ts +252 -0
- package/src/lib/tmux/panes.ts +170 -0
- package/src/lib/tmux/redaction.test.ts +231 -0
- package/src/lib/tmux/redaction.ts +201 -0
- package/src/lib/triage-llm.ts +312 -0
- package/src/lib/triage-tracker.ts +400 -0
- package/src/lib/triage.ts +655 -0
- package/src/lib/types.ts +61 -0
- package/src/lib/windows/index.ts +2 -0
- package/src/lib/windows/inventory.test.ts +370 -0
- package/src/lib/windows/inventory.ts +352 -0
- package/src/lib/windows/types.ts +46 -0
- package/src/lib.ts +260 -0
|
@@ -0,0 +1,973 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Report module - unified lifecycle reporting for agents
|
|
3
|
+
*
|
|
4
|
+
* Combines Convex reports persistence, Slack visibility, and iMessage escalation
|
|
5
|
+
* into a single command surface.
|
|
6
|
+
*
|
|
7
|
+
* Design decisions (from opus consultation):
|
|
8
|
+
* - 4 subcommands: start, progress, complete, blocked
|
|
9
|
+
* - Tiered error handling: convex=fail, slack=warn+continue, messages=warn+continue
|
|
10
|
+
* - Agent identity auto-detection from session env vars
|
|
11
|
+
* - Trace ID inheritance from AGENTS_TRACE_ID or auto-generate
|
|
12
|
+
* - DM policy: default ON for blocked, opt-in for others
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { spawnSync } from "node:child_process";
|
|
16
|
+
import { randomUUID } from "node:crypto";
|
|
17
|
+
import { api, getHttpClient } from "@abbie/sdk/convex";
|
|
18
|
+
import { getDeviceId } from "./device.js";
|
|
19
|
+
import { getDefaultSlackWorkspace } from "./slack-workspace.js";
|
|
20
|
+
|
|
21
|
+
// ============================================================================
|
|
22
|
+
// Types
|
|
23
|
+
// ============================================================================
|
|
24
|
+
|
|
25
|
+
export type ReportAction = "started" | "progress" | "completed" | "blocked";
|
|
26
|
+
|
|
27
|
+
export type AgentIdentity = "claude" | "codex" | "gemini" | "copilot" | "custom";
|
|
28
|
+
|
|
29
|
+
export type BlockerType = "hil" | "error" | "dependency" | "resource";
|
|
30
|
+
|
|
31
|
+
export interface ReportOptions {
|
|
32
|
+
/** Agent identity (auto-detected if not provided) */
|
|
33
|
+
agent?: AgentIdentity;
|
|
34
|
+
/** Trace ID for correlation (inherits from AGENTS_TRACE_ID or auto-generates) */
|
|
35
|
+
traceId?: string;
|
|
36
|
+
/** Slack workspace (default: ABBIE_SLACK_WORKSPACE or cic) */
|
|
37
|
+
workspace?: string;
|
|
38
|
+
/** Slack channel (default: agents) */
|
|
39
|
+
channel?: string;
|
|
40
|
+
/** Confidence score 1-10 */
|
|
41
|
+
confidence?: number;
|
|
42
|
+
/** Send DM to luke (default: true for blocked, false for others) */
|
|
43
|
+
dm?: boolean;
|
|
44
|
+
/** Explicitly disable DM */
|
|
45
|
+
noDm?: boolean;
|
|
46
|
+
/** Dry run - log what would happen without executing */
|
|
47
|
+
dryRun?: boolean;
|
|
48
|
+
/** Artifacts to attach (for complete) */
|
|
49
|
+
artifacts?: string[];
|
|
50
|
+
/** Blocker type (for blocked) */
|
|
51
|
+
blockerType?: BlockerType;
|
|
52
|
+
/** Create GitHub gist from event (for orchestration handoffs) */
|
|
53
|
+
gist?: boolean;
|
|
54
|
+
/** Gist description (defaults to task/message) */
|
|
55
|
+
gistDescription?: string;
|
|
56
|
+
/** Make gist public (default: secret) */
|
|
57
|
+
gistPublic?: boolean;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export interface ReportResult {
|
|
61
|
+
success: boolean;
|
|
62
|
+
traceId: string;
|
|
63
|
+
agent: AgentIdentity;
|
|
64
|
+
action: ReportAction;
|
|
65
|
+
/** Convex reports mutation result */
|
|
66
|
+
convex: {
|
|
67
|
+
success: boolean;
|
|
68
|
+
error?: string;
|
|
69
|
+
};
|
|
70
|
+
/** slack post result */
|
|
71
|
+
slack: {
|
|
72
|
+
success: boolean;
|
|
73
|
+
error?: string;
|
|
74
|
+
};
|
|
75
|
+
/** messages send result (only if DM was attempted) */
|
|
76
|
+
messages?: {
|
|
77
|
+
success: boolean;
|
|
78
|
+
error?: string;
|
|
79
|
+
};
|
|
80
|
+
/** Optional remote report result (only if configured via env) */
|
|
81
|
+
remote?: {
|
|
82
|
+
success: boolean;
|
|
83
|
+
error?: string;
|
|
84
|
+
};
|
|
85
|
+
/** GitHub gist URL (only if --gist was used) */
|
|
86
|
+
gistUrl?: string;
|
|
87
|
+
/** Duration in milliseconds (if available) */
|
|
88
|
+
durationMs?: number;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// ============================================================================
|
|
92
|
+
// Agent Identity Detection
|
|
93
|
+
// ============================================================================
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Detect agent identity from session environment variables
|
|
97
|
+
*/
|
|
98
|
+
export function detectAgent(): AgentIdentity {
|
|
99
|
+
// Check session-specific env vars
|
|
100
|
+
if (process.env.CLAUDE_SESSION_ID) return "claude";
|
|
101
|
+
if (process.env.CODEX_SESSION_ID) return "codex";
|
|
102
|
+
if (process.env.GEMINI_SESSION_ID) return "gemini";
|
|
103
|
+
if (process.env.COPILOT_SESSION_ID) return "copilot";
|
|
104
|
+
|
|
105
|
+
// Check runtime environment markers
|
|
106
|
+
// Claude Code sets CLAUDECODE=1 and CLAUDE_CODE_ENTRYPOINT
|
|
107
|
+
if (process.env.CLAUDECODE === "1" || process.env.CLAUDE_CODE_ENTRYPOINT) {
|
|
108
|
+
return "claude";
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// Check agent name env var (fallback)
|
|
112
|
+
const agentName = process.env.AGENT_NAME?.toLowerCase();
|
|
113
|
+
if (agentName) {
|
|
114
|
+
const known: AgentIdentity[] = ["claude", "codex", "gemini", "copilot"];
|
|
115
|
+
if (known.includes(agentName as AgentIdentity)) {
|
|
116
|
+
return agentName as AgentIdentity;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// Fallback to custom identity
|
|
121
|
+
return "custom";
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// ============================================================================
|
|
125
|
+
// Trace ID Management
|
|
126
|
+
// ============================================================================
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Generate a new trace ID
|
|
130
|
+
*/
|
|
131
|
+
export function generateTraceId(): string {
|
|
132
|
+
return `tr_${randomUUID().replace(/-/g, "").slice(0, 24)}`;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Get or create trace ID
|
|
137
|
+
* - Returns existing AGENTS_TRACE_ID if set
|
|
138
|
+
* - Generates new one if forceNew or not set
|
|
139
|
+
*/
|
|
140
|
+
export function getOrCreateTraceId(forceNew = false): string {
|
|
141
|
+
if (!forceNew && process.env.AGENTS_TRACE_ID) {
|
|
142
|
+
return process.env.AGENTS_TRACE_ID;
|
|
143
|
+
}
|
|
144
|
+
return generateTraceId();
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// ============================================================================
|
|
148
|
+
// Shell Command Execution
|
|
149
|
+
// ============================================================================
|
|
150
|
+
|
|
151
|
+
interface ExecResult {
|
|
152
|
+
success: boolean;
|
|
153
|
+
stdout?: string;
|
|
154
|
+
stderr?: string;
|
|
155
|
+
error?: string;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
function execCommand(command: string, args: string[]): ExecResult {
|
|
159
|
+
try {
|
|
160
|
+
const result = spawnSync(command, args, {
|
|
161
|
+
encoding: "utf-8",
|
|
162
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
163
|
+
timeout: 30000, // 30s timeout
|
|
164
|
+
});
|
|
165
|
+
|
|
166
|
+
if (result.status === 0) {
|
|
167
|
+
return {
|
|
168
|
+
success: true,
|
|
169
|
+
stdout: result.stdout,
|
|
170
|
+
stderr: result.stderr,
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
return {
|
|
175
|
+
success: false,
|
|
176
|
+
stdout: result.stdout,
|
|
177
|
+
stderr: result.stderr,
|
|
178
|
+
error: `Exit code ${result.status}: ${result.stderr || result.stdout}`,
|
|
179
|
+
};
|
|
180
|
+
} catch (err) {
|
|
181
|
+
return {
|
|
182
|
+
success: false,
|
|
183
|
+
error: err instanceof Error ? err.message : String(err),
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
// ============================================================================
|
|
189
|
+
// Convex Persistence
|
|
190
|
+
// ============================================================================
|
|
191
|
+
|
|
192
|
+
interface ReportEvent {
|
|
193
|
+
traceId: string;
|
|
194
|
+
agent: AgentIdentity;
|
|
195
|
+
action: ReportAction;
|
|
196
|
+
task: string;
|
|
197
|
+
sessionId?: string;
|
|
198
|
+
confidence?: number;
|
|
199
|
+
severity?: string;
|
|
200
|
+
summary?: string;
|
|
201
|
+
blockerType?: BlockerType;
|
|
202
|
+
artifacts?: string[];
|
|
203
|
+
deviceId: string;
|
|
204
|
+
timestamp: number;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
interface RecordReportOptions {
|
|
208
|
+
agent: AgentIdentity;
|
|
209
|
+
traceId: string;
|
|
210
|
+
action: ReportAction;
|
|
211
|
+
task: string;
|
|
212
|
+
confidence?: number;
|
|
213
|
+
blockerType?: BlockerType;
|
|
214
|
+
artifacts?: string[];
|
|
215
|
+
/** Create GitHub gist from event */
|
|
216
|
+
gist?: boolean;
|
|
217
|
+
/** Gist description */
|
|
218
|
+
gistDescription?: string;
|
|
219
|
+
/** Make gist public */
|
|
220
|
+
gistPublic?: boolean;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
function resolveSessionId(): string | undefined {
|
|
224
|
+
return (
|
|
225
|
+
process.env.AGENTS_SESSION_ID ||
|
|
226
|
+
process.env.AGENTS_REPORT_SESSION_ID ||
|
|
227
|
+
process.env.CLAUDE_SESSION_ID ||
|
|
228
|
+
process.env.CODEX_SESSION_ID ||
|
|
229
|
+
process.env.COPILOT_SESSION_ID ||
|
|
230
|
+
process.env.GEMINI_SESSION_ID
|
|
231
|
+
);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
async function recordToConvex(options: RecordReportOptions): Promise<ExecResult> {
|
|
235
|
+
try {
|
|
236
|
+
const client = getHttpClient();
|
|
237
|
+
const deviceId = getDeviceId();
|
|
238
|
+
const sessionId = resolveSessionId();
|
|
239
|
+
const severity = options.action === "blocked" ? "error" : undefined;
|
|
240
|
+
|
|
241
|
+
const stored = await client.mutation(api.reports.record, {
|
|
242
|
+
traceId: options.traceId,
|
|
243
|
+
agent: options.agent,
|
|
244
|
+
action: options.action,
|
|
245
|
+
task: options.task,
|
|
246
|
+
sessionId,
|
|
247
|
+
confidence: options.confidence,
|
|
248
|
+
severity,
|
|
249
|
+
summary: options.task,
|
|
250
|
+
blockerType: options.blockerType,
|
|
251
|
+
artifacts: options.artifacts,
|
|
252
|
+
deviceId,
|
|
253
|
+
});
|
|
254
|
+
|
|
255
|
+
const event: ReportEvent = {
|
|
256
|
+
traceId: options.traceId,
|
|
257
|
+
agent: options.agent,
|
|
258
|
+
action: options.action,
|
|
259
|
+
task: options.task,
|
|
260
|
+
sessionId,
|
|
261
|
+
confidence: options.confidence,
|
|
262
|
+
severity,
|
|
263
|
+
summary: options.task,
|
|
264
|
+
blockerType: options.blockerType,
|
|
265
|
+
artifacts: options.artifacts,
|
|
266
|
+
deviceId,
|
|
267
|
+
timestamp:
|
|
268
|
+
typeof stored === "object" && stored !== null && "timestamp" in stored
|
|
269
|
+
? Number(stored.timestamp)
|
|
270
|
+
: Date.now(),
|
|
271
|
+
};
|
|
272
|
+
|
|
273
|
+
const output: Record<string, unknown> = { ...event };
|
|
274
|
+
if (typeof stored === "object" && stored !== null && "id" in stored) {
|
|
275
|
+
output.id = stored.id;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
if (options.gist) {
|
|
279
|
+
const gistUrl = createReportGist(event, {
|
|
280
|
+
description: options.gistDescription,
|
|
281
|
+
isPublic: options.gistPublic,
|
|
282
|
+
});
|
|
283
|
+
if (gistUrl) {
|
|
284
|
+
output.gist_url = gistUrl;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
return {
|
|
289
|
+
success: true,
|
|
290
|
+
stdout: JSON.stringify(output),
|
|
291
|
+
stderr: "",
|
|
292
|
+
};
|
|
293
|
+
} catch (err) {
|
|
294
|
+
return {
|
|
295
|
+
success: false,
|
|
296
|
+
error: err instanceof Error ? err.message : String(err),
|
|
297
|
+
};
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
function createReportGist(
|
|
302
|
+
event: ReportEvent,
|
|
303
|
+
options: { description?: string; isPublic?: boolean },
|
|
304
|
+
): string | undefined {
|
|
305
|
+
const date = new Date().toISOString().split("T")[0];
|
|
306
|
+
const filename = `${event.agent}-${event.action}-${date}.json`;
|
|
307
|
+
const description =
|
|
308
|
+
options.description || event.task || event.summary || `${event.agent} ${event.action}`;
|
|
309
|
+
const args = ["gist", "create", "-f", filename, "-d", description];
|
|
310
|
+
if (options.isPublic) {
|
|
311
|
+
args.push("--public");
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
const result = spawnSync("gh", args, {
|
|
315
|
+
encoding: "utf-8",
|
|
316
|
+
input: `${JSON.stringify(event, null, 2)}\n`,
|
|
317
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
318
|
+
timeout: 30000,
|
|
319
|
+
});
|
|
320
|
+
|
|
321
|
+
if (result.status === 0) {
|
|
322
|
+
const url = result.stdout.trim();
|
|
323
|
+
if (url.length > 0) {
|
|
324
|
+
return url;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
const error = (result.stderr || result.stdout || "").trim();
|
|
329
|
+
if (error.length > 0) {
|
|
330
|
+
console.error(`[warn] gist creation failed: ${error}`);
|
|
331
|
+
}
|
|
332
|
+
return undefined;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
// ============================================================================
|
|
336
|
+
// Slack Integration
|
|
337
|
+
// ============================================================================
|
|
338
|
+
|
|
339
|
+
interface SlackPostOptions {
|
|
340
|
+
agent: AgentIdentity;
|
|
341
|
+
channel: string;
|
|
342
|
+
workspace: string;
|
|
343
|
+
text: string;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
function postToSlack(options: SlackPostOptions): ExecResult {
|
|
347
|
+
const args = [
|
|
348
|
+
"agent",
|
|
349
|
+
"post",
|
|
350
|
+
"--agent",
|
|
351
|
+
options.agent,
|
|
352
|
+
"--channel",
|
|
353
|
+
options.channel,
|
|
354
|
+
"--text",
|
|
355
|
+
options.text,
|
|
356
|
+
"-w",
|
|
357
|
+
options.workspace,
|
|
358
|
+
];
|
|
359
|
+
|
|
360
|
+
return execCommand("slack", args);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// ============================================================================
|
|
364
|
+
// Messages Integration
|
|
365
|
+
// ============================================================================
|
|
366
|
+
|
|
367
|
+
interface MessagesSendOptions {
|
|
368
|
+
to: string;
|
|
369
|
+
text: string;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
function sendMessage(options: MessagesSendOptions): ExecResult {
|
|
373
|
+
const args = ["send", options.to, options.text];
|
|
374
|
+
|
|
375
|
+
return execCommand("messages", args);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// ============================================================================
|
|
379
|
+
// Remote Reporting Integration
|
|
380
|
+
// ============================================================================
|
|
381
|
+
|
|
382
|
+
interface RemoteReportResult {
|
|
383
|
+
success: boolean;
|
|
384
|
+
error?: string;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* Optional remote reporting.
|
|
389
|
+
*
|
|
390
|
+
* Client-agnostic sink that can be configured via:
|
|
391
|
+
* - AGENTS_REPORT_URL: HTTP endpoint that receives JSON via POST
|
|
392
|
+
* - AGENTS_REPORT_CMD: shell command that receives JSON on stdin
|
|
393
|
+
*
|
|
394
|
+
* If both are set, AGENTS_REPORT_CMD takes precedence.
|
|
395
|
+
*
|
|
396
|
+
* Non-blocking: warns on failure, doesn't break flow.
|
|
397
|
+
*/
|
|
398
|
+
async function reportToRemote(
|
|
399
|
+
action: ReportAction,
|
|
400
|
+
message: string,
|
|
401
|
+
options: ReportOptions,
|
|
402
|
+
): Promise<RemoteReportResult> {
|
|
403
|
+
const reportUrl = process.env.AGENTS_REPORT_URL;
|
|
404
|
+
const reportCmd = process.env.AGENTS_REPORT_CMD;
|
|
405
|
+
|
|
406
|
+
if (!reportUrl && !reportCmd) {
|
|
407
|
+
return { success: true };
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
const agent = options.agent ?? detectAgent();
|
|
411
|
+
const now = Date.now();
|
|
412
|
+
|
|
413
|
+
const traceId = options.traceId ?? "";
|
|
414
|
+
const sessionId = process.env.AGENTS_REPORT_SESSION_ID || traceId || `tr_${now}`;
|
|
415
|
+
|
|
416
|
+
const payload = {
|
|
417
|
+
version: 1,
|
|
418
|
+
sessionId,
|
|
419
|
+
traceId,
|
|
420
|
+
action,
|
|
421
|
+
agent,
|
|
422
|
+
message,
|
|
423
|
+
confidence: options.confidence,
|
|
424
|
+
timestamp: now,
|
|
425
|
+
};
|
|
426
|
+
|
|
427
|
+
if (reportCmd) {
|
|
428
|
+
const result = spawnSync("bash", ["-lc", reportCmd], {
|
|
429
|
+
encoding: "utf-8",
|
|
430
|
+
input: JSON.stringify(payload),
|
|
431
|
+
timeout: 1500,
|
|
432
|
+
stdio: ["pipe", "pipe", "pipe"],
|
|
433
|
+
});
|
|
434
|
+
|
|
435
|
+
if (result.status === 0) {
|
|
436
|
+
return { success: true };
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
const stderr = (result.stderr || result.stdout || "").trim();
|
|
440
|
+
return {
|
|
441
|
+
success: false,
|
|
442
|
+
error: stderr
|
|
443
|
+
? `AGENTS_REPORT_CMD failed: ${stderr}`
|
|
444
|
+
: `AGENTS_REPORT_CMD failed (exit ${result.status})`,
|
|
445
|
+
};
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
// HTTP sink (reportUrl must be defined here since we passed the early return)
|
|
449
|
+
if (!reportUrl) {
|
|
450
|
+
return { success: true };
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
try {
|
|
454
|
+
const controller = new AbortController();
|
|
455
|
+
const timeoutId = setTimeout(() => controller.abort(), 1500);
|
|
456
|
+
|
|
457
|
+
const response = await fetch(reportUrl, {
|
|
458
|
+
method: "POST",
|
|
459
|
+
headers: { "Content-Type": "application/json" },
|
|
460
|
+
body: JSON.stringify(payload),
|
|
461
|
+
signal: controller.signal,
|
|
462
|
+
});
|
|
463
|
+
|
|
464
|
+
clearTimeout(timeoutId);
|
|
465
|
+
|
|
466
|
+
if (!response.ok) {
|
|
467
|
+
return { success: false, error: `AGENTS_REPORT_URL HTTP ${response.status}` };
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
return { success: true };
|
|
471
|
+
} catch (err) {
|
|
472
|
+
return {
|
|
473
|
+
success: false,
|
|
474
|
+
error: err instanceof Error ? err.message : String(err),
|
|
475
|
+
};
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
// ============================================================================
|
|
480
|
+
// Report Formatting
|
|
481
|
+
// ============================================================================
|
|
482
|
+
|
|
483
|
+
function formatReportMessage(
|
|
484
|
+
action: ReportAction,
|
|
485
|
+
message: string,
|
|
486
|
+
options: ReportOptions,
|
|
487
|
+
): string {
|
|
488
|
+
const emoji = {
|
|
489
|
+
started: "🚀",
|
|
490
|
+
progress: "📍",
|
|
491
|
+
completed: "✅",
|
|
492
|
+
blocked: "🔴",
|
|
493
|
+
}[action];
|
|
494
|
+
|
|
495
|
+
const actionText = {
|
|
496
|
+
started: "starting",
|
|
497
|
+
progress: "progress",
|
|
498
|
+
completed: "done",
|
|
499
|
+
blocked: "blocked",
|
|
500
|
+
}[action];
|
|
501
|
+
|
|
502
|
+
let text = `${emoji} ${actionText}: ${message}`;
|
|
503
|
+
|
|
504
|
+
if (options.confidence !== undefined) {
|
|
505
|
+
text += ` (confidence: ${options.confidence}/10)`;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
return text;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
// ============================================================================
|
|
512
|
+
// Core Report Functions
|
|
513
|
+
// ============================================================================
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* Report: start - begin a new trace
|
|
517
|
+
*
|
|
518
|
+
* - Always generates new trace ID
|
|
519
|
+
* - Persists to Convex reports
|
|
520
|
+
* - Posts to #agents
|
|
521
|
+
* - Optionally DMs (opt-in)
|
|
522
|
+
*/
|
|
523
|
+
export async function reportStart(
|
|
524
|
+
message: string,
|
|
525
|
+
options: ReportOptions = {},
|
|
526
|
+
): Promise<ReportResult> {
|
|
527
|
+
const agent = options.agent ?? detectAgent();
|
|
528
|
+
const traceId = generateTraceId(); // Always new for start
|
|
529
|
+
const workspace = options.workspace ?? getDefaultSlackWorkspace();
|
|
530
|
+
const channel = options.channel ?? "agents";
|
|
531
|
+
const shouldDm = options.dm === true && !options.noDm;
|
|
532
|
+
|
|
533
|
+
const result: ReportResult = {
|
|
534
|
+
success: true,
|
|
535
|
+
traceId,
|
|
536
|
+
agent,
|
|
537
|
+
action: "started",
|
|
538
|
+
convex: { success: true },
|
|
539
|
+
slack: { success: true },
|
|
540
|
+
};
|
|
541
|
+
|
|
542
|
+
const formattedMessage = formatReportMessage("started", message, options);
|
|
543
|
+
|
|
544
|
+
if (options.dryRun) {
|
|
545
|
+
console.error(
|
|
546
|
+
`[dry-run] convex reports.record --agent ${agent} --trace-id ${traceId} --action started --task "${message}"`,
|
|
547
|
+
);
|
|
548
|
+
console.error(
|
|
549
|
+
`[dry-run] slack agent post -a ${agent} -c ${channel} -w ${workspace} --text "${formattedMessage}"`,
|
|
550
|
+
);
|
|
551
|
+
if (shouldDm) {
|
|
552
|
+
console.error(`[dry-run] messages send luke "${formattedMessage}"`);
|
|
553
|
+
}
|
|
554
|
+
return result;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
// 1. Persist to Convex (critical - fail hard)
|
|
558
|
+
const convexResult = await recordToConvex({
|
|
559
|
+
agent,
|
|
560
|
+
traceId,
|
|
561
|
+
action: "started",
|
|
562
|
+
task: message,
|
|
563
|
+
confidence: options.confidence,
|
|
564
|
+
});
|
|
565
|
+
|
|
566
|
+
if (!convexResult.success) {
|
|
567
|
+
result.convex = { success: false, error: convexResult.error };
|
|
568
|
+
result.success = false;
|
|
569
|
+
return result; // Fail fast - persistence is critical
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
// 2. Post to slack (warn + continue)
|
|
573
|
+
const slackResult = postToSlack({
|
|
574
|
+
agent,
|
|
575
|
+
channel,
|
|
576
|
+
workspace,
|
|
577
|
+
text: formattedMessage,
|
|
578
|
+
});
|
|
579
|
+
|
|
580
|
+
if (!slackResult.success) {
|
|
581
|
+
result.slack = { success: false, error: slackResult.error };
|
|
582
|
+
console.error(`[warn] slack post failed: ${slackResult.error}`);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
// 3. DM if requested (warn + continue)
|
|
586
|
+
if (shouldDm) {
|
|
587
|
+
const msgResult = sendMessage({
|
|
588
|
+
to: "luke",
|
|
589
|
+
text: formattedMessage,
|
|
590
|
+
});
|
|
591
|
+
|
|
592
|
+
result.messages = {
|
|
593
|
+
success: msgResult.success,
|
|
594
|
+
error: msgResult.error,
|
|
595
|
+
};
|
|
596
|
+
|
|
597
|
+
if (!msgResult.success) {
|
|
598
|
+
console.error(`[warn] iMessage failed: ${msgResult.error}`);
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
// 4. Optional remote reporting (warn + continue)
|
|
603
|
+
const remoteResult = await reportToRemote("started", message, {
|
|
604
|
+
...options,
|
|
605
|
+
agent,
|
|
606
|
+
traceId,
|
|
607
|
+
});
|
|
608
|
+
|
|
609
|
+
if (remoteResult.success) {
|
|
610
|
+
result.remote = { success: true };
|
|
611
|
+
} else {
|
|
612
|
+
result.remote = { success: false, error: remoteResult.error };
|
|
613
|
+
console.error(`[warn] remote report failed: ${remoteResult.error}`);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
return result;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* Report: progress - update on ongoing trace
|
|
621
|
+
*
|
|
622
|
+
* - Inherits trace ID from env or requires explicit
|
|
623
|
+
* - Persists to Convex reports
|
|
624
|
+
* - Posts to #agents
|
|
625
|
+
* - Optionally DMs (opt-in)
|
|
626
|
+
*/
|
|
627
|
+
export async function reportProgress(
|
|
628
|
+
message: string,
|
|
629
|
+
options: ReportOptions = {},
|
|
630
|
+
): Promise<ReportResult> {
|
|
631
|
+
const agent = options.agent ?? detectAgent();
|
|
632
|
+
const traceId = options.traceId ?? getOrCreateTraceId();
|
|
633
|
+
const workspace = options.workspace ?? getDefaultSlackWorkspace();
|
|
634
|
+
const channel = options.channel ?? "agents";
|
|
635
|
+
const shouldDm = options.dm === true && !options.noDm;
|
|
636
|
+
|
|
637
|
+
const result: ReportResult = {
|
|
638
|
+
success: true,
|
|
639
|
+
traceId,
|
|
640
|
+
agent,
|
|
641
|
+
action: "progress",
|
|
642
|
+
convex: { success: true },
|
|
643
|
+
slack: { success: true },
|
|
644
|
+
};
|
|
645
|
+
|
|
646
|
+
const formattedMessage = formatReportMessage("progress", message, options);
|
|
647
|
+
|
|
648
|
+
if (options.dryRun) {
|
|
649
|
+
console.error(
|
|
650
|
+
`[dry-run] convex reports.record --agent ${agent} --trace-id ${traceId} --action progress --task "${message}"`,
|
|
651
|
+
);
|
|
652
|
+
console.error(
|
|
653
|
+
`[dry-run] slack agent post -a ${agent} -c ${channel} -w ${workspace} --text "${formattedMessage}"`,
|
|
654
|
+
);
|
|
655
|
+
if (shouldDm) {
|
|
656
|
+
console.error(`[dry-run] messages send luke "${formattedMessage}"`);
|
|
657
|
+
}
|
|
658
|
+
return result;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
// 1. Persist to Convex (critical)
|
|
662
|
+
const convexResult = await recordToConvex({
|
|
663
|
+
agent,
|
|
664
|
+
traceId,
|
|
665
|
+
action: "progress",
|
|
666
|
+
task: message,
|
|
667
|
+
confidence: options.confidence,
|
|
668
|
+
});
|
|
669
|
+
|
|
670
|
+
if (!convexResult.success) {
|
|
671
|
+
result.convex = { success: false, error: convexResult.error };
|
|
672
|
+
result.success = false;
|
|
673
|
+
return result;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
// 2. Post to slack
|
|
677
|
+
const slackResult = postToSlack({
|
|
678
|
+
agent,
|
|
679
|
+
channel,
|
|
680
|
+
workspace,
|
|
681
|
+
text: formattedMessage,
|
|
682
|
+
});
|
|
683
|
+
|
|
684
|
+
if (!slackResult.success) {
|
|
685
|
+
result.slack = { success: false, error: slackResult.error };
|
|
686
|
+
console.error(`[warn] slack post failed: ${slackResult.error}`);
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
// 3. DM if requested
|
|
690
|
+
if (shouldDm) {
|
|
691
|
+
const msgResult = sendMessage({
|
|
692
|
+
to: "luke",
|
|
693
|
+
text: formattedMessage,
|
|
694
|
+
});
|
|
695
|
+
|
|
696
|
+
result.messages = {
|
|
697
|
+
success: msgResult.success,
|
|
698
|
+
error: msgResult.error,
|
|
699
|
+
};
|
|
700
|
+
|
|
701
|
+
if (!msgResult.success) {
|
|
702
|
+
console.error(`[warn] iMessage failed: ${msgResult.error}`);
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
// 4. Optional remote reporting (warn + continue)
|
|
707
|
+
const remoteResult = await reportToRemote("progress", message, {
|
|
708
|
+
...options,
|
|
709
|
+
agent,
|
|
710
|
+
traceId,
|
|
711
|
+
});
|
|
712
|
+
|
|
713
|
+
if (remoteResult.success) {
|
|
714
|
+
result.remote = { success: true };
|
|
715
|
+
} else {
|
|
716
|
+
result.remote = { success: false, error: remoteResult.error };
|
|
717
|
+
console.error(`[warn] remote report failed: ${remoteResult.error}`);
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
return result;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
/**
|
|
724
|
+
* Report: complete - finalize a trace
|
|
725
|
+
*
|
|
726
|
+
* - Inherits trace ID from env or requires explicit
|
|
727
|
+
* - Persists to Convex reports with artifacts
|
|
728
|
+
* - Posts to #agents
|
|
729
|
+
* - Optionally DMs (opt-in)
|
|
730
|
+
*/
|
|
731
|
+
export async function reportComplete(
|
|
732
|
+
message: string,
|
|
733
|
+
options: ReportOptions = {},
|
|
734
|
+
): Promise<ReportResult> {
|
|
735
|
+
const agent = options.agent ?? detectAgent();
|
|
736
|
+
const traceId = options.traceId ?? getOrCreateTraceId();
|
|
737
|
+
const workspace = options.workspace ?? getDefaultSlackWorkspace();
|
|
738
|
+
const channel = options.channel ?? "agents";
|
|
739
|
+
const shouldDm = options.dm === true && !options.noDm;
|
|
740
|
+
|
|
741
|
+
const result: ReportResult = {
|
|
742
|
+
success: true,
|
|
743
|
+
traceId,
|
|
744
|
+
agent,
|
|
745
|
+
action: "completed",
|
|
746
|
+
convex: { success: true },
|
|
747
|
+
slack: { success: true },
|
|
748
|
+
};
|
|
749
|
+
|
|
750
|
+
const formattedMessage = formatReportMessage("completed", message, options);
|
|
751
|
+
|
|
752
|
+
if (options.dryRun) {
|
|
753
|
+
console.error(
|
|
754
|
+
`[dry-run] convex reports.record --agent ${agent} --trace-id ${traceId} --action completed --task "${message}"`,
|
|
755
|
+
);
|
|
756
|
+
console.error(
|
|
757
|
+
`[dry-run] slack agent post -a ${agent} -c ${channel} -w ${workspace} --text "${formattedMessage}"`,
|
|
758
|
+
);
|
|
759
|
+
if (shouldDm) {
|
|
760
|
+
console.error(`[dry-run] messages send luke "${formattedMessage}"`);
|
|
761
|
+
}
|
|
762
|
+
return result;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
// 1. Persist to Convex (critical)
|
|
766
|
+
const convexResult = await recordToConvex({
|
|
767
|
+
agent,
|
|
768
|
+
traceId,
|
|
769
|
+
action: "completed",
|
|
770
|
+
task: message,
|
|
771
|
+
confidence: options.confidence,
|
|
772
|
+
artifacts: options.artifacts,
|
|
773
|
+
gist: options.gist,
|
|
774
|
+
gistDescription: options.gistDescription,
|
|
775
|
+
gistPublic: options.gistPublic,
|
|
776
|
+
});
|
|
777
|
+
|
|
778
|
+
if (!convexResult.success) {
|
|
779
|
+
result.convex = { success: false, error: convexResult.error };
|
|
780
|
+
result.success = false;
|
|
781
|
+
return result;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
// Extract gist URL from Convex output if present
|
|
785
|
+
if (options.gist && convexResult.stdout) {
|
|
786
|
+
try {
|
|
787
|
+
const convexOutput = JSON.parse(convexResult.stdout);
|
|
788
|
+
if (convexOutput.gist_url) {
|
|
789
|
+
result.gistUrl = convexOutput.gist_url;
|
|
790
|
+
}
|
|
791
|
+
} catch {
|
|
792
|
+
// JSON parse failed, gist URL won't be available in result
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
// 2. Post to slack
|
|
797
|
+
const slackResult = postToSlack({
|
|
798
|
+
agent,
|
|
799
|
+
channel,
|
|
800
|
+
workspace,
|
|
801
|
+
text: formattedMessage,
|
|
802
|
+
});
|
|
803
|
+
|
|
804
|
+
if (!slackResult.success) {
|
|
805
|
+
result.slack = { success: false, error: slackResult.error };
|
|
806
|
+
console.error(`[warn] slack post failed: ${slackResult.error}`);
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
// 3. DM if requested
|
|
810
|
+
if (shouldDm) {
|
|
811
|
+
const msgResult = sendMessage({
|
|
812
|
+
to: "luke",
|
|
813
|
+
text: formattedMessage,
|
|
814
|
+
});
|
|
815
|
+
|
|
816
|
+
result.messages = {
|
|
817
|
+
success: msgResult.success,
|
|
818
|
+
error: msgResult.error,
|
|
819
|
+
};
|
|
820
|
+
|
|
821
|
+
if (!msgResult.success) {
|
|
822
|
+
console.error(`[warn] iMessage failed: ${msgResult.error}`);
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
// 4. Optional remote reporting (warn + continue)
|
|
827
|
+
const remoteResult = await reportToRemote("completed", message, {
|
|
828
|
+
...options,
|
|
829
|
+
agent,
|
|
830
|
+
traceId,
|
|
831
|
+
});
|
|
832
|
+
|
|
833
|
+
if (remoteResult.success) {
|
|
834
|
+
result.remote = { success: true };
|
|
835
|
+
} else {
|
|
836
|
+
result.remote = { success: false, error: remoteResult.error };
|
|
837
|
+
console.error(`[warn] remote report failed: ${remoteResult.error}`);
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
return result;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
/**
|
|
844
|
+
* Report: blocked - report a blocker
|
|
845
|
+
*
|
|
846
|
+
* - Inherits trace ID from env or requires explicit
|
|
847
|
+
* - Persists to Convex reports with blocker type
|
|
848
|
+
* - Posts to #agents
|
|
849
|
+
* - DMs by default (can be suppressed with --no-dm)
|
|
850
|
+
*/
|
|
851
|
+
export async function reportBlocked(
|
|
852
|
+
message: string,
|
|
853
|
+
options: ReportOptions = {},
|
|
854
|
+
): Promise<ReportResult> {
|
|
855
|
+
const agent = options.agent ?? detectAgent();
|
|
856
|
+
const traceId = options.traceId ?? getOrCreateTraceId();
|
|
857
|
+
const workspace = options.workspace ?? getDefaultSlackWorkspace();
|
|
858
|
+
const channel = options.channel ?? "agents";
|
|
859
|
+
// Default to DM for blocked (unless explicitly disabled)
|
|
860
|
+
const shouldDm = options.noDm !== true;
|
|
861
|
+
|
|
862
|
+
const result: ReportResult = {
|
|
863
|
+
success: true,
|
|
864
|
+
traceId,
|
|
865
|
+
agent,
|
|
866
|
+
action: "blocked",
|
|
867
|
+
convex: { success: true },
|
|
868
|
+
slack: { success: true },
|
|
869
|
+
};
|
|
870
|
+
|
|
871
|
+
const formattedMessage = formatReportMessage("blocked", message, options);
|
|
872
|
+
|
|
873
|
+
if (options.dryRun) {
|
|
874
|
+
console.error(
|
|
875
|
+
`[dry-run] convex reports.record --agent ${agent} --trace-id ${traceId} --action blocked --task "${message}"`,
|
|
876
|
+
);
|
|
877
|
+
console.error(
|
|
878
|
+
`[dry-run] slack agent post -a ${agent} -c ${channel} -w ${workspace} --text "${formattedMessage}"`,
|
|
879
|
+
);
|
|
880
|
+
if (shouldDm) {
|
|
881
|
+
console.error(`[dry-run] messages send luke "${formattedMessage}"`);
|
|
882
|
+
}
|
|
883
|
+
return result;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
// 1. Persist to Convex (critical)
|
|
887
|
+
const convexResult = await recordToConvex({
|
|
888
|
+
agent,
|
|
889
|
+
traceId,
|
|
890
|
+
action: "blocked",
|
|
891
|
+
task: message,
|
|
892
|
+
confidence: options.confidence,
|
|
893
|
+
blockerType: options.blockerType ?? "hil",
|
|
894
|
+
});
|
|
895
|
+
|
|
896
|
+
if (!convexResult.success) {
|
|
897
|
+
result.convex = { success: false, error: convexResult.error };
|
|
898
|
+
result.success = false;
|
|
899
|
+
return result;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
// 2. Post to slack
|
|
903
|
+
const slackResult = postToSlack({
|
|
904
|
+
agent,
|
|
905
|
+
channel,
|
|
906
|
+
workspace,
|
|
907
|
+
text: formattedMessage,
|
|
908
|
+
});
|
|
909
|
+
|
|
910
|
+
if (!slackResult.success) {
|
|
911
|
+
result.slack = { success: false, error: slackResult.error };
|
|
912
|
+
console.error(`[warn] slack post failed: ${slackResult.error}`);
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
// 3. DM (default for blocked)
|
|
916
|
+
if (shouldDm) {
|
|
917
|
+
const msgResult = sendMessage({
|
|
918
|
+
to: "luke",
|
|
919
|
+
text: formattedMessage,
|
|
920
|
+
});
|
|
921
|
+
|
|
922
|
+
result.messages = {
|
|
923
|
+
success: msgResult.success,
|
|
924
|
+
error: msgResult.error,
|
|
925
|
+
};
|
|
926
|
+
|
|
927
|
+
if (!msgResult.success) {
|
|
928
|
+
console.error(`[warn] iMessage failed: ${msgResult.error}`);
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
// 4. Optional remote reporting (warn + continue)
|
|
933
|
+
const remoteResult = await reportToRemote("blocked", message, {
|
|
934
|
+
...options,
|
|
935
|
+
agent,
|
|
936
|
+
traceId,
|
|
937
|
+
});
|
|
938
|
+
|
|
939
|
+
if (remoteResult.success) {
|
|
940
|
+
result.remote = { success: true };
|
|
941
|
+
} else {
|
|
942
|
+
result.remote = { success: false, error: remoteResult.error };
|
|
943
|
+
console.error(`[warn] remote report failed: ${remoteResult.error}`);
|
|
944
|
+
}
|
|
945
|
+
|
|
946
|
+
return result;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
// ============================================================================
|
|
950
|
+
// Unified Report Function
|
|
951
|
+
// ============================================================================
|
|
952
|
+
|
|
953
|
+
/**
|
|
954
|
+
* Unified report function - dispatch to appropriate handler
|
|
955
|
+
*/
|
|
956
|
+
export async function report(
|
|
957
|
+
action: ReportAction,
|
|
958
|
+
message: string,
|
|
959
|
+
options: ReportOptions = {},
|
|
960
|
+
): Promise<ReportResult> {
|
|
961
|
+
switch (action) {
|
|
962
|
+
case "started":
|
|
963
|
+
return reportStart(message, options);
|
|
964
|
+
case "progress":
|
|
965
|
+
return reportProgress(message, options);
|
|
966
|
+
case "completed":
|
|
967
|
+
return reportComplete(message, options);
|
|
968
|
+
case "blocked":
|
|
969
|
+
return reportBlocked(message, options);
|
|
970
|
+
default:
|
|
971
|
+
throw new Error(`Unknown action: ${action}`);
|
|
972
|
+
}
|
|
973
|
+
}
|