@skrr-ai/cli 0.1.8
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 +1952 -0
- package/bin/run.js +26 -0
- package/dist/base-command.d.ts +397 -0
- package/dist/base-command.js +1252 -0
- package/dist/commands/actions/browse.d.ts +14 -0
- package/dist/commands/actions/browse.js +50 -0
- package/dist/commands/actions/create.d.ts +20 -0
- package/dist/commands/actions/create.js +95 -0
- package/dist/commands/actions/delete.d.ts +13 -0
- package/dist/commands/actions/delete.js +42 -0
- package/dist/commands/actions/install.d.ts +13 -0
- package/dist/commands/actions/install.js +49 -0
- package/dist/commands/actions/list.d.ts +14 -0
- package/dist/commands/actions/list.js +49 -0
- package/dist/commands/actions/publish.d.ts +14 -0
- package/dist/commands/actions/publish.js +44 -0
- package/dist/commands/actions/rate.d.ts +13 -0
- package/dist/commands/actions/rate.js +42 -0
- package/dist/commands/actions/show.d.ts +12 -0
- package/dist/commands/actions/show.js +36 -0
- package/dist/commands/actions/update.d.ts +21 -0
- package/dist/commands/actions/update.js +83 -0
- package/dist/commands/agenda/plan.d.ts +27 -0
- package/dist/commands/agenda/plan.js +68 -0
- package/dist/commands/agenda/trigger/create.d.ts +33 -0
- package/dist/commands/agenda/trigger/create.js +128 -0
- package/dist/commands/agenda/trigger/delete.d.ts +21 -0
- package/dist/commands/agenda/trigger/delete.js +56 -0
- package/dist/commands/agenda/trigger/fire.d.ts +28 -0
- package/dist/commands/agenda/trigger/fire.js +74 -0
- package/dist/commands/agenda/trigger/list.d.ts +28 -0
- package/dist/commands/agenda/trigger/list.js +104 -0
- package/dist/commands/agent/call/cancel.d.ts +11 -0
- package/dist/commands/agent/call/cancel.js +49 -0
- package/dist/commands/agent/call/request.d.ts +15 -0
- package/dist/commands/agent/call/request.js +173 -0
- package/dist/commands/agent/call/show.d.ts +11 -0
- package/dist/commands/agent/call/show.js +48 -0
- package/dist/commands/agent/message/context.d.ts +19 -0
- package/dist/commands/agent/message/context.js +79 -0
- package/dist/commands/agent/message/send.d.ts +232 -0
- package/dist/commands/agent/message/send.js +1055 -0
- package/dist/commands/agent/phone-call/request.d.ts +20 -0
- package/dist/commands/agent/phone-call/request.js +145 -0
- package/dist/commands/agent-groups/add.d.ts +13 -0
- package/dist/commands/agent-groups/add.js +45 -0
- package/dist/commands/agent-groups/create.d.ts +14 -0
- package/dist/commands/agent-groups/create.js +62 -0
- package/dist/commands/agent-groups/delete.d.ts +12 -0
- package/dist/commands/agent-groups/delete.js +43 -0
- package/dist/commands/agent-groups/list.d.ts +9 -0
- package/dist/commands/agent-groups/list.js +51 -0
- package/dist/commands/agent-groups/remove.d.ts +13 -0
- package/dist/commands/agent-groups/remove.js +45 -0
- package/dist/commands/agent-groups/show.d.ts +12 -0
- package/dist/commands/agent-groups/show.js +42 -0
- package/dist/commands/agent-groups/update.d.ts +17 -0
- package/dist/commands/agent-groups/update.js +68 -0
- package/dist/commands/agent-shares/accept.d.ts +12 -0
- package/dist/commands/agent-shares/accept.js +35 -0
- package/dist/commands/agent-shares/create.d.ts +15 -0
- package/dist/commands/agent-shares/create.js +66 -0
- package/dist/commands/agent-shares/decline.d.ts +13 -0
- package/dist/commands/agent-shares/decline.js +54 -0
- package/dist/commands/agent-shares/leave.d.ts +12 -0
- package/dist/commands/agent-shares/leave.js +43 -0
- package/dist/commands/agent-shares/list-for.d.ts +12 -0
- package/dist/commands/agent-shares/list-for.js +66 -0
- package/dist/commands/agent-shares/received.d.ts +13 -0
- package/dist/commands/agent-shares/received.js +77 -0
- package/dist/commands/agent-shares/revoke.d.ts +12 -0
- package/dist/commands/agent-shares/revoke.js +43 -0
- package/dist/commands/agent-shares/sent.d.ts +12 -0
- package/dist/commands/agent-shares/sent.js +74 -0
- package/dist/commands/agent-shares/with.d.ts +12 -0
- package/dist/commands/agent-shares/with.js +79 -0
- package/dist/commands/agents/actions/create.d.ts +23 -0
- package/dist/commands/agents/actions/create.js +130 -0
- package/dist/commands/agents/actions/delete.d.ts +13 -0
- package/dist/commands/agents/actions/delete.js +43 -0
- package/dist/commands/agents/actions/list.d.ts +12 -0
- package/dist/commands/agents/actions/list.js +36 -0
- package/dist/commands/agents/actions/run.d.ts +15 -0
- package/dist/commands/agents/actions/run.js +61 -0
- package/dist/commands/agents/actions/schedule.d.ts +29 -0
- package/dist/commands/agents/actions/schedule.js +162 -0
- package/dist/commands/agents/actions/show.d.ts +13 -0
- package/dist/commands/agents/actions/show.js +40 -0
- package/dist/commands/agents/actions/targets.d.ts +14 -0
- package/dist/commands/agents/actions/targets.js +117 -0
- package/dist/commands/agents/actions/update.d.ts +22 -0
- package/dist/commands/agents/actions/update.js +117 -0
- package/dist/commands/agents/activity.d.ts +24 -0
- package/dist/commands/agents/activity.js +195 -0
- package/dist/commands/agents/always-on/disable.d.ts +23 -0
- package/dist/commands/agents/always-on/disable.js +57 -0
- package/dist/commands/agents/always-on/enable.d.ts +31 -0
- package/dist/commands/agents/always-on/enable.js +65 -0
- package/dist/commands/agents/always-on/reconcile.d.ts +23 -0
- package/dist/commands/agents/always-on/reconcile.js +49 -0
- package/dist/commands/agents/always-on/status.d.ts +22 -0
- package/dist/commands/agents/always-on/status.js +67 -0
- package/dist/commands/agents/attach-harness.d.ts +16 -0
- package/dist/commands/agents/attach-harness.js +131 -0
- package/dist/commands/agents/avatar/generate.d.ts +12 -0
- package/dist/commands/agents/avatar/generate.js +27 -0
- package/dist/commands/agents/avatar/upload.d.ts +12 -0
- package/dist/commands/agents/avatar/upload.js +29 -0
- package/dist/commands/agents/channels/connect.d.ts +12 -0
- package/dist/commands/agents/channels/connect.js +33 -0
- package/dist/commands/agents/channels/delete.d.ts +13 -0
- package/dist/commands/agents/channels/delete.js +37 -0
- package/dist/commands/agents/channels/disconnect.d.ts +12 -0
- package/dist/commands/agents/channels/disconnect.js +33 -0
- package/dist/commands/agents/channels/show.d.ts +12 -0
- package/dist/commands/agents/channels/show.js +29 -0
- package/dist/commands/agents/channels/test.d.ts +13 -0
- package/dist/commands/agents/channels/test.js +33 -0
- package/dist/commands/agents/channels/update.d.ts +13 -0
- package/dist/commands/agents/channels/update.js +37 -0
- package/dist/commands/agents/chat.d.ts +72 -0
- package/dist/commands/agents/chat.js +394 -0
- package/dist/commands/agents/create.d.ts +70 -0
- package/dist/commands/agents/create.js +241 -0
- package/dist/commands/agents/delete.d.ts +12 -0
- package/dist/commands/agents/delete.js +46 -0
- package/dist/commands/agents/duplicate.d.ts +12 -0
- package/dist/commands/agents/duplicate.js +46 -0
- package/dist/commands/agents/files/delete.d.ts +13 -0
- package/dist/commands/agents/files/delete.js +32 -0
- package/dist/commands/agents/files/list.d.ts +11 -0
- package/dist/commands/agents/files/list.js +22 -0
- package/dist/commands/agents/files/move.d.ts +13 -0
- package/dist/commands/agents/files/move.js +35 -0
- package/dist/commands/agents/files/rename.d.ts +13 -0
- package/dist/commands/agents/files/rename.js +32 -0
- package/dist/commands/agents/files/upload.d.ts +21 -0
- package/dist/commands/agents/files/upload.js +60 -0
- package/dist/commands/agents/folders/create.d.ts +13 -0
- package/dist/commands/agents/folders/create.js +30 -0
- package/dist/commands/agents/folders/delete.d.ts +13 -0
- package/dist/commands/agents/folders/delete.js +30 -0
- package/dist/commands/agents/folders/list.d.ts +11 -0
- package/dist/commands/agents/folders/list.js +22 -0
- package/dist/commands/agents/folders/show.d.ts +12 -0
- package/dist/commands/agents/folders/show.js +23 -0
- package/dist/commands/agents/folders/update.d.ts +14 -0
- package/dist/commands/agents/folders/update.js +32 -0
- package/dist/commands/agents/goals/assign.d.ts +25 -0
- package/dist/commands/agents/goals/assign.js +56 -0
- package/dist/commands/agents/goals/list.d.ts +24 -0
- package/dist/commands/agents/goals/list.js +71 -0
- package/dist/commands/agents/goals/unassign.d.ts +23 -0
- package/dist/commands/agents/goals/unassign.js +49 -0
- package/dist/commands/agents/identity.d.ts +35 -0
- package/dist/commands/agents/identity.js +78 -0
- package/dist/commands/agents/intuitions/accept.d.ts +13 -0
- package/dist/commands/agents/intuitions/accept.js +26 -0
- package/dist/commands/agents/intuitions/dismiss.d.ts +13 -0
- package/dist/commands/agents/intuitions/dismiss.js +25 -0
- package/dist/commands/agents/intuitions/generate.d.ts +12 -0
- package/dist/commands/agents/intuitions/generate.js +24 -0
- package/dist/commands/agents/intuitions/list.d.ts +11 -0
- package/dist/commands/agents/intuitions/list.js +21 -0
- package/dist/commands/agents/intuitions/stats.d.ts +11 -0
- package/dist/commands/agents/intuitions/stats.js +17 -0
- package/dist/commands/agents/list.d.ts +22 -0
- package/dist/commands/agents/list.js +75 -0
- package/dist/commands/agents/notepad/delete.d.ts +12 -0
- package/dist/commands/agents/notepad/delete.js +29 -0
- package/dist/commands/agents/notepad/show.d.ts +11 -0
- package/dist/commands/agents/notepad/show.js +22 -0
- package/dist/commands/agents/notepad/update.d.ts +13 -0
- package/dist/commands/agents/notepad/update.js +31 -0
- package/dist/commands/agents/overview.d.ts +26 -0
- package/dist/commands/agents/overview.js +98 -0
- package/dist/commands/agents/plan-day.d.ts +66 -0
- package/dist/commands/agents/plan-day.js +279 -0
- package/dist/commands/agents/preferences/show.d.ts +11 -0
- package/dist/commands/agents/preferences/show.js +20 -0
- package/dist/commands/agents/preferences/update.d.ts +14 -0
- package/dist/commands/agents/preferences/update.js +34 -0
- package/dist/commands/agents/query.d.ts +20 -0
- package/dist/commands/agents/query.js +51 -0
- package/dist/commands/agents/reflect.d.ts +36 -0
- package/dist/commands/agents/reflect.js +184 -0
- package/dist/commands/agents/releases/create.d.ts +14 -0
- package/dist/commands/agents/releases/create.js +31 -0
- package/dist/commands/agents/releases/delist.d.ts +14 -0
- package/dist/commands/agents/releases/delist.js +31 -0
- package/dist/commands/agents/releases/list.d.ts +11 -0
- package/dist/commands/agents/releases/list.js +21 -0
- package/dist/commands/agents/releases/restore.d.ts +12 -0
- package/dist/commands/agents/releases/restore.js +27 -0
- package/dist/commands/agents/releases/rollback.d.ts +12 -0
- package/dist/commands/agents/releases/rollback.js +25 -0
- package/dist/commands/agents/revert.d.ts +13 -0
- package/dist/commands/agents/revert.js +42 -0
- package/dist/commands/agents/schedule-overview.d.ts +27 -0
- package/dist/commands/agents/schedule-overview.js +231 -0
- package/dist/commands/agents/schedule-trace.d.ts +27 -0
- package/dist/commands/agents/schedule-trace.js +111 -0
- package/dist/commands/agents/schedule.d.ts +46 -0
- package/dist/commands/agents/schedule.js +155 -0
- package/dist/commands/agents/show.d.ts +30 -0
- package/dist/commands/agents/show.js +147 -0
- package/dist/commands/agents/skills/add.d.ts +29 -0
- package/dist/commands/agents/skills/add.js +59 -0
- package/dist/commands/agents/skills/list.d.ts +21 -0
- package/dist/commands/agents/skills/list.js +78 -0
- package/dist/commands/agents/skills/remove.d.ts +21 -0
- package/dist/commands/agents/skills/remove.js +50 -0
- package/dist/commands/agents/spaces.d.ts +31 -0
- package/dist/commands/agents/spaces.js +87 -0
- package/dist/commands/agents/spawn.d.ts +56 -0
- package/dist/commands/agents/spawn.js +328 -0
- package/dist/commands/agents/todos/cancel.d.ts +19 -0
- package/dist/commands/agents/todos/cancel.js +57 -0
- package/dist/commands/agents/todos/create.d.ts +22 -0
- package/dist/commands/agents/todos/create.js +55 -0
- package/dist/commands/agents/todos/list.d.ts +18 -0
- package/dist/commands/agents/todos/list.js +42 -0
- package/dist/commands/agents/tone/clear.d.ts +18 -0
- package/dist/commands/agents/tone/clear.js +79 -0
- package/dist/commands/agents/tone/inherit.d.ts +17 -0
- package/dist/commands/agents/tone/inherit.js +75 -0
- package/dist/commands/agents/tone/set.d.ts +21 -0
- package/dist/commands/agents/tone/set.js +125 -0
- package/dist/commands/agents/tone/show.d.ts +26 -0
- package/dist/commands/agents/tone/show.js +114 -0
- package/dist/commands/agents/transfer-workspace.d.ts +20 -0
- package/dist/commands/agents/transfer-workspace.js +49 -0
- package/dist/commands/agents/triggers/create.d.ts +93 -0
- package/dist/commands/agents/triggers/create.js +324 -0
- package/dist/commands/agents/triggers/delete.d.ts +18 -0
- package/dist/commands/agents/triggers/delete.js +64 -0
- package/dist/commands/agents/triggers/disable.d.ts +18 -0
- package/dist/commands/agents/triggers/disable.js +42 -0
- package/dist/commands/agents/triggers/enable.d.ts +14 -0
- package/dist/commands/agents/triggers/enable.js +38 -0
- package/dist/commands/agents/triggers/fire.d.ts +20 -0
- package/dist/commands/agents/triggers/fire.js +56 -0
- package/dist/commands/agents/triggers/list.d.ts +30 -0
- package/dist/commands/agents/triggers/list.js +62 -0
- package/dist/commands/agents/triggers/policy.d.ts +20 -0
- package/dist/commands/agents/triggers/policy.js +79 -0
- package/dist/commands/agents/triggers/replay.d.ts +15 -0
- package/dist/commands/agents/triggers/replay.js +55 -0
- package/dist/commands/agents/triggers/runs.d.ts +22 -0
- package/dist/commands/agents/triggers/runs.js +74 -0
- package/dist/commands/agents/triggers/show.d.ts +19 -0
- package/dist/commands/agents/triggers/show.js +44 -0
- package/dist/commands/agents/triggers/update.d.ts +80 -0
- package/dist/commands/agents/triggers/update.js +254 -0
- package/dist/commands/agents/upcoming.d.ts +36 -0
- package/dist/commands/agents/upcoming.js +120 -0
- package/dist/commands/agents/update.d.ts +44 -0
- package/dist/commands/agents/update.js +129 -0
- package/dist/commands/agents/versions.d.ts +26 -0
- package/dist/commands/agents/versions.js +94 -0
- package/dist/commands/agents/visibility.d.ts +19 -0
- package/dist/commands/agents/visibility.js +65 -0
- package/dist/commands/balance/history.d.ts +24 -0
- package/dist/commands/balance/history.js +89 -0
- package/dist/commands/balance/show.d.ts +45 -0
- package/dist/commands/balance/show.js +211 -0
- package/dist/commands/balance/statement.d.ts +89 -0
- package/dist/commands/balance/statement.js +249 -0
- package/dist/commands/balance/usage.d.ts +22 -0
- package/dist/commands/balance/usage.js +106 -0
- package/dist/commands/browser/doctor.d.ts +8 -0
- package/dist/commands/browser/doctor.js +15 -0
- package/dist/commands/browser/install.d.ts +11 -0
- package/dist/commands/browser/install.js +27 -0
- package/dist/commands/browser/mcp-config.d.ts +5 -0
- package/dist/commands/browser/mcp-config.js +12 -0
- package/dist/commands/browser/skill/show.d.ts +8 -0
- package/dist/commands/browser/skill/show.js +15 -0
- package/dist/commands/browser/status.d.ts +8 -0
- package/dist/commands/browser/status.js +15 -0
- package/dist/commands/browser/uninstall.d.ts +11 -0
- package/dist/commands/browser/uninstall.js +27 -0
- package/dist/commands/browser.d.ts +19 -0
- package/dist/commands/browser.js +52 -0
- package/dist/commands/characters/list.d.ts +11 -0
- package/dist/commands/characters/list.js +51 -0
- package/dist/commands/chats/agents/add.d.ts +13 -0
- package/dist/commands/chats/agents/add.js +44 -0
- package/dist/commands/chats/agents/remove.d.ts +13 -0
- package/dist/commands/chats/agents/remove.js +39 -0
- package/dist/commands/chats/create.d.ts +45 -0
- package/dist/commands/chats/create.js +125 -0
- package/dist/commands/chats/delete.d.ts +12 -0
- package/dist/commands/chats/delete.js +46 -0
- package/dist/commands/chats/files/delete.d.ts +13 -0
- package/dist/commands/chats/files/delete.js +50 -0
- package/dist/commands/chats/files/list.d.ts +10 -0
- package/dist/commands/chats/files/list.js +51 -0
- package/dist/commands/chats/files/move.d.ts +14 -0
- package/dist/commands/chats/files/move.js +41 -0
- package/dist/commands/chats/files/rename.d.ts +14 -0
- package/dist/commands/chats/files/rename.js +42 -0
- package/dist/commands/chats/folders/create.d.ts +11 -0
- package/dist/commands/chats/folders/create.js +38 -0
- package/dist/commands/chats/folders/delete.d.ts +13 -0
- package/dist/commands/chats/folders/delete.js +50 -0
- package/dist/commands/chats/folders/list.d.ts +10 -0
- package/dist/commands/chats/folders/list.js +49 -0
- package/dist/commands/chats/folders/update.d.ts +14 -0
- package/dist/commands/chats/folders/update.js +42 -0
- package/dist/commands/chats/join.d.ts +12 -0
- package/dist/commands/chats/join.js +35 -0
- package/dist/commands/chats/list.d.ts +30 -0
- package/dist/commands/chats/list.js +98 -0
- package/dist/commands/chats/messages.d.ts +15 -0
- package/dist/commands/chats/messages.js +59 -0
- package/dist/commands/chats/preferences/show.d.ts +9 -0
- package/dist/commands/chats/preferences/show.js +32 -0
- package/dist/commands/chats/preferences/update.d.ts +13 -0
- package/dist/commands/chats/preferences/update.js +50 -0
- package/dist/commands/chats/send.d.ts +27 -0
- package/dist/commands/chats/send.js +191 -0
- package/dist/commands/chats/show.d.ts +12 -0
- package/dist/commands/chats/show.js +64 -0
- package/dist/commands/chats/spaces/create.d.ts +12 -0
- package/dist/commands/chats/spaces/create.js +52 -0
- package/dist/commands/chats/spaces/link.d.ts +13 -0
- package/dist/commands/chats/spaces/link.js +36 -0
- package/dist/commands/chats/spaces/list.d.ts +10 -0
- package/dist/commands/chats/spaces/list.js +49 -0
- package/dist/commands/chats/spaces/unlink.d.ts +13 -0
- package/dist/commands/chats/spaces/unlink.js +36 -0
- package/dist/commands/chats/triggers/set.d.ts +32 -0
- package/dist/commands/chats/triggers/set.js +127 -0
- package/dist/commands/chats/triggers/show.d.ts +12 -0
- package/dist/commands/chats/triggers/show.js +46 -0
- package/dist/commands/chats/update.d.ts +15 -0
- package/dist/commands/chats/update.js +54 -0
- package/dist/commands/chats/widgets/create.d.ts +13 -0
- package/dist/commands/chats/widgets/create.js +51 -0
- package/dist/commands/chats/widgets/delete.d.ts +13 -0
- package/dist/commands/chats/widgets/delete.js +47 -0
- package/dist/commands/chats/widgets/list.d.ts +10 -0
- package/dist/commands/chats/widgets/list.js +49 -0
- package/dist/commands/chats/widgets/update.d.ts +16 -0
- package/dist/commands/chats/widgets/update.js +54 -0
- package/dist/commands/code/acp.d.ts +20 -0
- package/dist/commands/code/acp.js +46 -0
- package/dist/commands/code/doctor.d.ts +21 -0
- package/dist/commands/code/doctor.js +39 -0
- package/dist/commands/code/handover.d.ts +47 -0
- package/dist/commands/code/handover.js +177 -0
- package/dist/commands/code/index.d.ts +37 -0
- package/dist/commands/code/index.js +105 -0
- package/dist/commands/code/migrate.d.ts +26 -0
- package/dist/commands/code/migrate.js +62 -0
- package/dist/commands/code/oversky-agent.d.ts +63 -0
- package/dist/commands/code/oversky-agent.js +201 -0
- package/dist/commands/code/run.d.ts +13 -0
- package/dist/commands/code/run.js +36 -0
- package/dist/commands/commands.d.ts +16 -0
- package/dist/commands/commands.js +131 -0
- package/dist/commands/commitments/action-history.d.ts +21 -0
- package/dist/commands/commitments/action-history.js +40 -0
- package/dist/commands/commitments/analytics/detail.d.ts +25 -0
- package/dist/commands/commitments/analytics/detail.js +51 -0
- package/dist/commands/commitments/analytics/index.d.ts +34 -0
- package/dist/commands/commitments/analytics/index.js +107 -0
- package/dist/commands/commitments/analytics/replay.d.ts +22 -0
- package/dist/commands/commitments/analytics/replay.js +45 -0
- package/dist/commands/commitments/attach.d.ts +25 -0
- package/dist/commands/commitments/attach.js +81 -0
- package/dist/commands/commitments/autonomy-requests/decide.d.ts +26 -0
- package/dist/commands/commitments/autonomy-requests/decide.js +58 -0
- package/dist/commands/commitments/autonomy.d.ts +34 -0
- package/dist/commands/commitments/autonomy.js +68 -0
- package/dist/commands/commitments/cadence-decisions.d.ts +17 -0
- package/dist/commands/commitments/cadence-decisions.js +36 -0
- package/dist/commands/commitments/case.d.ts +12 -0
- package/dist/commands/commitments/case.js +26 -0
- package/dist/commands/commitments/cases.d.ts +13 -0
- package/dist/commands/commitments/cases.js +32 -0
- package/dist/commands/commitments/check-now.d.ts +22 -0
- package/dist/commands/commitments/check-now.js +76 -0
- package/dist/commands/commitments/checks.d.ts +21 -0
- package/dist/commands/commitments/checks.js +44 -0
- package/dist/commands/commitments/complete.d.ts +17 -0
- package/dist/commands/commitments/complete.js +40 -0
- package/dist/commands/commitments/create.d.ts +51 -0
- package/dist/commands/commitments/create.js +236 -0
- package/dist/commands/commitments/decide-remediation.d.ts +14 -0
- package/dist/commands/commitments/decide-remediation.js +38 -0
- package/dist/commands/commitments/delete.d.ts +27 -0
- package/dist/commands/commitments/delete.js +72 -0
- package/dist/commands/commitments/detach.d.ts +23 -0
- package/dist/commands/commitments/detach.js +77 -0
- package/dist/commands/commitments/effective-policy.d.ts +13 -0
- package/dist/commands/commitments/effective-policy.js +37 -0
- package/dist/commands/commitments/endpoints/connect.d.ts +25 -0
- package/dist/commands/commitments/endpoints/connect.js +78 -0
- package/dist/commands/commitments/endpoints/create.d.ts +32 -0
- package/dist/commands/commitments/endpoints/create.js +80 -0
- package/dist/commands/commitments/endpoints/delete.d.ts +20 -0
- package/dist/commands/commitments/endpoints/delete.js +57 -0
- package/dist/commands/commitments/endpoints/health.d.ts +22 -0
- package/dist/commands/commitments/endpoints/health.js +54 -0
- package/dist/commands/commitments/endpoints/list.d.ts +18 -0
- package/dist/commands/commitments/endpoints/list.js +41 -0
- package/dist/commands/commitments/endpoints/revoke.d.ts +21 -0
- package/dist/commands/commitments/endpoints/revoke.js +58 -0
- package/dist/commands/commitments/execute-remediation.d.ts +13 -0
- package/dist/commands/commitments/execute-remediation.js +29 -0
- package/dist/commands/commitments/export.d.ts +20 -0
- package/dist/commands/commitments/export.js +45 -0
- package/dist/commands/commitments/feedback.d.ts +25 -0
- package/dist/commands/commitments/feedback.js +59 -0
- package/dist/commands/commitments/fork.d.ts +20 -0
- package/dist/commands/commitments/fork.js +44 -0
- package/dist/commands/commitments/goals/link.d.ts +23 -0
- package/dist/commands/commitments/goals/link.js +41 -0
- package/dist/commands/commitments/goals/unlink.d.ts +19 -0
- package/dist/commands/commitments/goals/unlink.js +37 -0
- package/dist/commands/commitments/hypotheses.d.ts +27 -0
- package/dist/commands/commitments/hypotheses.js +60 -0
- package/dist/commands/commitments/import.d.ts +18 -0
- package/dist/commands/commitments/import.js +57 -0
- package/dist/commands/commitments/ledger.d.ts +21 -0
- package/dist/commands/commitments/ledger.js +49 -0
- package/dist/commands/commitments/lineage.d.ts +20 -0
- package/dist/commands/commitments/lineage.js +43 -0
- package/dist/commands/commitments/links/create.d.ts +15 -0
- package/dist/commands/commitments/links/create.js +58 -0
- package/dist/commands/commitments/links/detach.d.ts +12 -0
- package/dist/commands/commitments/links/detach.js +30 -0
- package/dist/commands/commitments/links/list.d.ts +12 -0
- package/dist/commands/commitments/links/list.js +41 -0
- package/dist/commands/commitments/links/update.d.ts +14 -0
- package/dist/commands/commitments/links/update.js +45 -0
- package/dist/commands/commitments/list.d.ts +21 -0
- package/dist/commands/commitments/list.js +64 -0
- package/dist/commands/commitments/metrics.d.ts +20 -0
- package/dist/commands/commitments/metrics.js +43 -0
- package/dist/commands/commitments/observations.d.ts +31 -0
- package/dist/commands/commitments/observations.js +64 -0
- package/dist/commands/commitments/open.d.ts +13 -0
- package/dist/commands/commitments/open.js +50 -0
- package/dist/commands/commitments/operating-review.d.ts +11 -0
- package/dist/commands/commitments/operating-review.js +99 -0
- package/dist/commands/commitments/pack/bind.d.ts +24 -0
- package/dist/commands/commitments/pack/bind.js +88 -0
- package/dist/commands/commitments/pack/list.d.ts +13 -0
- package/dist/commands/commitments/pack/list.js +52 -0
- package/dist/commands/commitments/pack/plan.d.ts +22 -0
- package/dist/commands/commitments/pack/plan.js +65 -0
- package/dist/commands/commitments/pack/preflight.d.ts +28 -0
- package/dist/commands/commitments/pack/preflight.js +85 -0
- package/dist/commands/commitments/pack/promote.d.ts +19 -0
- package/dist/commands/commitments/pack/promote.js +42 -0
- package/dist/commands/commitments/pack/shadow.d.ts +19 -0
- package/dist/commands/commitments/pack/shadow.js +40 -0
- package/dist/commands/commitments/pause.d.ts +16 -0
- package/dist/commands/commitments/pause.js +36 -0
- package/dist/commands/commitments/plan.d.ts +35 -0
- package/dist/commands/commitments/plan.js +126 -0
- package/dist/commands/commitments/preflight.d.ts +39 -0
- package/dist/commands/commitments/preflight.js +98 -0
- package/dist/commands/commitments/propose-remediation.d.ts +13 -0
- package/dist/commands/commitments/propose-remediation.js +40 -0
- package/dist/commands/commitments/reflect.d.ts +21 -0
- package/dist/commands/commitments/reflect.js +66 -0
- package/dist/commands/commitments/reflection-decision.d.ts +13 -0
- package/dist/commands/commitments/reflection-decision.js +37 -0
- package/dist/commands/commitments/reflection.d.ts +11 -0
- package/dist/commands/commitments/reflection.js +25 -0
- package/dist/commands/commitments/remediate.d.ts +30 -0
- package/dist/commands/commitments/remediate.js +65 -0
- package/dist/commands/commitments/remediation-proposal.d.ts +12 -0
- package/dist/commands/commitments/remediation-proposal.js +26 -0
- package/dist/commands/commitments/remediation-proposals.d.ts +14 -0
- package/dist/commands/commitments/remediation-proposals.js +34 -0
- package/dist/commands/commitments/reports.d.ts +26 -0
- package/dist/commands/commitments/reports.js +125 -0
- package/dist/commands/commitments/resume.d.ts +17 -0
- package/dist/commands/commitments/resume.js +37 -0
- package/dist/commands/commitments/show.d.ts +20 -0
- package/dist/commands/commitments/show.js +58 -0
- package/dist/commands/commitments/subject.d.ts +30 -0
- package/dist/commands/commitments/subject.js +115 -0
- package/dist/commands/commitments/trace.d.ts +18 -0
- package/dist/commands/commitments/trace.js +44 -0
- package/dist/commands/commitments/trigger-status.d.ts +27 -0
- package/dist/commands/commitments/trigger-status.js +111 -0
- package/dist/commands/commitments/update.d.ts +43 -0
- package/dist/commands/commitments/update.js +194 -0
- package/dist/commands/commitments/wake-capabilities.d.ts +22 -0
- package/dist/commands/commitments/wake-capabilities.js +61 -0
- package/dist/commands/compass/archive.d.ts +23 -0
- package/dist/commands/compass/archive.js +64 -0
- package/dist/commands/compass/commitments.d.ts +20 -0
- package/dist/commands/compass/commitments.js +58 -0
- package/dist/commands/compass/create.d.ts +39 -0
- package/dist/commands/compass/create.js +91 -0
- package/dist/commands/compass/list.d.ts +18 -0
- package/dist/commands/compass/list.js +45 -0
- package/dist/commands/compass/revert.d.ts +23 -0
- package/dist/commands/compass/revert.js +56 -0
- package/dist/commands/compass/revisions.d.ts +20 -0
- package/dist/commands/compass/revisions.js +46 -0
- package/dist/commands/compass/show.d.ts +21 -0
- package/dist/commands/compass/show.js +49 -0
- package/dist/commands/compass/tactic.d.ts +23 -0
- package/dist/commands/compass/tactic.js +53 -0
- package/dist/commands/compass/trace.d.ts +18 -0
- package/dist/commands/compass/trace.js +41 -0
- package/dist/commands/compass/update.d.ts +30 -0
- package/dist/commands/compass/update.js +82 -0
- package/dist/commands/completion/index.d.ts +13 -0
- package/dist/commands/completion/index.js +59 -0
- package/dist/commands/completion/script.d.ts +9 -0
- package/dist/commands/completion/script.js +24 -0
- package/dist/commands/completion/values.d.ts +10 -0
- package/dist/commands/completion/values.js +27 -0
- package/dist/commands/context.d.ts +10 -0
- package/dist/commands/context.js +130 -0
- package/dist/commands/convos/archive.d.ts +12 -0
- package/dist/commands/convos/archive.js +38 -0
- package/dist/commands/convos/delete.d.ts +12 -0
- package/dist/commands/convos/delete.js +49 -0
- package/dist/commands/convos/duplicate.d.ts +13 -0
- package/dist/commands/convos/duplicate.js +42 -0
- package/dist/commands/convos/fork.d.ts +16 -0
- package/dist/commands/convos/fork.js +56 -0
- package/dist/commands/convos/handover.d.ts +29 -0
- package/dist/commands/convos/handover.js +120 -0
- package/dist/commands/convos/import.d.ts +12 -0
- package/dist/commands/convos/import.js +101 -0
- package/dist/commands/convos/list.d.ts +16 -0
- package/dist/commands/convos/list.js +129 -0
- package/dist/commands/convos/messages.d.ts +30 -0
- package/dist/commands/convos/messages.js +97 -0
- package/dist/commands/convos/search.d.ts +27 -0
- package/dist/commands/convos/search.js +88 -0
- package/dist/commands/convos/show.d.ts +33 -0
- package/dist/commands/convos/show.js +118 -0
- package/dist/commands/convos/unarchive.d.ts +12 -0
- package/dist/commands/convos/unarchive.js +38 -0
- package/dist/commands/convos/update.d.ts +14 -0
- package/dist/commands/convos/update.js +59 -0
- package/dist/commands/create-token.d.ts +53 -0
- package/dist/commands/create-token.js +150 -0
- package/dist/commands/daemon/byok.d.ts +12 -0
- package/dist/commands/daemon/byok.js +33 -0
- package/dist/commands/daemon/index.d.ts +13 -0
- package/dist/commands/daemon/index.js +40 -0
- package/dist/commands/daemon/install.d.ts +18 -0
- package/dist/commands/daemon/install.js +35 -0
- package/dist/commands/daemon/logs.d.ts +60 -0
- package/dist/commands/daemon/logs.js +177 -0
- package/dist/commands/daemon/start.d.ts +6 -0
- package/dist/commands/daemon/start.js +23 -0
- package/dist/commands/daemon/status.d.ts +6 -0
- package/dist/commands/daemon/status.js +23 -0
- package/dist/commands/daemon/stop.d.ts +6 -0
- package/dist/commands/daemon/stop.js +23 -0
- package/dist/commands/daemon/uninstall.d.ts +18 -0
- package/dist/commands/daemon/uninstall.js +35 -0
- package/dist/commands/daemon/usage.d.ts +13 -0
- package/dist/commands/daemon/usage.js +68 -0
- package/dist/commands/daemons.d.ts +11 -0
- package/dist/commands/daemons.js +17 -0
- package/dist/commands/dm/list.d.ts +9 -0
- package/dist/commands/dm/list.js +46 -0
- package/dist/commands/dm/messages.d.ts +14 -0
- package/dist/commands/dm/messages.js +130 -0
- package/dist/commands/dm/show.d.ts +13 -0
- package/dist/commands/dm/show.js +74 -0
- package/dist/commands/dm/thread/broadcast.d.ts +29 -0
- package/dist/commands/dm/thread/broadcast.js +117 -0
- package/dist/commands/dm/thread/follow.d.ts +17 -0
- package/dist/commands/dm/thread/follow.js +90 -0
- package/dist/commands/dm/thread/messages.d.ts +18 -0
- package/dist/commands/dm/thread/messages.js +110 -0
- package/dist/commands/dm/thread/mute.d.ts +17 -0
- package/dist/commands/dm/thread/mute.js +88 -0
- package/dist/commands/dm/thread/share.d.ts +16 -0
- package/dist/commands/dm/thread/share.js +85 -0
- package/dist/commands/dm/thread/show.d.ts +16 -0
- package/dist/commands/dm/thread/show.js +88 -0
- package/dist/commands/dm/threads.d.ts +17 -0
- package/dist/commands/dm/threads.js +92 -0
- package/dist/commands/doctor.d.ts +37 -0
- package/dist/commands/doctor.js +378 -0
- package/dist/commands/engagement/annotate.d.ts +15 -0
- package/dist/commands/engagement/annotate.js +69 -0
- package/dist/commands/engagement/continue.d.ts +13 -0
- package/dist/commands/engagement/continue.js +50 -0
- package/dist/commands/engagement/react.d.ts +14 -0
- package/dist/commands/engagement/react.js +56 -0
- package/dist/commands/engagement/reactions.d.ts +13 -0
- package/dist/commands/engagement/reactions.js +68 -0
- package/dist/commands/engagement/share.d.ts +16 -0
- package/dist/commands/engagement/share.js +67 -0
- package/dist/commands/feeds/create.d.ts +15 -0
- package/dist/commands/feeds/create.js +56 -0
- package/dist/commands/feeds/delete.d.ts +12 -0
- package/dist/commands/feeds/delete.js +49 -0
- package/dist/commands/feeds/list.d.ts +12 -0
- package/dist/commands/feeds/list.js +76 -0
- package/dist/commands/feeds/update.d.ts +16 -0
- package/dist/commands/feeds/update.js +61 -0
- package/dist/commands/generate-recovery-code.d.ts +24 -0
- package/dist/commands/generate-recovery-code.js +78 -0
- package/dist/commands/github/allow-tools.d.ts +16 -0
- package/dist/commands/github/allow-tools.js +80 -0
- package/dist/commands/github/app/install.d.ts +25 -0
- package/dist/commands/github/app/install.js +54 -0
- package/dist/commands/github/app/status.d.ts +19 -0
- package/dist/commands/github/app/status.js +67 -0
- package/dist/commands/github/connect.d.ts +29 -0
- package/dist/commands/github/connect.js +109 -0
- package/dist/commands/github/connections.d.ts +14 -0
- package/dist/commands/github/connections.js +62 -0
- package/dist/commands/github/disconnect.d.ts +14 -0
- package/dist/commands/github/disconnect.js +50 -0
- package/dist/commands/github/finalize.d.ts +18 -0
- package/dist/commands/github/finalize.js +64 -0
- package/dist/commands/github/reconnect.d.ts +16 -0
- package/dist/commands/github/reconnect.js +94 -0
- package/dist/commands/github/run.d.ts +20 -0
- package/dist/commands/github/run.js +104 -0
- package/dist/commands/github/tools.d.ts +19 -0
- package/dist/commands/github/tools.js +82 -0
- package/dist/commands/goals/archive.d.ts +13 -0
- package/dist/commands/goals/archive.js +41 -0
- package/dist/commands/goals/briefing/disable.d.ts +9 -0
- package/dist/commands/goals/briefing/disable.js +32 -0
- package/dist/commands/goals/briefing/enable.d.ts +10 -0
- package/dist/commands/goals/briefing/enable.js +35 -0
- package/dist/commands/goals/briefing/preview.d.ts +9 -0
- package/dist/commands/goals/briefing/preview.js +40 -0
- package/dist/commands/goals/create.d.ts +20 -0
- package/dist/commands/goals/create.js +139 -0
- package/dist/commands/goals/delete.d.ts +12 -0
- package/dist/commands/goals/delete.js +45 -0
- package/dist/commands/goals/descendants.d.ts +13 -0
- package/dist/commands/goals/descendants.js +76 -0
- package/dist/commands/goals/key-results/create.d.ts +26 -0
- package/dist/commands/goals/key-results/create.js +83 -0
- package/dist/commands/goals/key-results/delete.d.ts +18 -0
- package/dist/commands/goals/key-results/delete.js +41 -0
- package/dist/commands/goals/key-results/list.d.ts +21 -0
- package/dist/commands/goals/key-results/list.js +73 -0
- package/dist/commands/goals/key-results/show.d.ts +19 -0
- package/dist/commands/goals/key-results/show.js +56 -0
- package/dist/commands/goals/key-results/update.d.ts +27 -0
- package/dist/commands/goals/key-results/update.js +92 -0
- package/dist/commands/goals/labels/add.d.ts +13 -0
- package/dist/commands/goals/labels/add.js +42 -0
- package/dist/commands/goals/labels/list.d.ts +12 -0
- package/dist/commands/goals/labels/list.js +72 -0
- package/dist/commands/goals/labels/remove.d.ts +13 -0
- package/dist/commands/goals/labels/remove.js +38 -0
- package/dist/commands/goals/list.d.ts +17 -0
- package/dist/commands/goals/list.js +112 -0
- package/dist/commands/goals/open.d.ts +13 -0
- package/dist/commands/goals/open.js +42 -0
- package/dist/commands/goals/plan-now.d.ts +25 -0
- package/dist/commands/goals/plan-now.js +68 -0
- package/dist/commands/goals/planner-config.d.ts +30 -0
- package/dist/commands/goals/planner-config.js +102 -0
- package/dist/commands/goals/revisions.d.ts +12 -0
- package/dist/commands/goals/revisions.js +54 -0
- package/dist/commands/goals/show.d.ts +12 -0
- package/dist/commands/goals/show.js +53 -0
- package/dist/commands/goals/tasks.d.ts +15 -0
- package/dist/commands/goals/tasks.js +106 -0
- package/dist/commands/goals/update.d.ts +26 -0
- package/dist/commands/goals/update.js +116 -0
- package/dist/commands/google-chat/list-channels.d.ts +11 -0
- package/dist/commands/google-chat/list-channels.js +14 -0
- package/dist/commands/google-chat/list-users.d.ts +12 -0
- package/dist/commands/google-chat/list-users.js +19 -0
- package/dist/commands/google-chat/read-channel.d.ts +13 -0
- package/dist/commands/google-chat/read-channel.js +20 -0
- package/dist/commands/google-chat/read-thread.d.ts +14 -0
- package/dist/commands/google-chat/read-thread.js +23 -0
- package/dist/commands/google-chat/run.d.ts +15 -0
- package/dist/commands/google-chat/run.js +17 -0
- package/dist/commands/google-chat/search.d.ts +13 -0
- package/dist/commands/google-chat/search.js +21 -0
- package/dist/commands/google-chat/send-as-agent.d.ts +16 -0
- package/dist/commands/google-chat/send-as-agent.js +23 -0
- package/dist/commands/google-chat/tools.d.ts +10 -0
- package/dist/commands/google-chat/tools.js +14 -0
- package/dist/commands/grants/create.d.ts +30 -0
- package/dist/commands/grants/create.js +84 -0
- package/dist/commands/grants/delete.d.ts +13 -0
- package/dist/commands/grants/delete.js +27 -0
- package/dist/commands/grants/list.d.ts +18 -0
- package/dist/commands/grants/list.js +41 -0
- package/dist/commands/grants/revoke.d.ts +19 -0
- package/dist/commands/grants/revoke.js +36 -0
- package/dist/commands/grants/rotate.d.ts +19 -0
- package/dist/commands/grants/rotate.js +47 -0
- package/dist/commands/harnesses/alias.d.ts +21 -0
- package/dist/commands/harnesses/alias.js +50 -0
- package/dist/commands/harnesses/forget.d.ts +20 -0
- package/dist/commands/harnesses/forget.js +59 -0
- package/dist/commands/harnesses/grants/add.d.ts +28 -0
- package/dist/commands/harnesses/grants/add.js +87 -0
- package/dist/commands/harnesses/grants/list.d.ts +14 -0
- package/dist/commands/harnesses/grants/list.js +60 -0
- package/dist/commands/harnesses/grants/revoke.d.ts +14 -0
- package/dist/commands/harnesses/grants/revoke.js +41 -0
- package/dist/commands/harnesses/install-token.d.ts +21 -0
- package/dist/commands/harnesses/install-token.js +48 -0
- package/dist/commands/harnesses/leases/action.d.ts +21 -0
- package/dist/commands/harnesses/leases/action.js +69 -0
- package/dist/commands/harnesses/leases/billing.d.ts +21 -0
- package/dist/commands/harnesses/leases/billing.js +66 -0
- package/dist/commands/harnesses/leases/list.d.ts +9 -0
- package/dist/commands/harnesses/leases/list.js +60 -0
- package/dist/commands/harnesses/leases/release.d.ts +21 -0
- package/dist/commands/harnesses/leases/release.js +59 -0
- package/dist/commands/harnesses/leases/show.d.ts +12 -0
- package/dist/commands/harnesses/leases/show.js +84 -0
- package/dist/commands/harnesses/list.d.ts +144 -0
- package/dist/commands/harnesses/list.js +247 -0
- package/dist/commands/harnesses/models.d.ts +19 -0
- package/dist/commands/harnesses/models.js +63 -0
- package/dist/commands/harnesses/ping.d.ts +22 -0
- package/dist/commands/harnesses/ping.js +108 -0
- package/dist/commands/harnesses/products.d.ts +9 -0
- package/dist/commands/harnesses/products.js +63 -0
- package/dist/commands/harnesses/quota.d.ts +47 -0
- package/dist/commands/harnesses/quota.js +208 -0
- package/dist/commands/harnesses/set-default.d.ts +21 -0
- package/dist/commands/harnesses/set-default.js +47 -0
- package/dist/commands/harnesses/show.d.ts +12 -0
- package/dist/commands/harnesses/show.js +60 -0
- package/dist/commands/harnesses/update.d.ts +25 -0
- package/dist/commands/harnesses/update.js +63 -0
- package/dist/commands/harnesses/usage.d.ts +47 -0
- package/dist/commands/harnesses/usage.js +128 -0
- package/dist/commands/inbox/index.d.ts +36 -0
- package/dist/commands/inbox/index.js +258 -0
- package/dist/commands/ingress/create.d.ts +22 -0
- package/dist/commands/ingress/create.js +68 -0
- package/dist/commands/ingress/delete.d.ts +13 -0
- package/dist/commands/ingress/delete.js +25 -0
- package/dist/commands/ingress/list.d.ts +15 -0
- package/dist/commands/ingress/list.js +32 -0
- package/dist/commands/ingress/rotate.d.ts +13 -0
- package/dist/commands/ingress/rotate.js +33 -0
- package/dist/commands/initiatives/decide.d.ts +25 -0
- package/dist/commands/initiatives/decide.js +111 -0
- package/dist/commands/initiatives/list.d.ts +20 -0
- package/dist/commands/initiatives/list.js +69 -0
- package/dist/commands/instructions/activate.d.ts +12 -0
- package/dist/commands/instructions/activate.js +30 -0
- package/dist/commands/instructions/archive-version.d.ts +12 -0
- package/dist/commands/instructions/archive-version.js +30 -0
- package/dist/commands/instructions/create.d.ts +13 -0
- package/dist/commands/instructions/create.js +48 -0
- package/dist/commands/instructions/delete.d.ts +12 -0
- package/dist/commands/instructions/delete.js +34 -0
- package/dist/commands/instructions/diff.d.ts +22 -0
- package/dist/commands/instructions/diff.js +81 -0
- package/dist/commands/instructions/install.d.ts +17 -0
- package/dist/commands/instructions/install.js +122 -0
- package/dist/commands/instructions/list.d.ts +10 -0
- package/dist/commands/instructions/list.js +46 -0
- package/dist/commands/instructions/purge-target.d.ts +13 -0
- package/dist/commands/instructions/purge-target.js +44 -0
- package/dist/commands/instructions/remove.d.ts +11 -0
- package/dist/commands/instructions/remove.js +33 -0
- package/dist/commands/instructions/restore-target.d.ts +11 -0
- package/dist/commands/instructions/restore-target.js +27 -0
- package/dist/commands/instructions/restore.d.ts +11 -0
- package/dist/commands/instructions/restore.js +27 -0
- package/dist/commands/instructions/show.d.ts +12 -0
- package/dist/commands/instructions/show.js +72 -0
- package/dist/commands/instructions/status.d.ts +9 -0
- package/dist/commands/instructions/status.js +103 -0
- package/dist/commands/instructions/update-target.d.ts +15 -0
- package/dist/commands/instructions/update-target.js +42 -0
- package/dist/commands/instructions/update.d.ts +17 -0
- package/dist/commands/instructions/update.js +66 -0
- package/dist/commands/integrations/connections/connect.d.ts +19 -0
- package/dist/commands/integrations/connections/connect.js +136 -0
- package/dist/commands/integrations/connections/disconnect.d.ts +17 -0
- package/dist/commands/integrations/connections/disconnect.js +57 -0
- package/dist/commands/integrations/connections/finalize.d.ts +18 -0
- package/dist/commands/integrations/connections/finalize.js +65 -0
- package/dist/commands/integrations/connections/list.d.ts +14 -0
- package/dist/commands/integrations/connections/list.js +62 -0
- package/dist/commands/integrations/connections/reconnect.d.ts +19 -0
- package/dist/commands/integrations/connections/reconnect.js +112 -0
- package/dist/commands/integrations/execute.d.ts +20 -0
- package/dist/commands/integrations/execute.js +97 -0
- package/dist/commands/integrations/search.d.ts +18 -0
- package/dist/commands/integrations/search.js +72 -0
- package/dist/commands/integrations/toolkits.d.ts +13 -0
- package/dist/commands/integrations/toolkits.js +51 -0
- package/dist/commands/integrations/tools/allow.d.ts +18 -0
- package/dist/commands/integrations/tools/allow.js +75 -0
- package/dist/commands/integrations/tools/list.d.ts +15 -0
- package/dist/commands/integrations/tools/list.js +65 -0
- package/dist/commands/labels/archive.d.ts +12 -0
- package/dist/commands/labels/archive.js +37 -0
- package/dist/commands/labels/create.d.ts +17 -0
- package/dist/commands/labels/create.js +74 -0
- package/dist/commands/labels/delete.d.ts +13 -0
- package/dist/commands/labels/delete.js +44 -0
- package/dist/commands/labels/list.d.ts +13 -0
- package/dist/commands/labels/list.js +75 -0
- package/dist/commands/labels/palette.d.ts +9 -0
- package/dist/commands/labels/palette.js +39 -0
- package/dist/commands/labels/reorder.d.ts +12 -0
- package/dist/commands/labels/reorder.js +57 -0
- package/dist/commands/labels/restore.d.ts +12 -0
- package/dist/commands/labels/restore.js +39 -0
- package/dist/commands/labels/update.d.ts +20 -0
- package/dist/commands/labels/update.js +94 -0
- package/dist/commands/lark/list-channels.d.ts +11 -0
- package/dist/commands/lark/list-channels.js +14 -0
- package/dist/commands/lark/list-users.d.ts +12 -0
- package/dist/commands/lark/list-users.js +19 -0
- package/dist/commands/lark/read-channel.d.ts +13 -0
- package/dist/commands/lark/read-channel.js +20 -0
- package/dist/commands/lark/read-thread.d.ts +14 -0
- package/dist/commands/lark/read-thread.js +23 -0
- package/dist/commands/lark/run.d.ts +15 -0
- package/dist/commands/lark/run.js +17 -0
- package/dist/commands/lark/search.d.ts +13 -0
- package/dist/commands/lark/search.js +21 -0
- package/dist/commands/lark/send-as-agent.d.ts +16 -0
- package/dist/commands/lark/send-as-agent.js +23 -0
- package/dist/commands/lark/tools.d.ts +10 -0
- package/dist/commands/lark/tools.js +14 -0
- package/dist/commands/list-daemons.d.ts +57 -0
- package/dist/commands/list-daemons.js +140 -0
- package/dist/commands/list-tokens.d.ts +17 -0
- package/dist/commands/list-tokens.js +80 -0
- package/dist/commands/login.d.ts +69 -0
- package/dist/commands/login.js +243 -0
- package/dist/commands/logout.d.ts +74 -0
- package/dist/commands/logout.js +260 -0
- package/dist/commands/machines/disconnect.d.ts +21 -0
- package/dist/commands/machines/disconnect.js +69 -0
- package/dist/commands/machines/hosted/connect.d.ts +14 -0
- package/dist/commands/machines/hosted/connect.js +92 -0
- package/dist/commands/machines/hosted/destroy.d.ts +13 -0
- package/dist/commands/machines/hosted/destroy.js +43 -0
- package/dist/commands/machines/hosted/exec.d.ts +30 -0
- package/dist/commands/machines/hosted/exec.js +130 -0
- package/dist/commands/machines/hosted/index.d.ts +6 -0
- package/dist/commands/machines/hosted/index.js +26 -0
- package/dist/commands/machines/hosted/list.d.ts +25 -0
- package/dist/commands/machines/hosted/list.js +98 -0
- package/dist/commands/machines/hosted/pause.d.ts +13 -0
- package/dist/commands/machines/hosted/pause.js +43 -0
- package/dist/commands/machines/hosted/pull.d.ts +19 -0
- package/dist/commands/machines/hosted/pull.js +271 -0
- package/dist/commands/machines/hosted/resume.d.ts +16 -0
- package/dist/commands/machines/hosted/resume.js +62 -0
- package/dist/commands/machines/hosted/start.d.ts +27 -0
- package/dist/commands/machines/hosted/start.js +187 -0
- package/dist/commands/machines/hosted/status.d.ts +17 -0
- package/dist/commands/machines/hosted/status.js +88 -0
- package/dist/commands/machines/list.d.ts +13 -0
- package/dist/commands/machines/list.js +60 -0
- package/dist/commands/machines/show.d.ts +13 -0
- package/dist/commands/machines/show.js +99 -0
- package/dist/commands/machines/update.d.ts +24 -0
- package/dist/commands/machines/update.js +82 -0
- package/dist/commands/measures/confirm.d.ts +21 -0
- package/dist/commands/measures/confirm.js +51 -0
- package/dist/commands/measures/create.d.ts +24 -0
- package/dist/commands/measures/create.js +65 -0
- package/dist/commands/measures/list.d.ts +19 -0
- package/dist/commands/measures/list.js +44 -0
- package/dist/commands/measures/record.d.ts +24 -0
- package/dist/commands/measures/record.js +64 -0
- package/dist/commands/measures/tasks.d.ts +27 -0
- package/dist/commands/measures/tasks.js +84 -0
- package/dist/commands/memory/commit.d.ts +14 -0
- package/dist/commands/memory/commit.js +37 -0
- package/dist/commands/memory/context.d.ts +16 -0
- package/dist/commands/memory/context.js +42 -0
- package/dist/commands/memory/daily-log.d.ts +13 -0
- package/dist/commands/memory/daily-log.js +84 -0
- package/dist/commands/memory/delete.d.ts +15 -0
- package/dist/commands/memory/delete.js +50 -0
- package/dist/commands/memory/list.d.ts +12 -0
- package/dist/commands/memory/list.js +53 -0
- package/dist/commands/memory/maintain.d.ts +14 -0
- package/dist/commands/memory/maintain.js +58 -0
- package/dist/commands/memory/observe.d.ts +18 -0
- package/dist/commands/memory/observe.js +51 -0
- package/dist/commands/memory/preferences.d.ts +11 -0
- package/dist/commands/memory/preferences.js +44 -0
- package/dist/commands/memory/read.d.ts +14 -0
- package/dist/commands/memory/read.js +43 -0
- package/dist/commands/memory/rebuild.d.ts +12 -0
- package/dist/commands/memory/rebuild.js +38 -0
- package/dist/commands/memory/save.d.ts +15 -0
- package/dist/commands/memory/save.js +72 -0
- package/dist/commands/memory/search.d.ts +17 -0
- package/dist/commands/memory/search.js +68 -0
- package/dist/commands/memory/show.d.ts +15 -0
- package/dist/commands/memory/show.js +48 -0
- package/dist/commands/memory/tree.d.ts +10 -0
- package/dist/commands/memory/tree.js +40 -0
- package/dist/commands/memory/update.d.ts +17 -0
- package/dist/commands/memory/update.js +42 -0
- package/dist/commands/messages/edit-artifact.d.ts +16 -0
- package/dist/commands/messages/edit-artifact.js +63 -0
- package/dist/commands/messages/feedback.d.ts +17 -0
- package/dist/commands/messages/feedback.js +66 -0
- package/dist/commands/messages/list.d.ts +38 -0
- package/dist/commands/messages/list.js +149 -0
- package/dist/commands/messages/show.d.ts +17 -0
- package/dist/commands/messages/show.js +79 -0
- package/dist/commands/messages/update-content.d.ts +15 -0
- package/dist/commands/messages/update-content.js +43 -0
- package/dist/commands/messages/update.d.ts +15 -0
- package/dist/commands/messages/update.js +44 -0
- package/dist/commands/northstars/create.d.ts +29 -0
- package/dist/commands/northstars/create.js +107 -0
- package/dist/commands/northstars/delete.d.ts +25 -0
- package/dist/commands/northstars/delete.js +75 -0
- package/dist/commands/northstars/governance/configure.d.ts +37 -0
- package/dist/commands/northstars/governance/configure.js +189 -0
- package/dist/commands/northstars/governance/show.d.ts +22 -0
- package/dist/commands/northstars/governance/show.js +45 -0
- package/dist/commands/northstars/intents/decide.d.ts +25 -0
- package/dist/commands/northstars/intents/decide.js +71 -0
- package/dist/commands/northstars/intents/list.d.ts +22 -0
- package/dist/commands/northstars/intents/list.js +52 -0
- package/dist/commands/northstars/link.d.ts +23 -0
- package/dist/commands/northstars/link.js +54 -0
- package/dist/commands/northstars/list.d.ts +18 -0
- package/dist/commands/northstars/list.js +42 -0
- package/dist/commands/northstars/recommendations/apply.d.ts +21 -0
- package/dist/commands/northstars/recommendations/apply.js +53 -0
- package/dist/commands/northstars/recommendations/dismiss.d.ts +21 -0
- package/dist/commands/northstars/recommendations/dismiss.js +45 -0
- package/dist/commands/northstars/recommendations/list.d.ts +22 -0
- package/dist/commands/northstars/recommendations/list.js +50 -0
- package/dist/commands/northstars/review-now.d.ts +21 -0
- package/dist/commands/northstars/review-now.js +62 -0
- package/dist/commands/northstars/reviews.d.ts +23 -0
- package/dist/commands/northstars/reviews.js +83 -0
- package/dist/commands/northstars/show.d.ts +25 -0
- package/dist/commands/northstars/show.js +57 -0
- package/dist/commands/northstars/unlink.d.ts +21 -0
- package/dist/commands/northstars/unlink.js +39 -0
- package/dist/commands/northstars/update.d.ts +32 -0
- package/dist/commands/northstars/update.js +114 -0
- package/dist/commands/outbox/drop.d.ts +20 -0
- package/dist/commands/outbox/drop.js +46 -0
- package/dist/commands/outbox/list.d.ts +22 -0
- package/dist/commands/outbox/list.js +85 -0
- package/dist/commands/outbox/retry.d.ts +39 -0
- package/dist/commands/outbox/retry.js +154 -0
- package/dist/commands/pair.d.ts +67 -0
- package/dist/commands/pair.js +351 -0
- package/dist/commands/payments/wallet.d.ts +10 -0
- package/dist/commands/payments/wallet.js +81 -0
- package/dist/commands/projects/activity.d.ts +25 -0
- package/dist/commands/projects/activity.js +80 -0
- package/dist/commands/projects/archive.d.ts +19 -0
- package/dist/commands/projects/archive.js +55 -0
- package/dist/commands/projects/create.d.ts +19 -0
- package/dist/commands/projects/create.js +76 -0
- package/dist/commands/projects/delete.d.ts +19 -0
- package/dist/commands/projects/delete.js +73 -0
- package/dist/commands/projects/docs/attach.d.ts +23 -0
- package/dist/commands/projects/docs/attach.js +65 -0
- package/dist/commands/projects/docs/detach.d.ts +23 -0
- package/dist/commands/projects/docs/detach.js +65 -0
- package/dist/commands/projects/docs/list.d.ts +22 -0
- package/dist/commands/projects/docs/list.js +67 -0
- package/dist/commands/projects/goals.d.ts +26 -0
- package/dist/commands/projects/goals.js +101 -0
- package/dist/commands/projects/list.d.ts +26 -0
- package/dist/commands/projects/list.js +102 -0
- package/dist/commands/projects/members.d.ts +16 -0
- package/dist/commands/projects/members.js +43 -0
- package/dist/commands/projects/open.d.ts +14 -0
- package/dist/commands/projects/open.js +44 -0
- package/dist/commands/projects/overview.d.ts +29 -0
- package/dist/commands/projects/overview.js +83 -0
- package/dist/commands/projects/promote.d.ts +30 -0
- package/dist/commands/projects/promote.js +84 -0
- package/dist/commands/projects/reorder.d.ts +13 -0
- package/dist/commands/projects/reorder.js +32 -0
- package/dist/commands/projects/revisions.d.ts +14 -0
- package/dist/commands/projects/revisions.js +42 -0
- package/dist/commands/projects/show.d.ts +22 -0
- package/dist/commands/projects/show.js +65 -0
- package/dist/commands/projects/summary.d.ts +12 -0
- package/dist/commands/projects/summary.js +30 -0
- package/dist/commands/projects/tasks.d.ts +28 -0
- package/dist/commands/projects/tasks.js +84 -0
- package/dist/commands/projects/update.d.ts +22 -0
- package/dist/commands/projects/update.js +73 -0
- package/dist/commands/projects/updates/add.d.ts +20 -0
- package/dist/commands/projects/updates/add.js +69 -0
- package/dist/commands/projects/updates/archive.d.ts +13 -0
- package/dist/commands/projects/updates/archive.js +33 -0
- package/dist/commands/projects/updates/cadence.d.ts +19 -0
- package/dist/commands/projects/updates/cadence.js +73 -0
- package/dist/commands/projects/updates/draft.d.ts +15 -0
- package/dist/commands/projects/updates/draft.js +38 -0
- package/dist/commands/projects/updates/edit.d.ts +19 -0
- package/dist/commands/projects/updates/edit.js +80 -0
- package/dist/commands/projects/updates/list.d.ts +14 -0
- package/dist/commands/projects/updates/list.js +53 -0
- package/dist/commands/projects/updates/post.d.ts +16 -0
- package/dist/commands/projects/updates/post.js +39 -0
- package/dist/commands/projects/updates/show.d.ts +13 -0
- package/dist/commands/projects/updates/show.js +43 -0
- package/dist/commands/projects/upsert.d.ts +19 -0
- package/dist/commands/projects/upsert.js +68 -0
- package/dist/commands/requests/cancel.d.ts +12 -0
- package/dist/commands/requests/cancel.js +46 -0
- package/dist/commands/requests/comments/add.d.ts +15 -0
- package/dist/commands/requests/comments/add.js +61 -0
- package/dist/commands/requests/comments/delete.d.ts +13 -0
- package/dist/commands/requests/comments/delete.js +53 -0
- package/dist/commands/requests/comments/list.d.ts +13 -0
- package/dist/commands/requests/comments/list.js +56 -0
- package/dist/commands/requests/create.d.ts +18 -0
- package/dist/commands/requests/create.js +78 -0
- package/dist/commands/requests/list.d.ts +11 -0
- package/dist/commands/requests/list.js +58 -0
- package/dist/commands/requests/pending.d.ts +9 -0
- package/dist/commands/requests/pending.js +33 -0
- package/dist/commands/requests/resolve.d.ts +24 -0
- package/dist/commands/requests/resolve.js +99 -0
- package/dist/commands/requests/show.d.ts +12 -0
- package/dist/commands/requests/show.js +57 -0
- package/dist/commands/revoke-daemon.d.ts +38 -0
- package/dist/commands/revoke-daemon.js +142 -0
- package/dist/commands/revoke-token.d.ts +23 -0
- package/dist/commands/revoke-token.js +93 -0
- package/dist/commands/search/agents.d.ts +38 -0
- package/dist/commands/search/agents.js +105 -0
- package/dist/commands/search/all.d.ts +40 -0
- package/dist/commands/search/all.js +144 -0
- package/dist/commands/search/skills.d.ts +12 -0
- package/dist/commands/search/skills.js +72 -0
- package/dist/commands/search/spaces.d.ts +27 -0
- package/dist/commands/search/spaces.js +84 -0
- package/dist/commands/search/tasks.d.ts +33 -0
- package/dist/commands/search/tasks.js +90 -0
- package/dist/commands/search/teams.d.ts +11 -0
- package/dist/commands/search/teams.js +69 -0
- package/dist/commands/set-capabilities.d.ts +26 -0
- package/dist/commands/set-capabilities.js +130 -0
- package/dist/commands/shares/create.d.ts +13 -0
- package/dist/commands/shares/create.js +40 -0
- package/dist/commands/shares/delete.d.ts +12 -0
- package/dist/commands/shares/delete.js +43 -0
- package/dist/commands/shares/get.d.ts +12 -0
- package/dist/commands/shares/get.js +64 -0
- package/dist/commands/shares/link-for.d.ts +12 -0
- package/dist/commands/shares/link-for.js +40 -0
- package/dist/commands/shares/list.d.ts +15 -0
- package/dist/commands/shares/list.js +84 -0
- package/dist/commands/shares/update.d.ts +12 -0
- package/dist/commands/shares/update.js +35 -0
- package/dist/commands/shortcuts/create.d.ts +19 -0
- package/dist/commands/shortcuts/create.js +140 -0
- package/dist/commands/shortcuts/delete.d.ts +12 -0
- package/dist/commands/shortcuts/delete.js +45 -0
- package/dist/commands/shortcuts/list.d.ts +10 -0
- package/dist/commands/shortcuts/list.js +56 -0
- package/dist/commands/shortcuts/reorder.d.ts +14 -0
- package/dist/commands/shortcuts/reorder.js +37 -0
- package/dist/commands/shortcuts/show.d.ts +12 -0
- package/dist/commands/shortcuts/show.js +79 -0
- package/dist/commands/shortcuts/trigger.d.ts +12 -0
- package/dist/commands/shortcuts/trigger.js +53 -0
- package/dist/commands/shortcuts/update.d.ts +21 -0
- package/dist/commands/shortcuts/update.js +144 -0
- package/dist/commands/skills/browse.d.ts +21 -0
- package/dist/commands/skills/browse.js +87 -0
- package/dist/commands/skills/categories.d.ts +11 -0
- package/dist/commands/skills/categories.js +58 -0
- package/dist/commands/skills/details.d.ts +12 -0
- package/dist/commands/skills/details.js +49 -0
- package/dist/commands/skills/duplicate.d.ts +21 -0
- package/dist/commands/skills/duplicate.js +52 -0
- package/dist/commands/skills/featured.d.ts +22 -0
- package/dist/commands/skills/featured.js +61 -0
- package/dist/commands/skills/install.d.ts +14 -0
- package/dist/commands/skills/install.js +60 -0
- package/dist/commands/skills/invocable.d.ts +21 -0
- package/dist/commands/skills/invocable.js +73 -0
- package/dist/commands/skills/library.d.ts +12 -0
- package/dist/commands/skills/library.js +73 -0
- package/dist/commands/skills/search.d.ts +12 -0
- package/dist/commands/skills/search.js +62 -0
- package/dist/commands/slack/list-channels.d.ts +15 -0
- package/dist/commands/slack/list-channels.js +84 -0
- package/dist/commands/slack/list-usergroups.d.ts +12 -0
- package/dist/commands/slack/list-usergroups.js +66 -0
- package/dist/commands/slack/list-users.d.ts +15 -0
- package/dist/commands/slack/list-users.js +80 -0
- package/dist/commands/slack/read-channel.d.ts +16 -0
- package/dist/commands/slack/read-channel.js +76 -0
- package/dist/commands/slack/read-thread.d.ts +15 -0
- package/dist/commands/slack/read-thread.js +76 -0
- package/dist/commands/slack/run.d.ts +15 -0
- package/dist/commands/slack/run.js +119 -0
- package/dist/commands/slack/search.d.ts +16 -0
- package/dist/commands/slack/search.js +90 -0
- package/dist/commands/slack/send-as-agent.d.ts +18 -0
- package/dist/commands/slack/send-as-agent.js +232 -0
- package/dist/commands/slack/tools.d.ts +10 -0
- package/dist/commands/slack/tools.js +58 -0
- package/dist/commands/space-directory-views/create.d.ts +13 -0
- package/dist/commands/space-directory-views/create.js +57 -0
- package/dist/commands/space-directory-views/delete.d.ts +13 -0
- package/dist/commands/space-directory-views/delete.js +39 -0
- package/dist/commands/space-directory-views/list.d.ts +8 -0
- package/dist/commands/space-directory-views/list.js +27 -0
- package/dist/commands/space-directory-views/show.d.ts +21 -0
- package/dist/commands/space-directory-views/show.js +84 -0
- package/dist/commands/space-directory-views/update.d.ts +16 -0
- package/dist/commands/space-directory-views/update.js +64 -0
- package/dist/commands/spaces/actions/add.d.ts +18 -0
- package/dist/commands/spaces/actions/add.js +60 -0
- package/dist/commands/spaces/actions/available.d.ts +20 -0
- package/dist/commands/spaces/actions/available.js +57 -0
- package/dist/commands/spaces/actions/delete.d.ts +13 -0
- package/dist/commands/spaces/actions/delete.js +47 -0
- package/dist/commands/spaces/actions/list.d.ts +11 -0
- package/dist/commands/spaces/actions/list.js +46 -0
- package/dist/commands/spaces/actions/replace.d.ts +14 -0
- package/dist/commands/spaces/actions/replace.js +66 -0
- package/dist/commands/spaces/actions/update.d.ts +18 -0
- package/dist/commands/spaces/actions/update.js +59 -0
- package/dist/commands/spaces/archive.d.ts +12 -0
- package/dist/commands/spaces/archive.js +34 -0
- package/dist/commands/spaces/auto-executor/preview.d.ts +11 -0
- package/dist/commands/spaces/auto-executor/preview.js +26 -0
- package/dist/commands/spaces/auto-executor/run.d.ts +11 -0
- package/dist/commands/spaces/auto-executor/run.js +29 -0
- package/dist/commands/spaces/auto-executor/update.d.ts +17 -0
- package/dist/commands/spaces/auto-executor/update.js +69 -0
- package/dist/commands/spaces/bootstrap.d.ts +39 -0
- package/dist/commands/spaces/bootstrap.js +103 -0
- package/dist/commands/spaces/briefs/delete.d.ts +14 -0
- package/dist/commands/spaces/briefs/delete.js +50 -0
- package/dist/commands/spaces/briefs/get.d.ts +14 -0
- package/dist/commands/spaces/briefs/get.js +59 -0
- package/dist/commands/spaces/briefs/list.d.ts +12 -0
- package/dist/commands/spaces/briefs/list.js +61 -0
- package/dist/commands/spaces/briefs/set.d.ts +17 -0
- package/dist/commands/spaces/briefs/set.js +116 -0
- package/dist/commands/spaces/capacity.d.ts +13 -0
- package/dist/commands/spaces/capacity.js +55 -0
- package/dist/commands/spaces/conversations.d.ts +14 -0
- package/dist/commands/spaces/conversations.js +86 -0
- package/dist/commands/spaces/create.d.ts +21 -0
- package/dist/commands/spaces/create.js +121 -0
- package/dist/commands/spaces/cycles/create.d.ts +16 -0
- package/dist/commands/spaces/cycles/create.js +44 -0
- package/dist/commands/spaces/cycles/graph.d.ts +13 -0
- package/dist/commands/spaces/cycles/graph.js +65 -0
- package/dist/commands/spaces/cycles/list.d.ts +13 -0
- package/dist/commands/spaces/cycles/list.js +57 -0
- package/dist/commands/spaces/cycles/settings.d.ts +15 -0
- package/dist/commands/spaces/cycles/settings.js +77 -0
- package/dist/commands/spaces/cycles/show.d.ts +12 -0
- package/dist/commands/spaces/cycles/show.js +54 -0
- package/dist/commands/spaces/cycles/update.d.ts +17 -0
- package/dist/commands/spaces/cycles/update.js +50 -0
- package/dist/commands/spaces/delete.d.ts +12 -0
- package/dist/commands/spaces/delete.js +45 -0
- package/dist/commands/spaces/files/delete.d.ts +13 -0
- package/dist/commands/spaces/files/delete.js +47 -0
- package/dist/commands/spaces/files/folders/create.d.ts +14 -0
- package/dist/commands/spaces/files/folders/create.js +48 -0
- package/dist/commands/spaces/files/folders/delete.d.ts +14 -0
- package/dist/commands/spaces/files/folders/delete.js +54 -0
- package/dist/commands/spaces/files/folders/list.d.ts +11 -0
- package/dist/commands/spaces/files/folders/list.js +41 -0
- package/dist/commands/spaces/files/folders/update.d.ts +16 -0
- package/dist/commands/spaces/files/folders/update.js +55 -0
- package/dist/commands/spaces/files/list.d.ts +12 -0
- package/dist/commands/spaces/files/list.js +66 -0
- package/dist/commands/spaces/files/move.d.ts +14 -0
- package/dist/commands/spaces/files/move.js +41 -0
- package/dist/commands/spaces/files/rename.d.ts +13 -0
- package/dist/commands/spaces/files/rename.js +37 -0
- package/dist/commands/spaces/files/upload.d.ts +14 -0
- package/dist/commands/spaces/files/upload.js +103 -0
- package/dist/commands/spaces/github-automations/set.d.ts +12 -0
- package/dist/commands/spaces/github-automations/set.js +51 -0
- package/dist/commands/spaces/github-automations/show.d.ts +11 -0
- package/dist/commands/spaces/github-automations/show.js +43 -0
- package/dist/commands/spaces/goals.d.ts +12 -0
- package/dist/commands/spaces/goals.js +61 -0
- package/dist/commands/spaces/heartbeats/create.d.ts +21 -0
- package/dist/commands/spaces/heartbeats/create.js +92 -0
- package/dist/commands/spaces/heartbeats/delete.d.ts +14 -0
- package/dist/commands/spaces/heartbeats/delete.js +55 -0
- package/dist/commands/spaces/heartbeats/list.d.ts +35 -0
- package/dist/commands/spaces/heartbeats/list.js +101 -0
- package/dist/commands/spaces/heartbeats/status.d.ts +13 -0
- package/dist/commands/spaces/heartbeats/status.js +60 -0
- package/dist/commands/spaces/heartbeats/update.d.ts +22 -0
- package/dist/commands/spaces/heartbeats/update.js +81 -0
- package/dist/commands/spaces/index.d.ts +18 -0
- package/dist/commands/spaces/index.js +132 -0
- package/dist/commands/spaces/insights.d.ts +48 -0
- package/dist/commands/spaces/insights.js +188 -0
- package/dist/commands/spaces/install-template.d.ts +59 -0
- package/dist/commands/spaces/install-template.js +145 -0
- package/dist/commands/spaces/labels/add.d.ts +13 -0
- package/dist/commands/spaces/labels/add.js +48 -0
- package/dist/commands/spaces/labels/list.d.ts +12 -0
- package/dist/commands/spaces/labels/list.js +72 -0
- package/dist/commands/spaces/labels/remove.d.ts +13 -0
- package/dist/commands/spaces/labels/remove.js +44 -0
- package/dist/commands/spaces/list.d.ts +15 -0
- package/dist/commands/spaces/list.js +85 -0
- package/dist/commands/spaces/live/cards/create.d.ts +19 -0
- package/dist/commands/spaces/live/cards/create.js +68 -0
- package/dist/commands/spaces/live/cards/delete.d.ts +13 -0
- package/dist/commands/spaces/live/cards/delete.js +44 -0
- package/dist/commands/spaces/live/cards/list.d.ts +11 -0
- package/dist/commands/spaces/live/cards/list.js +43 -0
- package/dist/commands/spaces/live/cards/reorder.d.ts +13 -0
- package/dist/commands/spaces/live/cards/reorder.js +52 -0
- package/dist/commands/spaces/live/cards/update.d.ts +20 -0
- package/dist/commands/spaces/live/cards/update.js +69 -0
- package/dist/commands/spaces/live/scene.d.ts +13 -0
- package/dist/commands/spaces/live/scene.js +55 -0
- package/dist/commands/spaces/members/add.d.ts +17 -0
- package/dist/commands/spaces/members/add.js +143 -0
- package/dist/commands/spaces/members/list.d.ts +12 -0
- package/dist/commands/spaces/members/list.js +54 -0
- package/dist/commands/spaces/members/remove.d.ts +15 -0
- package/dist/commands/spaces/members/remove.js +76 -0
- package/dist/commands/spaces/members/search.d.ts +13 -0
- package/dist/commands/spaces/members/search.js +57 -0
- package/dist/commands/spaces/move.d.ts +27 -0
- package/dist/commands/spaces/move.js +82 -0
- package/dist/commands/spaces/open.d.ts +13 -0
- package/dist/commands/spaces/open.js +42 -0
- package/dist/commands/spaces/pin.d.ts +11 -0
- package/dist/commands/spaces/pin.js +33 -0
- package/dist/commands/spaces/preferences/show.d.ts +11 -0
- package/dist/commands/spaces/preferences/show.js +34 -0
- package/dist/commands/spaces/preferences/tabs.d.ts +14 -0
- package/dist/commands/spaces/preferences/tabs.js +51 -0
- package/dist/commands/spaces/reorder.d.ts +14 -0
- package/dist/commands/spaces/reorder.js +67 -0
- package/dist/commands/spaces/revisions.d.ts +12 -0
- package/dist/commands/spaces/revisions.js +55 -0
- package/dist/commands/spaces/room/ensure.d.ts +12 -0
- package/dist/commands/spaces/room/ensure.js +39 -0
- package/dist/commands/spaces/room/messages.d.ts +15 -0
- package/dist/commands/spaces/room/messages.js +65 -0
- package/dist/commands/spaces/room/send.d.ts +18 -0
- package/dist/commands/spaces/room/send.js +107 -0
- package/dist/commands/spaces/room/show.d.ts +12 -0
- package/dist/commands/spaces/room/show.js +57 -0
- package/dist/commands/spaces/show.d.ts +12 -0
- package/dist/commands/spaces/show.js +67 -0
- package/dist/commands/spaces/skills/add.d.ts +13 -0
- package/dist/commands/spaces/skills/add.js +37 -0
- package/dist/commands/spaces/skills/list.d.ts +12 -0
- package/dist/commands/spaces/skills/list.js +67 -0
- package/dist/commands/spaces/skills/pin.d.ts +14 -0
- package/dist/commands/spaces/skills/pin.js +48 -0
- package/dist/commands/spaces/skills/remove.d.ts +13 -0
- package/dist/commands/spaces/skills/remove.js +37 -0
- package/dist/commands/spaces/snapshot.d.ts +20 -0
- package/dist/commands/spaces/snapshot.js +89 -0
- package/dist/commands/spaces/states/archive.d.ts +12 -0
- package/dist/commands/spaces/states/archive.js +31 -0
- package/dist/commands/spaces/states/create.d.ts +16 -0
- package/dist/commands/spaces/states/create.js +47 -0
- package/dist/commands/spaces/states/list.d.ts +11 -0
- package/dist/commands/spaces/states/list.js +47 -0
- package/dist/commands/spaces/states/reorder.d.ts +12 -0
- package/dist/commands/spaces/states/reorder.js +36 -0
- package/dist/commands/spaces/states/update.d.ts +15 -0
- package/dist/commands/spaces/states/update.js +42 -0
- package/dist/commands/spaces/subspaces.d.ts +13 -0
- package/dist/commands/spaces/subspaces.js +58 -0
- package/dist/commands/spaces/summary.d.ts +11 -0
- package/dist/commands/spaces/summary.js +29 -0
- package/dist/commands/spaces/tasks.d.ts +14 -0
- package/dist/commands/spaces/tasks.js +73 -0
- package/dist/commands/spaces/templates/create.d.ts +26 -0
- package/dist/commands/spaces/templates/create.js +79 -0
- package/dist/commands/spaces/templates/delete.d.ts +20 -0
- package/dist/commands/spaces/templates/delete.js +46 -0
- package/dist/commands/spaces/templates/fork.d.ts +26 -0
- package/dist/commands/spaces/templates/fork.js +60 -0
- package/dist/commands/spaces/templates/index.d.ts +24 -0
- package/dist/commands/spaces/templates/index.js +106 -0
- package/dist/commands/spaces/templates/purchase-status.d.ts +20 -0
- package/dist/commands/spaces/templates/purchase-status.js +54 -0
- package/dist/commands/spaces/templates/rate.d.ts +18 -0
- package/dist/commands/spaces/templates/rate.js +52 -0
- package/dist/commands/spaces/templates/report.d.ts +21 -0
- package/dist/commands/spaces/templates/report.js +48 -0
- package/dist/commands/spaces/templates/show.d.ts +21 -0
- package/dist/commands/spaces/templates/show.js +75 -0
- package/dist/commands/spaces/templates/update.d.ts +27 -0
- package/dist/commands/spaces/templates/update.js +57 -0
- package/dist/commands/spaces/templates/visibility.d.ts +24 -0
- package/dist/commands/spaces/templates/visibility.js +58 -0
- package/dist/commands/spaces/transfer-workspace.d.ts +20 -0
- package/dist/commands/spaces/transfer-workspace.js +56 -0
- package/dist/commands/spaces/triggers/delete.d.ts +13 -0
- package/dist/commands/spaces/triggers/delete.js +52 -0
- package/dist/commands/spaces/triggers/set.d.ts +36 -0
- package/dist/commands/spaces/triggers/set.js +145 -0
- package/dist/commands/spaces/triggers/show.d.ts +12 -0
- package/dist/commands/spaces/triggers/show.js +50 -0
- package/dist/commands/spaces/unarchive.d.ts +12 -0
- package/dist/commands/spaces/unarchive.js +34 -0
- package/dist/commands/spaces/update.d.ts +22 -0
- package/dist/commands/spaces/update.js +126 -0
- package/dist/commands/spaces/views/create.d.ts +17 -0
- package/dist/commands/spaces/views/create.js +62 -0
- package/dist/commands/spaces/views/delete.d.ts +13 -0
- package/dist/commands/spaces/views/delete.js +44 -0
- package/dist/commands/spaces/views/duplicate.d.ts +12 -0
- package/dist/commands/spaces/views/duplicate.js +30 -0
- package/dist/commands/spaces/views/list.d.ts +11 -0
- package/dist/commands/spaces/views/list.js +45 -0
- package/dist/commands/spaces/views/reorder.d.ts +14 -0
- package/dist/commands/spaces/views/reorder.js +64 -0
- package/dist/commands/spaces/views/subscribe.d.ts +16 -0
- package/dist/commands/spaces/views/subscribe.js +48 -0
- package/dist/commands/spaces/views/subscriptions.d.ts +12 -0
- package/dist/commands/spaces/views/subscriptions.js +31 -0
- package/dist/commands/spaces/views/unsubscribe.d.ts +12 -0
- package/dist/commands/spaces/views/unsubscribe.js +28 -0
- package/dist/commands/spaces/views/update.d.ts +19 -0
- package/dist/commands/spaces/views/update.js +65 -0
- package/dist/commands/spaces/widgets/add.d.ts +14 -0
- package/dist/commands/spaces/widgets/add.js +46 -0
- package/dist/commands/spaces/widgets/list.d.ts +12 -0
- package/dist/commands/spaces/widgets/list.js +71 -0
- package/dist/commands/spaces/widgets/remove.d.ts +14 -0
- package/dist/commands/spaces/widgets/remove.js +57 -0
- package/dist/commands/spaces/work-graph.d.ts +21 -0
- package/dist/commands/spaces/work-graph.js +104 -0
- package/dist/commands/spaces/workflow-templates/archive.d.ts +16 -0
- package/dist/commands/spaces/workflow-templates/archive.js +52 -0
- package/dist/commands/spaces/workflow-templates/create.d.ts +21 -0
- package/dist/commands/spaces/workflow-templates/create.js +69 -0
- package/dist/commands/spaces/workflow-templates/extract.d.ts +27 -0
- package/dist/commands/spaces/workflow-templates/extract.js +74 -0
- package/dist/commands/spaces/workflow-templates/insert.d.ts +26 -0
- package/dist/commands/spaces/workflow-templates/insert.js +133 -0
- package/dist/commands/spaces/workflow-templates/list.d.ts +19 -0
- package/dist/commands/spaces/workflow-templates/list.js +69 -0
- package/dist/commands/spaces/workflow-templates/promote.d.ts +31 -0
- package/dist/commands/spaces/workflow-templates/promote.js +76 -0
- package/dist/commands/spaces/workflow-templates/publish.d.ts +16 -0
- package/dist/commands/spaces/workflow-templates/publish.js +42 -0
- package/dist/commands/spaces/workflow-templates/show.d.ts +16 -0
- package/dist/commands/spaces/workflow-templates/show.js +92 -0
- package/dist/commands/spaces/workflow-templates/update.d.ts +20 -0
- package/dist/commands/spaces/workflow-templates/update.js +67 -0
- package/dist/commands/spaces/workflow-templates/versions.d.ts +15 -0
- package/dist/commands/spaces/workflow-templates/versions.js +51 -0
- package/dist/commands/spaces/workflows/archive.d.ts +13 -0
- package/dist/commands/spaces/workflows/archive.js +44 -0
- package/dist/commands/spaces/workflows/artifact.d.ts +14 -0
- package/dist/commands/spaces/workflows/artifact.js +45 -0
- package/dist/commands/spaces/workflows/cancel.d.ts +13 -0
- package/dist/commands/spaces/workflows/cancel.js +50 -0
- package/dist/commands/spaces/workflows/create.d.ts +19 -0
- package/dist/commands/spaces/workflows/create.js +100 -0
- package/dist/commands/spaces/workflows/events.d.ts +15 -0
- package/dist/commands/spaces/workflows/events.js +80 -0
- package/dist/commands/spaces/workflows/fixtures/create.d.ts +20 -0
- package/dist/commands/spaces/workflows/fixtures/create.js +74 -0
- package/dist/commands/spaces/workflows/fixtures/list.d.ts +13 -0
- package/dist/commands/spaces/workflows/fixtures/list.js +52 -0
- package/dist/commands/spaces/workflows/list.d.ts +11 -0
- package/dist/commands/spaces/workflows/list.js +48 -0
- package/dist/commands/spaces/workflows/pause.d.ts +14 -0
- package/dist/commands/spaces/workflows/pause.js +35 -0
- package/dist/commands/spaces/workflows/plan/show.d.ts +13 -0
- package/dist/commands/spaces/workflows/plan/show.js +39 -0
- package/dist/commands/spaces/workflows/plan/update.d.ts +24 -0
- package/dist/commands/spaces/workflows/plan/update.js +96 -0
- package/dist/commands/spaces/workflows/proposals/apply.d.ts +14 -0
- package/dist/commands/spaces/workflows/proposals/apply.js +45 -0
- package/dist/commands/spaces/workflows/proposals/confirm.d.ts +14 -0
- package/dist/commands/spaces/workflows/proposals/confirm.js +47 -0
- package/dist/commands/spaces/workflows/proposals/create.d.ts +20 -0
- package/dist/commands/spaces/workflows/proposals/create.js +89 -0
- package/dist/commands/spaces/workflows/proposals/dismiss.d.ts +14 -0
- package/dist/commands/spaces/workflows/proposals/dismiss.js +45 -0
- package/dist/commands/spaces/workflows/proposals/list.d.ts +12 -0
- package/dist/commands/spaces/workflows/proposals/list.js +40 -0
- package/dist/commands/spaces/workflows/publish.d.ts +12 -0
- package/dist/commands/spaces/workflows/publish.js +35 -0
- package/dist/commands/spaces/workflows/reconcile.d.ts +12 -0
- package/dist/commands/spaces/workflows/reconcile.js +33 -0
- package/dist/commands/spaces/workflows/resume.d.ts +13 -0
- package/dist/commands/spaces/workflows/resume.js +34 -0
- package/dist/commands/spaces/workflows/retry.d.ts +13 -0
- package/dist/commands/spaces/workflows/retry.js +43 -0
- package/dist/commands/spaces/workflows/run.d.ts +30 -0
- package/dist/commands/spaces/workflows/run.js +87 -0
- package/dist/commands/spaces/workflows/runs.d.ts +35 -0
- package/dist/commands/spaces/workflows/runs.js +83 -0
- package/dist/commands/spaces/workflows/show.d.ts +13 -0
- package/dist/commands/spaces/workflows/show.js +51 -0
- package/dist/commands/spaces/workflows/signal.d.ts +17 -0
- package/dist/commands/spaces/workflows/signal.js +76 -0
- package/dist/commands/spaces/workflows/start.d.ts +32 -0
- package/dist/commands/spaces/workflows/start.js +92 -0
- package/dist/commands/spaces/workflows/task-execution/create.d.ts +15 -0
- package/dist/commands/spaces/workflows/task-execution/create.js +49 -0
- package/dist/commands/spaces/workflows/test.d.ts +16 -0
- package/dist/commands/spaces/workflows/test.js +67 -0
- package/dist/commands/spaces/workflows/triggers/create.d.ts +19 -0
- package/dist/commands/spaces/workflows/triggers/create.js +68 -0
- package/dist/commands/spaces/workflows/triggers/fire.d.ts +16 -0
- package/dist/commands/spaces/workflows/triggers/fire.js +57 -0
- package/dist/commands/spaces/workflows/triggers/list.d.ts +12 -0
- package/dist/commands/spaces/workflows/triggers/list.js +49 -0
- package/dist/commands/spaces/workflows/triggers/update.d.ts +17 -0
- package/dist/commands/spaces/workflows/triggers/update.js +62 -0
- package/dist/commands/spaces/workflows/update.d.ts +35 -0
- package/dist/commands/spaces/workflows/update.js +130 -0
- package/dist/commands/spaces/workflows/validate.d.ts +12 -0
- package/dist/commands/spaces/workflows/validate.js +43 -0
- package/dist/commands/tasks/actionability.d.ts +12 -0
- package/dist/commands/tasks/actionability.js +63 -0
- package/dist/commands/tasks/actions/attach.d.ts +23 -0
- package/dist/commands/tasks/actions/attach.js +143 -0
- package/dist/commands/tasks/actions/detach.d.ts +20 -0
- package/dist/commands/tasks/actions/detach.js +129 -0
- package/dist/commands/tasks/active.d.ts +12 -0
- package/dist/commands/tasks/active.js +123 -0
- package/dist/commands/tasks/activity.d.ts +32 -0
- package/dist/commands/tasks/activity.js +67 -0
- package/dist/commands/tasks/ancestors.d.ts +12 -0
- package/dist/commands/tasks/ancestors.js +54 -0
- package/dist/commands/tasks/approvals/create.d.ts +15 -0
- package/dist/commands/tasks/approvals/create.js +58 -0
- package/dist/commands/tasks/approvals/delete.d.ts +13 -0
- package/dist/commands/tasks/approvals/delete.js +44 -0
- package/dist/commands/tasks/approvals/list.d.ts +27 -0
- package/dist/commands/tasks/approvals/list.js +75 -0
- package/dist/commands/tasks/approvals/resolve.d.ts +15 -0
- package/dist/commands/tasks/approvals/resolve.js +51 -0
- package/dist/commands/tasks/archive.d.ts +13 -0
- package/dist/commands/tasks/archive.js +41 -0
- package/dist/commands/tasks/assign.d.ts +41 -0
- package/dist/commands/tasks/assign.js +232 -0
- package/dist/commands/tasks/attachments/delete.d.ts +13 -0
- package/dist/commands/tasks/attachments/delete.js +44 -0
- package/dist/commands/tasks/attachments/download.d.ts +13 -0
- package/dist/commands/tasks/attachments/download.js +78 -0
- package/dist/commands/tasks/attachments/list.d.ts +29 -0
- package/dist/commands/tasks/attachments/list.js +89 -0
- package/dist/commands/tasks/attachments/upload.d.ts +13 -0
- package/dist/commands/tasks/attachments/upload.js +83 -0
- package/dist/commands/tasks/bulk-update.d.ts +11 -0
- package/dist/commands/tasks/bulk-update.js +120 -0
- package/dist/commands/tasks/calendar.d.ts +18 -0
- package/dist/commands/tasks/calendar.js +40 -0
- package/dist/commands/tasks/cancel-cascade.d.ts +12 -0
- package/dist/commands/tasks/cancel-cascade.js +43 -0
- package/dist/commands/tasks/cascade-status.d.ts +12 -0
- package/dist/commands/tasks/cascade-status.js +41 -0
- package/dist/commands/tasks/chat/exchange.d.ts +30 -0
- package/dist/commands/tasks/chat/exchange.js +88 -0
- package/dist/commands/tasks/chat/index.d.ts +31 -0
- package/dist/commands/tasks/chat/index.js +69 -0
- package/dist/commands/tasks/chat/read.d.ts +14 -0
- package/dist/commands/tasks/chat/read.js +35 -0
- package/dist/commands/tasks/chat/reindex.d.ts +20 -0
- package/dist/commands/tasks/chat/reindex.js +39 -0
- package/dist/commands/tasks/chat/reopen.d.ts +20 -0
- package/dist/commands/tasks/chat/reopen.js +43 -0
- package/dist/commands/tasks/chat/repair-attention.d.ts +19 -0
- package/dist/commands/tasks/chat/repair-attention.js +38 -0
- package/dist/commands/tasks/chat/rotate.d.ts +21 -0
- package/dist/commands/tasks/chat/rotate.js +59 -0
- package/dist/commands/tasks/checkout.d.ts +13 -0
- package/dist/commands/tasks/checkout.js +79 -0
- package/dist/commands/tasks/children.d.ts +12 -0
- package/dist/commands/tasks/children.js +54 -0
- package/dist/commands/tasks/comments/add.d.ts +36 -0
- package/dist/commands/tasks/comments/add.js +258 -0
- package/dist/commands/tasks/comments/anchor.d.ts +80 -0
- package/dist/commands/tasks/comments/anchor.js +374 -0
- package/dist/commands/tasks/comments/delete.d.ts +13 -0
- package/dist/commands/tasks/comments/delete.js +44 -0
- package/dist/commands/tasks/comments/list.d.ts +15 -0
- package/dist/commands/tasks/comments/list.js +96 -0
- package/dist/commands/tasks/comments/react.d.ts +14 -0
- package/dist/commands/tasks/comments/react.js +70 -0
- package/dist/commands/tasks/comments/reopen.d.ts +13 -0
- package/dist/commands/tasks/comments/reopen.js +40 -0
- package/dist/commands/tasks/comments/resolve.d.ts +13 -0
- package/dist/commands/tasks/comments/resolve.js +40 -0
- package/dist/commands/tasks/communications.d.ts +21 -0
- package/dist/commands/tasks/communications.js +45 -0
- package/dist/commands/tasks/complete.d.ts +106 -0
- package/dist/commands/tasks/complete.js +457 -0
- package/dist/commands/tasks/continue-ready.d.ts +20 -0
- package/dist/commands/tasks/continue-ready.js +220 -0
- package/dist/commands/tasks/create-tree.d.ts +30 -0
- package/dist/commands/tasks/create-tree.js +299 -0
- package/dist/commands/tasks/create.d.ts +47 -0
- package/dist/commands/tasks/create.js +389 -0
- package/dist/commands/tasks/current.d.ts +10 -0
- package/dist/commands/tasks/current.js +39 -0
- package/dist/commands/tasks/delete.d.ts +12 -0
- package/dist/commands/tasks/delete.js +45 -0
- package/dist/commands/tasks/descendants.d.ts +13 -0
- package/dist/commands/tasks/descendants.js +56 -0
- package/dist/commands/tasks/dri-plan.d.ts +12 -0
- package/dist/commands/tasks/dri-plan.js +40 -0
- package/dist/commands/tasks/dri-run.d.ts +12 -0
- package/dist/commands/tasks/dri-run.js +40 -0
- package/dist/commands/tasks/dri-status.d.ts +12 -0
- package/dist/commands/tasks/dri-status.js +50 -0
- package/dist/commands/tasks/duplicate-pipeline.d.ts +14 -0
- package/dist/commands/tasks/duplicate-pipeline.js +56 -0
- package/dist/commands/tasks/events/append.d.ts +19 -0
- package/dist/commands/tasks/events/append.js +59 -0
- package/dist/commands/tasks/events/list.d.ts +17 -0
- package/dist/commands/tasks/events/list.js +39 -0
- package/dist/commands/tasks/events/tail.d.ts +15 -0
- package/dist/commands/tasks/events/tail.js +45 -0
- package/dist/commands/tasks/execution-summary.d.ts +32 -0
- package/dist/commands/tasks/execution-summary.js +91 -0
- package/dist/commands/tasks/execution-timeline.d.ts +14 -0
- package/dist/commands/tasks/execution-timeline.js +65 -0
- package/dist/commands/tasks/export.d.ts +39 -0
- package/dist/commands/tasks/export.js +169 -0
- package/dist/commands/tasks/follow-up.d.ts +36 -0
- package/dist/commands/tasks/follow-up.js +181 -0
- package/dist/commands/tasks/forward.d.ts +14 -0
- package/dist/commands/tasks/forward.js +69 -0
- package/dist/commands/tasks/from-message.d.ts +19 -0
- package/dist/commands/tasks/from-message.js +51 -0
- package/dist/commands/tasks/import.d.ts +23 -0
- package/dist/commands/tasks/import.js +293 -0
- package/dist/commands/tasks/input/answer.d.ts +15 -0
- package/dist/commands/tasks/input/answer.js +71 -0
- package/dist/commands/tasks/input/dismiss.d.ts +12 -0
- package/dist/commands/tasks/input/dismiss.js +39 -0
- package/dist/commands/tasks/input/show.d.ts +11 -0
- package/dist/commands/tasks/input/show.js +39 -0
- package/dist/commands/tasks/interrupt.d.ts +19 -0
- package/dist/commands/tasks/interrupt.js +50 -0
- package/dist/commands/tasks/labels/attach.d.ts +25 -0
- package/dist/commands/tasks/labels/attach.js +78 -0
- package/dist/commands/tasks/labels/create.d.ts +12 -0
- package/dist/commands/tasks/labels/create.js +69 -0
- package/dist/commands/tasks/labels/delete.d.ts +12 -0
- package/dist/commands/tasks/labels/delete.js +43 -0
- package/dist/commands/tasks/labels/detach.d.ts +18 -0
- package/dist/commands/tasks/labels/detach.js +69 -0
- package/dist/commands/tasks/labels/list.d.ts +9 -0
- package/dist/commands/tasks/labels/list.js +48 -0
- package/dist/commands/tasks/list.d.ts +56 -0
- package/dist/commands/tasks/list.js +353 -0
- package/dist/commands/tasks/mark-duplicate.d.ts +12 -0
- package/dist/commands/tasks/mark-duplicate.js +35 -0
- package/dist/commands/tasks/monitor.d.ts +16 -0
- package/dist/commands/tasks/monitor.js +226 -0
- package/dist/commands/tasks/move.d.ts +33 -0
- package/dist/commands/tasks/move.js +166 -0
- package/dist/commands/tasks/open.d.ts +17 -0
- package/dist/commands/tasks/open.js +71 -0
- package/dist/commands/tasks/output.d.ts +24 -0
- package/dist/commands/tasks/output.js +186 -0
- package/dist/commands/tasks/pause-schedule.d.ts +12 -0
- package/dist/commands/tasks/pause-schedule.js +38 -0
- package/dist/commands/tasks/plan/add-subtask.d.ts +16 -0
- package/dist/commands/tasks/plan/add-subtask.js +47 -0
- package/dist/commands/tasks/plan/cancel.d.ts +13 -0
- package/dist/commands/tasks/plan/cancel.js +47 -0
- package/dist/commands/tasks/plan/create.d.ts +11 -0
- package/dist/commands/tasks/plan/create.js +28 -0
- package/dist/commands/tasks/plan/pause.d.ts +14 -0
- package/dist/commands/tasks/plan/pause.js +33 -0
- package/dist/commands/tasks/plan/reconcile.d.ts +12 -0
- package/dist/commands/tasks/plan/reconcile.js +29 -0
- package/dist/commands/tasks/plan/resume.d.ts +13 -0
- package/dist/commands/tasks/plan/resume.js +30 -0
- package/dist/commands/tasks/plan/retry.d.ts +13 -0
- package/dist/commands/tasks/plan/retry.js +34 -0
- package/dist/commands/tasks/plan/run-update.d.ts +17 -0
- package/dist/commands/tasks/plan/run-update.js +98 -0
- package/dist/commands/tasks/plan/run.d.ts +12 -0
- package/dist/commands/tasks/plan/run.js +33 -0
- package/dist/commands/tasks/plan/show.d.ts +11 -0
- package/dist/commands/tasks/plan/show.js +27 -0
- package/dist/commands/tasks/plan/start.d.ts +12 -0
- package/dist/commands/tasks/plan/start.js +30 -0
- package/dist/commands/tasks/plan/sync.d.ts +11 -0
- package/dist/commands/tasks/plan/sync.js +28 -0
- package/dist/commands/tasks/plan/update.d.ts +12 -0
- package/dist/commands/tasks/plan/update.js +51 -0
- package/dist/commands/tasks/pr.d.ts +12 -0
- package/dist/commands/tasks/pr.js +92 -0
- package/dist/commands/tasks/prompt-log.d.ts +12 -0
- package/dist/commands/tasks/prompt-log.js +42 -0
- package/dist/commands/tasks/ready.d.ts +15 -0
- package/dist/commands/tasks/ready.js +78 -0
- package/dist/commands/tasks/release.d.ts +12 -0
- package/dist/commands/tasks/release.js +47 -0
- package/dist/commands/tasks/remind.d.ts +14 -0
- package/dist/commands/tasks/remind.js +63 -0
- package/dist/commands/tasks/replay.d.ts +13 -0
- package/dist/commands/tasks/replay.js +61 -0
- package/dist/commands/tasks/report.d.ts +24 -0
- package/dist/commands/tasks/report.js +119 -0
- package/dist/commands/tasks/resume-schedule.d.ts +12 -0
- package/dist/commands/tasks/resume-schedule.js +38 -0
- package/dist/commands/tasks/retry-schedule.d.ts +13 -0
- package/dist/commands/tasks/retry-schedule.js +45 -0
- package/dist/commands/tasks/retry.d.ts +38 -0
- package/dist/commands/tasks/retry.js +110 -0
- package/dist/commands/tasks/revisions.d.ts +12 -0
- package/dist/commands/tasks/revisions.js +54 -0
- package/dist/commands/tasks/runs.d.ts +18 -0
- package/dist/commands/tasks/runs.js +82 -0
- package/dist/commands/tasks/schedule.d.ts +18 -0
- package/dist/commands/tasks/schedule.js +90 -0
- package/dist/commands/tasks/show.d.ts +14 -0
- package/dist/commands/tasks/show.js +220 -0
- package/dist/commands/tasks/skills/pin.d.ts +31 -0
- package/dist/commands/tasks/skills/pin.js +147 -0
- package/dist/commands/tasks/skills/unpin.d.ts +17 -0
- package/dist/commands/tasks/skills/unpin.js +121 -0
- package/dist/commands/tasks/snooze.d.ts +17 -0
- package/dist/commands/tasks/snooze.js +90 -0
- package/dist/commands/tasks/start-all.d.ts +13 -0
- package/dist/commands/tasks/start-all.js +63 -0
- package/dist/commands/tasks/start.d.ts +15 -0
- package/dist/commands/tasks/start.js +114 -0
- package/dist/commands/tasks/subscribe.d.ts +14 -0
- package/dist/commands/tasks/subscribe.js +64 -0
- package/dist/commands/tasks/tags/add.d.ts +21 -0
- package/dist/commands/tasks/tags/add.js +74 -0
- package/dist/commands/tasks/tags/remove.d.ts +17 -0
- package/dist/commands/tasks/tags/remove.js +68 -0
- package/dist/commands/tasks/templates/create.d.ts +19 -0
- package/dist/commands/tasks/templates/create.js +141 -0
- package/dist/commands/tasks/templates/delete.d.ts +12 -0
- package/dist/commands/tasks/templates/delete.js +44 -0
- package/dist/commands/tasks/templates/list.d.ts +10 -0
- package/dist/commands/tasks/templates/list.js +51 -0
- package/dist/commands/tasks/templates/reorder.d.ts +14 -0
- package/dist/commands/tasks/templates/reorder.js +40 -0
- package/dist/commands/tasks/templates/show.d.ts +12 -0
- package/dist/commands/tasks/templates/show.js +49 -0
- package/dist/commands/tasks/templates/update.d.ts +20 -0
- package/dist/commands/tasks/templates/update.js +123 -0
- package/dist/commands/tasks/timeline.d.ts +16 -0
- package/dist/commands/tasks/timeline.js +59 -0
- package/dist/commands/tasks/today.d.ts +12 -0
- package/dist/commands/tasks/today.js +66 -0
- package/dist/commands/tasks/transcript.d.ts +16 -0
- package/dist/commands/tasks/transcript.js +131 -0
- package/dist/commands/tasks/tree.d.ts +16 -0
- package/dist/commands/tasks/tree.js +87 -0
- package/dist/commands/tasks/triage.d.ts +23 -0
- package/dist/commands/tasks/triage.js +141 -0
- package/dist/commands/tasks/unschedule.d.ts +12 -0
- package/dist/commands/tasks/unschedule.js +38 -0
- package/dist/commands/tasks/unsnooze.d.ts +14 -0
- package/dist/commands/tasks/unsnooze.js +45 -0
- package/dist/commands/tasks/unsubscribe.d.ts +14 -0
- package/dist/commands/tasks/unsubscribe.js +58 -0
- package/dist/commands/tasks/update.d.ts +42 -0
- package/dist/commands/tasks/update.js +267 -0
- package/dist/commands/tasks/upsert.d.ts +26 -0
- package/dist/commands/tasks/upsert.js +215 -0
- package/dist/commands/tasks/wait.d.ts +19 -0
- package/dist/commands/tasks/wait.js +145 -0
- package/dist/commands/tasks/watch.d.ts +19 -0
- package/dist/commands/tasks/watch.js +121 -0
- package/dist/commands/tasks/workflow/approve-merge.d.ts +19 -0
- package/dist/commands/tasks/workflow/approve-merge.js +38 -0
- package/dist/commands/tasks/workflow/cancel.d.ts +19 -0
- package/dist/commands/tasks/workflow/cancel.js +57 -0
- package/dist/commands/tasks/workflow/e2e-complete.d.ts +24 -0
- package/dist/commands/tasks/workflow/e2e-complete.js +56 -0
- package/dist/commands/tasks/workflow/index.d.ts +19 -0
- package/dist/commands/tasks/workflow/index.js +37 -0
- package/dist/commands/tasks/workflow/retry-stage.d.ts +20 -0
- package/dist/commands/tasks/workflow/retry-stage.js +43 -0
- package/dist/commands/tasks/workflow/start.d.ts +13 -0
- package/dist/commands/tasks/workflow/start.js +32 -0
- package/dist/commands/tasks/workflow-await.d.ts +23 -0
- package/dist/commands/tasks/workflow-await.js +72 -0
- package/dist/commands/tasks/workflow-context.d.ts +21 -0
- package/dist/commands/tasks/workflow-context.js +114 -0
- package/dist/commands/tasks/workflow-findings.d.ts +23 -0
- package/dist/commands/tasks/workflow-findings.js +96 -0
- package/dist/commands/teams/list-channels.d.ts +11 -0
- package/dist/commands/teams/list-channels.js +14 -0
- package/dist/commands/teams/list-users.d.ts +12 -0
- package/dist/commands/teams/list-users.js +19 -0
- package/dist/commands/teams/read-channel.d.ts +13 -0
- package/dist/commands/teams/read-channel.js +20 -0
- package/dist/commands/teams/read-thread.d.ts +14 -0
- package/dist/commands/teams/read-thread.js +23 -0
- package/dist/commands/teams/run.d.ts +15 -0
- package/dist/commands/teams/run.js +17 -0
- package/dist/commands/teams/search.d.ts +13 -0
- package/dist/commands/teams/search.js +21 -0
- package/dist/commands/teams/send-as-agent.d.ts +16 -0
- package/dist/commands/teams/send-as-agent.js +23 -0
- package/dist/commands/teams/tools.d.ts +10 -0
- package/dist/commands/teams/tools.js +14 -0
- package/dist/commands/token/mint.d.ts +35 -0
- package/dist/commands/token/mint.js +131 -0
- package/dist/commands/tones/apply.d.ts +22 -0
- package/dist/commands/tones/apply.js +127 -0
- package/dist/commands/tones/create.d.ts +26 -0
- package/dist/commands/tones/create.js +109 -0
- package/dist/commands/tones/default.d.ts +21 -0
- package/dist/commands/tones/default.js +117 -0
- package/dist/commands/tones/delete.d.ts +20 -0
- package/dist/commands/tones/delete.js +55 -0
- package/dist/commands/tones/export.d.ts +28 -0
- package/dist/commands/tones/export.js +126 -0
- package/dist/commands/tones/import.d.ts +20 -0
- package/dist/commands/tones/import.js +167 -0
- package/dist/commands/tones/list.d.ts +16 -0
- package/dist/commands/tones/list.js +77 -0
- package/dist/commands/tones/policy/set.d.ts +25 -0
- package/dist/commands/tones/policy/set.js +134 -0
- package/dist/commands/tones/policy/show.d.ts +16 -0
- package/dist/commands/tones/policy/show.js +67 -0
- package/dist/commands/tones/show.d.ts +12 -0
- package/dist/commands/tones/show.js +64 -0
- package/dist/commands/tones/update.d.ts +25 -0
- package/dist/commands/tones/update.js +104 -0
- package/dist/commands/triggers/actions.d.ts +15 -0
- package/dist/commands/triggers/actions.js +64 -0
- package/dist/commands/triggers/audit.d.ts +19 -0
- package/dist/commands/triggers/audit.js +61 -0
- package/dist/commands/triggers/capabilities.d.ts +11 -0
- package/dist/commands/triggers/capabilities.js +48 -0
- package/dist/commands/triggers/create.d.ts +88 -0
- package/dist/commands/triggers/create.js +398 -0
- package/dist/commands/triggers/delete.d.ts +13 -0
- package/dist/commands/triggers/delete.js +51 -0
- package/dist/commands/triggers/disable.d.ts +11 -0
- package/dist/commands/triggers/disable.js +32 -0
- package/dist/commands/triggers/enable.d.ts +11 -0
- package/dist/commands/triggers/enable.js +32 -0
- package/dist/commands/triggers/event-catalog.d.ts +9 -0
- package/dist/commands/triggers/event-catalog.js +51 -0
- package/dist/commands/triggers/fire-detail.d.ts +13 -0
- package/dist/commands/triggers/fire-detail.js +51 -0
- package/dist/commands/triggers/fire.d.ts +13 -0
- package/dist/commands/triggers/fire.js +46 -0
- package/dist/commands/triggers/list.d.ts +15 -0
- package/dist/commands/triggers/list.js +50 -0
- package/dist/commands/triggers/parse-intent.d.ts +16 -0
- package/dist/commands/triggers/parse-intent.js +94 -0
- package/dist/commands/triggers/preflight.d.ts +30 -0
- package/dist/commands/triggers/preflight.js +142 -0
- package/dist/commands/triggers/prune.d.ts +29 -0
- package/dist/commands/triggers/prune.js +151 -0
- package/dist/commands/triggers/replay.d.ts +14 -0
- package/dist/commands/triggers/replay.js +51 -0
- package/dist/commands/triggers/rotate-secret.d.ts +12 -0
- package/dist/commands/triggers/rotate-secret.js +38 -0
- package/dist/commands/triggers/runs.d.ts +24 -0
- package/dist/commands/triggers/runs.js +60 -0
- package/dist/commands/triggers/show.d.ts +12 -0
- package/dist/commands/triggers/show.js +35 -0
- package/dist/commands/triggers/update.d.ts +73 -0
- package/dist/commands/triggers/update.js +249 -0
- package/dist/commands/usage.d.ts +14 -0
- package/dist/commands/usage.js +70 -0
- package/dist/commands/views/create.d.ts +26 -0
- package/dist/commands/views/create.js +115 -0
- package/dist/commands/views/delete.d.ts +12 -0
- package/dist/commands/views/delete.js +41 -0
- package/dist/commands/views/list.d.ts +8 -0
- package/dist/commands/views/list.js +44 -0
- package/dist/commands/views/show.d.ts +11 -0
- package/dist/commands/views/show.js +38 -0
- package/dist/commands/views/subscribe.d.ts +15 -0
- package/dist/commands/views/subscribe.js +44 -0
- package/dist/commands/views/subscriptions.d.ts +11 -0
- package/dist/commands/views/subscriptions.js +30 -0
- package/dist/commands/views/unsubscribe.d.ts +11 -0
- package/dist/commands/views/unsubscribe.js +27 -0
- package/dist/commands/views/update.d.ts +45 -0
- package/dist/commands/views/update.js +166 -0
- package/dist/commands/webhooks/create.d.ts +12 -0
- package/dist/commands/webhooks/create.js +57 -0
- package/dist/commands/webhooks/delete.d.ts +11 -0
- package/dist/commands/webhooks/delete.js +22 -0
- package/dist/commands/webhooks/deliveries.d.ts +12 -0
- package/dist/commands/webhooks/deliveries.js +24 -0
- package/dist/commands/webhooks/list.d.ts +10 -0
- package/dist/commands/webhooks/list.js +33 -0
- package/dist/commands/webhooks/test.d.ts +11 -0
- package/dist/commands/webhooks/test.js +24 -0
- package/dist/commands/whoami.d.ts +15 -0
- package/dist/commands/whoami.js +195 -0
- package/dist/commands/widgets/add.d.ts +13 -0
- package/dist/commands/widgets/add.js +64 -0
- package/dist/commands/widgets/list.d.ts +10 -0
- package/dist/commands/widgets/list.js +66 -0
- package/dist/commands/widgets/remove.d.ts +13 -0
- package/dist/commands/widgets/remove.js +46 -0
- package/dist/commands/widgets/reorder.d.ts +13 -0
- package/dist/commands/widgets/reorder.js +23 -0
- package/dist/commands/widgets/revert.d.ts +13 -0
- package/dist/commands/widgets/revert.js +25 -0
- package/dist/commands/widgets/show.d.ts +13 -0
- package/dist/commands/widgets/show.js +47 -0
- package/dist/commands/widgets/update.d.ts +15 -0
- package/dist/commands/widgets/update.js +53 -0
- package/dist/commands/widgets/versions.d.ts +13 -0
- package/dist/commands/widgets/versions.js +25 -0
- package/dist/commands/wiki/cat.d.ts +15 -0
- package/dist/commands/wiki/cat.js +52 -0
- package/dist/commands/wiki/ls.d.ts +14 -0
- package/dist/commands/wiki/ls.js +61 -0
- package/dist/commands/wiki/mkdir.d.ts +16 -0
- package/dist/commands/wiki/mkdir.js +48 -0
- package/dist/commands/wiki/mv.d.ts +38 -0
- package/dist/commands/wiki/mv.js +178 -0
- package/dist/commands/wiki/rm.d.ts +15 -0
- package/dist/commands/wiki/rm.js +96 -0
- package/dist/commands/wiki/rmdir.d.ts +15 -0
- package/dist/commands/wiki/rmdir.js +101 -0
- package/dist/commands/wiki/search.d.ts +14 -0
- package/dist/commands/wiki/search.js +53 -0
- package/dist/commands/wiki/tree.d.ts +13 -0
- package/dist/commands/wiki/tree.js +44 -0
- package/dist/commands/wiki/update.d.ts +27 -0
- package/dist/commands/wiki/update.js +94 -0
- package/dist/commands/wiki/write.d.ts +55 -0
- package/dist/commands/wiki/write.js +233 -0
- package/dist/commands/work-views/create.d.ts +31 -0
- package/dist/commands/work-views/create.js +84 -0
- package/dist/commands/work-views/delete.d.ts +13 -0
- package/dist/commands/work-views/delete.js +39 -0
- package/dist/commands/work-views/list.d.ts +8 -0
- package/dist/commands/work-views/list.js +29 -0
- package/dist/commands/work-views/result.d.ts +11 -0
- package/dist/commands/work-views/result.js +37 -0
- package/dist/commands/work-views/update.d.ts +15 -0
- package/dist/commands/work-views/update.js +62 -0
- package/dist/commands/worklog/list.d.ts +21 -0
- package/dist/commands/worklog/list.js +53 -0
- package/dist/commands/worklog/rm.d.ts +13 -0
- package/dist/commands/worklog/rm.js +32 -0
- package/dist/commands/worklog/save.d.ts +25 -0
- package/dist/commands/worklog/save.js +73 -0
- package/dist/commands/worklog/search.d.ts +14 -0
- package/dist/commands/worklog/search.js +37 -0
- package/dist/commands/worklog/show.d.ts +13 -0
- package/dist/commands/worklog/show.js +36 -0
- package/dist/commands/worklog/stats.d.ts +10 -0
- package/dist/commands/worklog/stats.js +26 -0
- package/dist/commands/worklog/update.d.ts +17 -0
- package/dist/commands/worklog/update.js +50 -0
- package/dist/commands/workspaces/attribution.d.ts +36 -0
- package/dist/commands/workspaces/attribution.js +88 -0
- package/dist/commands/workspaces/list.d.ts +9 -0
- package/dist/commands/workspaces/list.js +60 -0
- package/dist/commands/workspaces/use.d.ts +25 -0
- package/dist/commands/workspaces/use.js +93 -0
- package/dist/hooks/command-not-found.d.ts +3 -0
- package/dist/hooks/command-not-found.js +171 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +8 -0
- package/dist/lib/action-listings.d.ts +5 -0
- package/dist/lib/action-listings.js +70 -0
- package/dist/lib/agent-actions.d.ts +35 -0
- package/dist/lib/agent-actions.js +162 -0
- package/dist/lib/agent-config.d.ts +2 -0
- package/dist/lib/agent-config.js +52 -0
- package/dist/lib/agent-resolver.d.ts +50 -0
- package/dist/lib/agent-resolver.js +184 -0
- package/dist/lib/agent-scope.d.ts +21 -0
- package/dist/lib/agent-scope.js +33 -0
- package/dist/lib/agent-spaces.d.ts +34 -0
- package/dist/lib/agent-spaces.js +66 -0
- package/dist/lib/agent-thread.d.ts +22 -0
- package/dist/lib/agent-thread.js +51 -0
- package/dist/lib/agentic-stream.d.ts +107 -0
- package/dist/lib/agentic-stream.js +471 -0
- package/dist/lib/api-fetch.d.ts +47 -0
- package/dist/lib/api-fetch.js +248 -0
- package/dist/lib/assignee-resolver.d.ts +103 -0
- package/dist/lib/assignee-resolver.js +204 -0
- package/dist/lib/auth-core-init.d.ts +44 -0
- package/dist/lib/auth-core-init.js +289 -0
- package/dist/lib/auth-storage.d.ts +83 -0
- package/dist/lib/auth-storage.js +481 -0
- package/dist/lib/balance.d.ts +266 -0
- package/dist/lib/balance.js +242 -0
- package/dist/lib/builtinActions.d.ts +32 -0
- package/dist/lib/builtinActions.js +110 -0
- package/dist/lib/bulk-task-targets.d.ts +46 -0
- package/dist/lib/bulk-task-targets.js +81 -0
- package/dist/lib/capability-matrix.d.ts +59 -0
- package/dist/lib/capability-matrix.js +176 -0
- package/dist/lib/channel-command-runners.d.ts +22 -0
- package/dist/lib/channel-command-runners.js +294 -0
- package/dist/lib/channel-tools.d.ts +75 -0
- package/dist/lib/channel-tools.js +60 -0
- package/dist/lib/characters.d.ts +47 -0
- package/dist/lib/characters.js +31 -0
- package/dist/lib/cli-runtime.d.ts +14 -0
- package/dist/lib/cli-runtime.js +91 -0
- package/dist/lib/code-handover.d.ts +68 -0
- package/dist/lib/code-handover.js +96 -0
- package/dist/lib/command-hygiene.d.ts +34 -0
- package/dist/lib/command-hygiene.js +206 -0
- package/dist/lib/command-manifest.d.ts +33 -0
- package/dist/lib/command-manifest.js +85 -0
- package/dist/lib/commitment-analytics.d.ts +77 -0
- package/dist/lib/commitment-analytics.js +102 -0
- package/dist/lib/commitment-endpoints.d.ts +33 -0
- package/dist/lib/commitment-endpoints.js +65 -0
- package/dist/lib/commitment-terms.d.ts +45 -0
- package/dist/lib/commitment-terms.js +100 -0
- package/dist/lib/commitments.d.ts +492 -0
- package/dist/lib/commitments.js +889 -0
- package/dist/lib/compasses.d.ts +96 -0
- package/dist/lib/compasses.js +170 -0
- package/dist/lib/completion-index.d.ts +31 -0
- package/dist/lib/completion-index.js +169 -0
- package/dist/lib/completion-scripts.d.ts +10 -0
- package/dist/lib/completion-scripts.js +167 -0
- package/dist/lib/config.d.ts +156 -0
- package/dist/lib/config.js +343 -0
- package/dist/lib/cred-envelope.d.ts +17 -0
- package/dist/lib/cred-envelope.js +48 -0
- package/dist/lib/credential-resolver.d.ts +85 -0
- package/dist/lib/credential-resolver.js +164 -0
- package/dist/lib/daemonBroker.d.ts +255 -0
- package/dist/lib/daemonBroker.js +516 -0
- package/dist/lib/delegated-cli.d.ts +17 -0
- package/dist/lib/delegated-cli.js +102 -0
- package/dist/lib/device-code.d.ts +71 -0
- package/dist/lib/device-code.js +145 -0
- package/dist/lib/device-id.d.ts +14 -0
- package/dist/lib/device-id.js +27 -0
- package/dist/lib/device-identity.d.ts +7 -0
- package/dist/lib/device-identity.js +21 -0
- package/dist/lib/entity-embeds.d.ts +61 -0
- package/dist/lib/entity-embeds.js +130 -0
- package/dist/lib/entity-open.d.ts +61 -0
- package/dist/lib/entity-open.js +93 -0
- package/dist/lib/exec-oversky.d.ts +26 -0
- package/dist/lib/exec-oversky.js +181 -0
- package/dist/lib/execution-target.d.ts +28 -0
- package/dist/lib/execution-target.js +112 -0
- package/dist/lib/file-mime.d.ts +1 -0
- package/dist/lib/file-mime.js +104 -0
- package/dist/lib/format.d.ts +82 -0
- package/dist/lib/format.js +218 -0
- package/dist/lib/git-task.d.ts +25 -0
- package/dist/lib/git-task.js +137 -0
- package/dist/lib/github-tools.d.ts +12 -0
- package/dist/lib/github-tools.js +68 -0
- package/dist/lib/grants.d.ts +57 -0
- package/dist/lib/grants.js +77 -0
- package/dist/lib/group-chat-message.d.ts +142 -0
- package/dist/lib/group-chat-message.js +262 -0
- package/dist/lib/harness-tiers.d.ts +78 -0
- package/dist/lib/harness-tiers.js +121 -0
- package/dist/lib/harnesses.d.ts +138 -0
- package/dist/lib/harnesses.js +168 -0
- package/dist/lib/hosted-machines.d.ts +178 -0
- package/dist/lib/hosted-machines.js +283 -0
- package/dist/lib/http-error.d.ts +62 -0
- package/dist/lib/http-error.js +107 -0
- package/dist/lib/inbox.d.ts +63 -0
- package/dist/lib/inbox.js +97 -0
- package/dist/lib/ingress.d.ts +54 -0
- package/dist/lib/ingress.js +72 -0
- package/dist/lib/initiatives.d.ts +45 -0
- package/dist/lib/initiatives.js +67 -0
- package/dist/lib/instruction-input.d.ts +60 -0
- package/dist/lib/instruction-input.js +135 -0
- package/dist/lib/integrations-helpers.d.ts +15 -0
- package/dist/lib/integrations-helpers.js +29 -0
- package/dist/lib/keychain.d.ts +45 -0
- package/dist/lib/keychain.js +318 -0
- package/dist/lib/label-scope.d.ts +40 -0
- package/dist/lib/label-scope.js +64 -0
- package/dist/lib/login.d.ts +78 -0
- package/dist/lib/login.js +495 -0
- package/dist/lib/machines.d.ts +131 -0
- package/dist/lib/machines.js +93 -0
- package/dist/lib/measures.d.ts +59 -0
- package/dist/lib/measures.js +95 -0
- package/dist/lib/memory-scope.d.ts +38 -0
- package/dist/lib/memory-scope.js +82 -0
- package/dist/lib/memory-workspace-guidance.d.ts +12 -0
- package/dist/lib/memory-workspace-guidance.js +16 -0
- package/dist/lib/message-content.d.ts +17 -0
- package/dist/lib/message-content.js +60 -0
- package/dist/lib/message-intent.d.ts +166 -0
- package/dist/lib/message-intent.js +287 -0
- package/dist/lib/migrate.d.ts +21 -0
- package/dist/lib/migrate.js +118 -0
- package/dist/lib/node-adapter.d.ts +50 -0
- package/dist/lib/node-adapter.js +365 -0
- package/dist/lib/non-json-response.d.ts +49 -0
- package/dist/lib/non-json-response.js +70 -0
- package/dist/lib/northstars.d.ts +73 -0
- package/dist/lib/northstars.js +278 -0
- package/dist/lib/oauthLogin.d.ts +111 -0
- package/dist/lib/oauthLogin.js +427 -0
- package/dist/lib/outbox.d.ts +110 -0
- package/dist/lib/outbox.js +423 -0
- package/dist/lib/proactiveApi.d.ts +257 -0
- package/dist/lib/proactiveApi.js +38 -0
- package/dist/lib/projects.d.ts +293 -0
- package/dist/lib/projects.js +519 -0
- package/dist/lib/prompt.d.ts +55 -0
- package/dist/lib/prompt.js +181 -0
- package/dist/lib/publicEndpoints.generated.d.ts +10 -0
- package/dist/lib/publicEndpoints.generated.js +15 -0
- package/dist/lib/quota-render.d.ts +61 -0
- package/dist/lib/quota-render.js +189 -0
- package/dist/lib/reflection.d.ts +57 -0
- package/dist/lib/reflection.js +140 -0
- package/dist/lib/refresh.d.ts +79 -0
- package/dist/lib/refresh.js +237 -0
- package/dist/lib/runtime-context.d.ts +75 -0
- package/dist/lib/runtime-context.js +158 -0
- package/dist/lib/runtime-grants.d.ts +53 -0
- package/dist/lib/runtime-grants.js +47 -0
- package/dist/lib/schedule.d.ts +223 -0
- package/dist/lib/schedule.js +193 -0
- package/dist/lib/session-task-endpoints.d.ts +50 -0
- package/dist/lib/session-task-endpoints.js +108 -0
- package/dist/lib/shell-quote.d.ts +26 -0
- package/dist/lib/shell-quote.js +42 -0
- package/dist/lib/skill-library.d.ts +10 -0
- package/dist/lib/skill-library.js +16 -0
- package/dist/lib/sky-code-agent.d.ts +160 -0
- package/dist/lib/sky-code-agent.js +417 -0
- package/dist/lib/sky-code-broker.d.ts +226 -0
- package/dist/lib/sky-code-broker.js +1148 -0
- package/dist/lib/sky-code-doctor.d.ts +42 -0
- package/dist/lib/sky-code-doctor.js +554 -0
- package/dist/lib/sky-code-managed.d.ts +179 -0
- package/dist/lib/sky-code-managed.js +354 -0
- package/dist/lib/sky-code.d.ts +240 -0
- package/dist/lib/sky-code.js +410 -0
- package/dist/lib/slack-tools.d.ts +97 -0
- package/dist/lib/slack-tools.js +47 -0
- package/dist/lib/space-argument.d.ts +32 -0
- package/dist/lib/space-argument.js +43 -0
- package/dist/lib/space-members.d.ts +7 -0
- package/dist/lib/space-members.js +39 -0
- package/dist/lib/space-output.d.ts +28 -0
- package/dist/lib/space-output.js +103 -0
- package/dist/lib/space-resolver.d.ts +86 -0
- package/dist/lib/space-resolver.js +181 -0
- package/dist/lib/space-room.d.ts +65 -0
- package/dist/lib/space-room.js +138 -0
- package/dist/lib/space-templates.d.ts +122 -0
- package/dist/lib/space-templates.js +256 -0
- package/dist/lib/ssh-detect.d.ts +29 -0
- package/dist/lib/ssh-detect.js +44 -0
- package/dist/lib/task-execution.d.ts +90 -0
- package/dist/lib/task-execution.js +329 -0
- package/dist/lib/task-extras.d.ts +78 -0
- package/dist/lib/task-extras.js +100 -0
- package/dist/lib/task-instruction-offer.d.ts +5 -0
- package/dist/lib/task-instruction-offer.js +116 -0
- package/dist/lib/task-plan-output.d.ts +6 -0
- package/dist/lib/task-plan-output.js +28 -0
- package/dist/lib/task-pr.d.ts +11 -0
- package/dist/lib/task-pr.js +11 -0
- package/dist/lib/task-ref-resolver.d.ts +59 -0
- package/dist/lib/task-ref-resolver.js +133 -0
- package/dist/lib/task-report.d.ts +16 -0
- package/dist/lib/task-report.js +71 -0
- package/dist/lib/task-resolver.d.ts +45 -0
- package/dist/lib/task-resolver.js +127 -0
- package/dist/lib/task-transcript.d.ts +82 -0
- package/dist/lib/task-transcript.js +201 -0
- package/dist/lib/task-transfer.d.ts +42 -0
- package/dist/lib/task-transfer.js +311 -0
- package/dist/lib/task-tree.d.ts +23 -0
- package/dist/lib/task-tree.js +152 -0
- package/dist/lib/task-view-render.d.ts +71 -0
- package/dist/lib/task-view-render.js +125 -0
- package/dist/lib/tasks.d.ts +195 -0
- package/dist/lib/tasks.js +714 -0
- package/dist/lib/telephony-call.d.ts +36 -0
- package/dist/lib/telephony-call.js +37 -0
- package/dist/lib/tone-input.d.ts +48 -0
- package/dist/lib/tone-input.js +187 -0
- package/dist/lib/tone-workspace.d.ts +13 -0
- package/dist/lib/tone-workspace.js +43 -0
- package/dist/lib/triggers.d.ts +422 -0
- package/dist/lib/triggers.js +920 -0
- package/dist/lib/update-check.d.ts +31 -0
- package/dist/lib/update-check.js +233 -0
- package/dist/lib/usage-discovery.d.ts +75 -0
- package/dist/lib/usage-discovery.js +227 -0
- package/dist/lib/view-subscriptions.d.ts +32 -0
- package/dist/lib/view-subscriptions.js +61 -0
- package/dist/lib/views/vocabulary.d.ts +8 -0
- package/dist/lib/views/vocabulary.js +23 -0
- package/dist/lib/voice-call-intent.d.ts +65 -0
- package/dist/lib/voice-call-intent.js +106 -0
- package/dist/lib/warnings.d.ts +23 -0
- package/dist/lib/warnings.js +24 -0
- package/dist/lib/web-url.d.ts +176 -0
- package/dist/lib/web-url.js +358 -0
- package/dist/lib/wiki-update.d.ts +29 -0
- package/dist/lib/wiki-update.js +49 -0
- package/dist/lib/wiki.d.ts +53 -0
- package/dist/lib/wiki.js +146 -0
- package/dist/lib/workflow-templates.d.ts +145 -0
- package/dist/lib/workflow-templates.js +571 -0
- package/dist/lib/worklogs.d.ts +52 -0
- package/dist/lib/worklogs.js +100 -0
- package/dist/lib/workspace-header.d.ts +22 -0
- package/dist/lib/workspace-header.js +41 -0
- package/dist/lib/workspace-transfer.d.ts +20 -0
- package/dist/lib/workspace-transfer.js +11 -0
- package/dist/lib/workspaces.d.ts +75 -0
- package/dist/lib/workspaces.js +111 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/aead.d.ts +24 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/aead.js +65 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/authExpiredDetector.d.ts +65 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/authExpiredDetector.js +89 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/authHelper.d.ts +51 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/authHelper.js +321 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialEnvelope.d.ts +85 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialEnvelope.js +230 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialEnvelopeBridge.d.ts +116 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialEnvelopeBridge.js +637 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialResolver.d.ts +278 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/credentialResolver.js +423 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/daemonPair.d.ts +172 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/daemonPair.js +495 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/daemonScopes.d.ts +74 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/daemonScopes.js +84 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/deviceIdentityBridge.d.ts +113 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/deviceIdentityBridge.js +591 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/deviceKey.d.ts +167 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/deviceKey.js +332 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/fdToken.d.ts +17 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/fdToken.js +238 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/harnessTrust.d.ts +72 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/harnessTrust.js +103 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/headers-helper.d.ts +25 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/headers-helper.js +323 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/index.d.ts +37 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/index.js +305 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/jwtUtils.d.ts +35 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/jwtUtils.js +61 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/index.d.ts +89 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/index.js +208 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/linux.d.ts +92 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/linux.js +596 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/macos.d.ts +112 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/macos.js +599 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/types.d.ts +111 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/types.js +43 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/windows.d.ts +71 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/windows.js +350 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/zeroize-registry.d.ts +44 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/kek/zeroize-registry.js +63 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/legacyStatePreflight.d.ts +67 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/legacyStatePreflight.js +78 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/localIdentity.d.ts +54 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/localIdentity.js +57 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/loginLocalhost.d.ts +115 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/loginLocalhost.js +368 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/loginWithLocalhost.d.ts +131 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/loginWithLocalhost.js +359 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/machineId.d.ts +35 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/machineId.js +239 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/messages.d.ts +9 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/messages.js +44 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/package.json +3 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/pkce.d.ts +62 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/pkce.js +158 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/recoveryCode.d.ts +61 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/recoveryCode.js +213 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refresh.d.ts +215 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refresh.js +877 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refreshClassification.d.ts +53 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refreshClassification.js +105 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refreshScheduler.d.ts +53 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/refreshScheduler.js +332 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/runtime.d.ts +149 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/runtime.js +136 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/spawnEnv.d.ts +76 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/spawnEnv.js +153 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/ttlParser.d.ts +54 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/ttlParser.js +87 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/types.d.ts +91 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/cjs/types.js +26 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/aead.d.ts +24 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/aead.js +57 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/authExpiredDetector.d.ts +65 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/authExpiredDetector.js +85 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/authHelper.d.ts +51 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/authHelper.js +311 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialEnvelope.d.ts +85 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialEnvelope.js +213 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialEnvelopeBridge.d.ts +116 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialEnvelopeBridge.js +620 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialResolver.d.ts +278 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/credentialResolver.js +414 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/daemonPair.d.ts +172 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/daemonPair.js +476 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/daemonScopes.d.ts +74 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/daemonScopes.js +80 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/deviceIdentityBridge.d.ts +113 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/deviceIdentityBridge.js +572 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/deviceKey.d.ts +167 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/deviceKey.js +320 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/fdToken.d.ts +17 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/fdToken.js +231 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/harnessTrust.d.ts +72 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/harnessTrust.js +97 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/headers-helper.d.ts +25 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/headers-helper.js +316 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/index.d.ts +37 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/index.js +144 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/jwtUtils.d.ts +35 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/jwtUtils.js +57 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/index.d.ts +89 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/index.js +162 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/linux.d.ts +92 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/linux.js +585 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/macos.d.ts +112 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/macos.js +586 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/types.d.ts +111 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/types.js +39 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/windows.d.ts +71 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/windows.js +344 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/zeroize-registry.d.ts +44 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/kek/zeroize-registry.js +58 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/legacyStatePreflight.d.ts +67 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/legacyStatePreflight.js +71 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/localIdentity.d.ts +54 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/localIdentity.js +54 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/loginLocalhost.d.ts +115 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/loginLocalhost.js +355 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/loginWithLocalhost.d.ts +131 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/loginWithLocalhost.js +353 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/machineId.d.ts +35 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/machineId.js +231 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/messages.d.ts +9 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/messages.js +40 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/pkce.d.ts +62 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/pkce.js +148 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/recoveryCode.d.ts +61 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/recoveryCode.js +207 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refresh.d.ts +215 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refresh.js +863 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refreshClassification.d.ts +53 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refreshClassification.js +106 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refreshScheduler.d.ts +53 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/refreshScheduler.js +329 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/runtime.d.ts +149 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/runtime.js +121 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/spawnEnv.d.ts +76 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/spawnEnv.js +149 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/ttlParser.d.ts +54 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/ttlParser.js +83 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/types.d.ts +91 -0
- package/dist/node_modules/@skrr-ai/auth-core/dist/esm/types.js +21 -0
- package/dist/node_modules/@skrr-ai/auth-core/package.json +33 -0
- package/dist/node_modules/@skrr-ai/data-provider/index.js +47601 -0
- package/dist/node_modules/@skrr-ai/data-provider/package.json +9 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/contract.d.ts +212 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/contract.js +150 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/index.d.ts +57 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/index.js +89 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/loopback-server.d.ts +70 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/loopback-server.js +216 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/managed-inference-broker.d.ts +226 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/managed-inference-broker.js +1063 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/managed-inference-renewal.d.ts +251 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/managed-inference-renewal.js +294 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/cjs/package.json +3 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/contract.d.ts +212 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/contract.js +146 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/index.d.ts +57 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/index.js +60 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/loopback-server.d.ts +70 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/loopback-server.js +212 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/managed-inference-broker.d.ts +226 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/managed-inference-broker.js +1054 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/managed-inference-renewal.d.ts +251 -0
- package/dist/node_modules/@skrr-ai/inference-broker/dist/esm/managed-inference-renewal.js +289 -0
- package/dist/node_modules/@skrr-ai/inference-broker/package.json +19 -0
- package/oclif.manifest.json +76131 -0
- package/package.json +426 -0
package/README.md
ADDED
|
@@ -0,0 +1,1952 @@
|
|
|
1
|
+
# @skrr-ai/cli
|
|
2
|
+
|
|
3
|
+
Command-line interface for OverSky, wrapping the `@skrr-ai/data-provider` client.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
**Comprehensive CRUD + workflow surface across the OverSky public API.**
|
|
8
|
+
130+ commands across auth, conversations, messages, agents (+ groups + shares),
|
|
9
|
+
universal triggers, spaces (+ members + briefs + heartbeats + triggers + widgets + skills),
|
|
10
|
+
goals, tasks (+ comments + labels + approvals + attachments + cascade + DRI +
|
|
11
|
+
observability), and shared links.
|
|
12
|
+
|
|
13
|
+
### Command Catalog
|
|
14
|
+
|
|
15
|
+
| Topic | Commands |
|
|
16
|
+
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
17
|
+
| **auth** | `login`, `logout`, `whoami` |
|
|
18
|
+
| **convos** | `list` (`--agent`, `--search`, `--tag`, `--archived`, `--order`), `show`, `update`, `delete`, `archive`, `unarchive`, `fork`, `duplicate`, `import` |
|
|
19
|
+
| **messages** | `list` (`--limit`, `--head`), `show`, `update`, `update-content`, `feedback`, `edit-artifact` |
|
|
20
|
+
| **agent call** | `request`, `show`, `cancel` — autonomous Agent → owner app voice-call invites; the owner must accept before a LiveKit call starts |
|
|
21
|
+
| **shares** (conversation share links) | `list`, `get`, `link-for`, `create`, `update`, `delete` |
|
|
22
|
+
| **agents** | `list`, `show`, `overview`, `chat`, `create`, `update`, `attach-harness`, `delete`, `duplicate`, `revert`, `versions`, `visibility`, `schedule`, `upcoming`, `plan-day`, `reflect`, `schedule-overview`, `activity` |
|
|
23
|
+
| **agents triggers** | `list`, `create`, `show`, `update`, `enable`, `disable`, `fire`, `delete`, `runs`, `replay`, `policy` (agent-scoped facade over the universal trigger engine) |
|
|
24
|
+
| **agents todos** | `list`, `create`, `cancel` (the day-plan feed; Smart Schedule = `agents plan-day`) |
|
|
25
|
+
| **agent-groups** | `list`, `show`, `create`, `update`, `delete`, `add`, `remove` |
|
|
26
|
+
| **agent-shares** | `received`, `sent`, `with`, `list-for`, `create`, `accept`, `decline`, `revoke`, `leave` |
|
|
27
|
+
| **triggers** | `list`, `show`, `create`, `update`, `delete`, `enable`, `disable`, `fire`, `fire-detail`, `replay`, `audit`, `capabilities`, `event-catalog`, `parse-intent`, `rotate-secret` |
|
|
28
|
+
| **spaces** | `list`, `show`, `create`, `update`, `delete`, `archive`, `unarchive`, `tasks`, `conversations`, `snapshot`, `goals`, `revisions`, `subspaces`, `move`, `reorder`, `pin`, `summary`, `bootstrap`, `capacity`, `auto-executor update/preview/run` |
|
|
29
|
+
| **spaces members** | `list`, `search`, `add`, `remove` |
|
|
30
|
+
| **spaces briefs** | `list`, `get`, `set`, `delete` |
|
|
31
|
+
| **spaces files** | `list`, `upload`, `rename`, `move`, `delete`, `folders list/create/update/delete` |
|
|
32
|
+
| **spaces actions** | `list`, `add`, `update`, `delete`, `replace` |
|
|
33
|
+
| **spaces views** | `list`, `create`, `update`, `delete`, `duplicate`, `reorder` |
|
|
34
|
+
| **spaces live** | `scene`, `cards list/create/update/delete/reorder` |
|
|
35
|
+
| **spaces preferences** | `show`, `tabs` |
|
|
36
|
+
| **spaces heartbeats** | `list`, `create`, `update`, `delete`, `status` |
|
|
37
|
+
| **spaces triggers** | `show`, `set`, `delete` |
|
|
38
|
+
| **spaces widgets** | `list`, `add`, `remove` |
|
|
39
|
+
| **spaces skills** | `list`, `add`, `remove`, `pin` |
|
|
40
|
+
| **spaces labels** | `list`, `add`, `remove` (attach/detach; filter with `spaces list --label`) |
|
|
41
|
+
| **labels** | `list`, `palette`, `create`, `update`, `archive`, `restore`, `delete`, `reorder` (unified labels across `user`, `space`, and `workspace` scopes) |
|
|
42
|
+
| **chats triggers** | `show`, `set` |
|
|
43
|
+
| **dm** | `list`, `show`, `messages`, `threads`, `thread show/messages/follow/mute/share`, `send` (agent 1:1 main chat and Slack-style Thread controls) |
|
|
44
|
+
| **diagnostics** | `context`, `doctor`, `usage`, `commands` (agent-friendly runtime identity, readiness, progressive token-budgeted discovery, and complete machine-readable schemas) |
|
|
45
|
+
| **goals** | `list`, `show`, `create`, `update`, `delete`, `descendants`, `tasks`, `archive`, `revisions` |
|
|
46
|
+
| **commitments** | `list`, `show`, `create`, `plan`, `preflight`, `update`, `checks`, `check-now`, `autonomy`, `pause`, `resume`, `complete`, `subject`, `attach`, `detach`, `reports`, `export`, `import`, `fork` (durable agent commitment contracts) |
|
|
47
|
+
| **goals briefing** | `enable`, `disable`, `preview` |
|
|
48
|
+
| **tasks** | `list`, `show`, `create`, `upsert`, `create-tree`, `bulk-update`, `tree`, `update`, `delete`, `actionability`, `ready`, `start`, `active`, `monitor`, `watch`, `wait`, `continue-ready`, `move`, `complete`, `children`, `ancestors`, `descendants`, `activity`, `runs`, `execution-summary`, `execution-timeline`, `replay`, `checkout`, `release`, `start-all`, `cancel-cascade`, `cascade-status`, `dri-status`, `duplicate-pipeline`, `archive`, `today`, `prompt-log`, `revisions`, `transcript`, `output` |
|
|
49
|
+
| **tasks input** | `show`, `answer`, `dismiss` (durable Human-input handoff) |
|
|
50
|
+
| **tasks comments** | `list`, `add`, `anchor`, `delete`, `resolve`, `reopen` (human collaboration threads) |
|
|
51
|
+
| **tasks events** | `append`, `list`, `tail` (canonical typed append-only task facts) |
|
|
52
|
+
| **tasks labels** | `list`, `create`, `delete` |
|
|
53
|
+
| **tasks approvals** | `list`, `create`, `delete`, `resolve` |
|
|
54
|
+
| **tasks attachments** | `list`, `delete`, `upload`, `download` |
|
|
55
|
+
| **integrations** | `toolkits`, `search`, `execute`, `tools list`, `tools allow`, `connections connect`, `connections list`, `connections finalize`, `connections disconnect`, `connections reconnect` |
|
|
56
|
+
| **runtimes** | `start`, `list`, `status`, `exec`, `pull`, `connect`, `pause`, `resume`, `destroy` (OverSky Hosted Machine workspaces backed by the server runtime engine) |
|
|
57
|
+
| **github** | `connect`, `finalize`, `connections`, `tools`, `run`, `allow-tools`, `reconnect`, `disconnect` |
|
|
58
|
+
| **slack** | `send-as-agent`, `list-channels`, `list-users`, `read-channel`, `read-thread`, `tools`, `run` |
|
|
59
|
+
|
|
60
|
+
### Reading history (conversations, tasks, agent output)
|
|
61
|
+
|
|
62
|
+
Recent conversations, optionally scoped to one agent, then the transcript:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
sky convos list --limit 10 # id, title, agent, updated
|
|
66
|
+
sky convos list --agent <agent-id> # server-side agent scope
|
|
67
|
+
sky convos list --search "login bug" --json # Meilisearch-backed
|
|
68
|
+
sky messages list -c <convo-id> --limit 20 # newest 20 (default: whole transcript)
|
|
69
|
+
sky messages show <convo-id> <message-id> # one message, full body
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
Tasks, and what the agent actually produced:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
sky tasks list --assignee-agent <agent-id> # what this agent is working on
|
|
76
|
+
sky tasks show <task-id> # includes the Convo: pointer
|
|
77
|
+
sky tasks output <task-id> # verdict + last-run + final agent message
|
|
78
|
+
sky tasks transcript <task-id> --assistant-only # full agent transcript, no prompt
|
|
79
|
+
sky tasks comments list <task-id> # raw comment thread
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
One agent's recent work across all three surfaces:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
sky agents activity <agent-id> --limit 10 # merged DM + conversations + tasks feed
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
`--agent` / `agents activity` need a server that implements `?agentId=` on
|
|
89
|
+
`GET /api/convos`. Against an older deployment `convos list --agent` fails with
|
|
90
|
+
`SERVER_AGENT_FILTER_UNSUPPORTED` rather than returning another agent's
|
|
91
|
+
conversations, and `agents activity` filters locally with a printed caveat.
|
|
92
|
+
|
|
93
|
+
### Production CLI Contract
|
|
94
|
+
|
|
95
|
+
Sky CLI is designed for both humans and daemon agents. New commands should
|
|
96
|
+
preserve these contracts:
|
|
97
|
+
|
|
98
|
+
- Positional args never read from stdin implicitly. Every `Args.string` must
|
|
99
|
+
set `ignoreStdin: true`; commands that consume stdin expose an explicit flag
|
|
100
|
+
or value such as `--from-json -` or an input arg whose literal value is `-`.
|
|
101
|
+
- Machine callers use `--json` or `SKY_JSON=1`. Local validation errors,
|
|
102
|
+
auth errors, network errors, and API errors all emit `{ ok: false, error }`
|
|
103
|
+
in JSON mode.
|
|
104
|
+
- Commands that accept `--from-json` also expose `--json`; typed flags override
|
|
105
|
+
JSON fields on conflict.
|
|
106
|
+
- Agent runtime scripts start with `sky context --json`, then `sky usage --json`.
|
|
107
|
+
It is the recommended command-discovery bootstrap: the overview is generated
|
|
108
|
+
from the oclif manifest and stays within a small token budget. Read exactly
|
|
109
|
+
the relevant reference next with `sky usage tasks --json` (or the convenient
|
|
110
|
+
`sky tasks usage --json` form), then use `sky commands --schema "tasks list"`
|
|
111
|
+
only when the selected command needs its complete flag contract. Use
|
|
112
|
+
`sky doctor --json` for auth/build readiness and `sky commands --audit --json`
|
|
113
|
+
for command-surface hygiene.
|
|
114
|
+
- Side-effecting commands use explicit idempotency keys only when the caller
|
|
115
|
+
owns retry coordination. Daemon session commands derive stable defaults when
|
|
116
|
+
possible, such as `sky agent message send --text "..."`.
|
|
117
|
+
|
|
118
|
+
### Agent-initiated app voice calls
|
|
119
|
+
|
|
120
|
+
`sky agent call` is a session-only consent flow, not a phone dialer. It reads
|
|
121
|
+
the Agent identity and owner target from `OVERSKY_SESSION_TOKEN`,
|
|
122
|
+
`OVERSKY_SESSION_ID`, and `OVERSKY_SESSION_AGENT_ID`; no flag or JSON field can
|
|
123
|
+
select another person. The user receives an in-app/push invitation and must
|
|
124
|
+
accept it before the normal LiveKit call is created.
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
# From an autonomous daemon session
|
|
128
|
+
sky agent call request \
|
|
129
|
+
--reason "The production rollback decision needs you." \
|
|
130
|
+
--conversation <conversation-id> \
|
|
131
|
+
--expires-in 120 \
|
|
132
|
+
--json
|
|
133
|
+
|
|
134
|
+
sky agent call show <call-id> --json
|
|
135
|
+
sky agent call cancel <call-id> --json
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
The request is idempotent. With no explicit `--idempotency-key`, Sky derives a
|
|
139
|
+
stable key from the daemon request plus the call payload. A second pending call
|
|
140
|
+
from the same Agent to the same owner is coalesced rather than ringing again.
|
|
141
|
+
|
|
142
|
+
This feature has no PSTN/SIP/Twilio integration and never accepts or stores a
|
|
143
|
+
phone number. Calling a real mobile number is a separate Phase 2 capability:
|
|
144
|
+
it requires verified-number ownership, explicit renewable consent, quiet-hour
|
|
145
|
+
and frequency controls, recording consent, and a full audit trail. It is not a
|
|
146
|
+
default Sky CLI capability.
|
|
147
|
+
|
|
148
|
+
Run the hygiene audit before publishing CLI changes:
|
|
149
|
+
|
|
150
|
+
```bash
|
|
151
|
+
sky commands --audit --json
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
### PSTN phone calls (Phase 2)
|
|
155
|
+
|
|
156
|
+
`sky agent phone-call request --purpose "…"` is an explicit, autonomous-
|
|
157
|
+
session-only command. It does not accept a phone number, carrier setting,
|
|
158
|
+
caller ID, or recording option; the server derives the owner and agent and
|
|
159
|
+
uses only that owner's verified endpoint plus active, renewable consent.
|
|
160
|
+
|
|
161
|
+
It is disabled unless the telephony deployment is configured, and is not an
|
|
162
|
+
alias for the normal browser/LiveKit app call. Real mobile dialing requires a
|
|
163
|
+
verified endpoint, explicit continuing consent, owner-selected quiet hours and
|
|
164
|
+
frequency limits, a fixed AI/no-recording disclosure, and audit records.
|
|
165
|
+
|
|
166
|
+
### Known Gaps
|
|
167
|
+
|
|
168
|
+
Agent detail/config/mini-computer parity now includes provider-backed commands
|
|
169
|
+
for preferences/notepad, agent files and folders, avatar upload/generation,
|
|
170
|
+
intuitions, widget history/reordering, publishing releases, channel
|
|
171
|
+
configuration, and workspace header scoping. Remaining gaps are architectural
|
|
172
|
+
or intentionally not exposed as request/response APIs:
|
|
173
|
+
|
|
174
|
+
- **Generic streaming chat** (`/api/agents/chat`, `/api/agentic/chat`): the CLI
|
|
175
|
+
has no SSE/WebSocket adapter — the node-adapter is pure request/response.
|
|
176
|
+
Chat streaming would need a separate client layer (Socket.io client + event
|
|
177
|
+
plumbing). This does not include persistent main-chat DM sends; use
|
|
178
|
+
`sky agent message send --text "..." --json` for that agent-facing path.
|
|
179
|
+
- **2FA / OAuth / SAML / LDAP sign-in**: `sky login` exits code 6 on
|
|
180
|
+
`twoFAPending`. The server supports these; the CLI does not.
|
|
181
|
+
- **Message delete**: `DELETE /api/messages/:convoId/:messageId` — server
|
|
182
|
+
only.
|
|
183
|
+
- **Tests**: the CLI has focused Jest coverage, but broader command/API
|
|
184
|
+
contract coverage remains a follow-up.
|
|
185
|
+
- **Task hierarchy reparenting via typed flag**: `tasks update` accepts
|
|
186
|
+
`parentId` only via `--from-json`. A typed `--parent` flag would be a small
|
|
187
|
+
follow-up.
|
|
188
|
+
|
|
189
|
+
## Prerequisites
|
|
190
|
+
|
|
191
|
+
- Node.js 20+
|
|
192
|
+
- A running OverSky API (default target: `http://localhost:3080`)
|
|
193
|
+
- `@skrr-ai/data-provider` must be built — it's a workspace dep and the CLI
|
|
194
|
+
imports from its `dist/`
|
|
195
|
+
|
|
196
|
+
## Install
|
|
197
|
+
|
|
198
|
+
From the repo root (the CLI is a workspace, so there's no separate install):
|
|
199
|
+
|
|
200
|
+
```bash
|
|
201
|
+
# 1. Install workspace deps (picks up cli/ because it was added to the root
|
|
202
|
+
# package.json "workspaces" array).
|
|
203
|
+
npm install
|
|
204
|
+
|
|
205
|
+
# 2. Build the data-provider if you haven't already.
|
|
206
|
+
npm run build:data-provider
|
|
207
|
+
|
|
208
|
+
# 3. Build the CLI.
|
|
209
|
+
cd cli && npm run build
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
## Run
|
|
213
|
+
|
|
214
|
+
From `cli/`:
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
./bin/run.js login
|
|
218
|
+
./bin/run.js whoami
|
|
219
|
+
./bin/run.js convos list
|
|
220
|
+
./bin/run.js agents list
|
|
221
|
+
./bin/run.js logout
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
Or globally, after `npm link` from `cli/`:
|
|
225
|
+
|
|
226
|
+
```bash
|
|
227
|
+
sky login
|
|
228
|
+
sky convos list --json
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
## GitHub tools from local runtimes
|
|
232
|
+
|
|
233
|
+
`sky github` is the GitHub-specific facade over OverSky's integration
|
|
234
|
+
provider bridge. Local daemon sessions should set `OVERSKY_SESSION_AGENT_ID`;
|
|
235
|
+
the CLI then binds every GitHub command to that selected agent and refuses a
|
|
236
|
+
conflicting `--agent`.
|
|
237
|
+
|
|
238
|
+
Connect GitHub for the selected agent:
|
|
239
|
+
|
|
240
|
+
```bash
|
|
241
|
+
sky github connect
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
List or search the agent's available GitHub tools:
|
|
245
|
+
|
|
246
|
+
```bash
|
|
247
|
+
sky github tools --json
|
|
248
|
+
sky github tools "pull request" --json
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
Run a tool from stdin JSON. Use `--request-id` for side effects so a local
|
|
252
|
+
runtime can safely retry the same action without firing it twice:
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
sky github run create_issue --request-id run_abc:github_1 --json - <<'JSON'
|
|
256
|
+
{
|
|
257
|
+
"owner": "acme",
|
|
258
|
+
"repo": "app",
|
|
259
|
+
"title": "Bug from local runtime",
|
|
260
|
+
"body": "Details..."
|
|
261
|
+
}
|
|
262
|
+
JSON
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
Restrict or clear the GitHub tool allowlist for an agent:
|
|
266
|
+
|
|
267
|
+
```bash
|
|
268
|
+
sky github allow-tools --tools create_issue,list_pull_requests
|
|
269
|
+
sky github allow-tools --all
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
Manage the OAuth grant:
|
|
273
|
+
|
|
274
|
+
```bash
|
|
275
|
+
sky github reconnect
|
|
276
|
+
sky github disconnect
|
|
277
|
+
sky github finalize <requestId>
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
## Hosted Machine workspaces
|
|
281
|
+
|
|
282
|
+
`sky machines hosted` is the CLI surface for OverSky Hosted Machine sessions. It
|
|
283
|
+
talks to `/api/agentic/sandbox-sessions`, so the CLI works with the OverSky
|
|
284
|
+
session id (`sbs_...`) and never receives raw provider handles such as E2B
|
|
285
|
+
sandbox ids.
|
|
286
|
+
|
|
287
|
+
Start a scratch runtime and wait for it to become ready:
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
sky machines hosted start --name scratch --wait
|
|
291
|
+
sky machines hosted list
|
|
292
|
+
sky machines hosted status <runtime-id> --watch
|
|
293
|
+
sky machines hosted pull <runtime-id> /home/user/app ./app-copy
|
|
294
|
+
sky context --json
|
|
295
|
+
sky agents attach-harness <runtime-id>
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
`runtimes start --agent <agent-id>` associates session metadata only. Use
|
|
299
|
+
`agents attach-harness` to update the current/context agent's default runtime
|
|
300
|
+
engine. In external scripts, pass `--agent <agent-id>` explicitly.
|
|
301
|
+
|
|
302
|
+
Start and attach a GitHub repo. Repository access still flows through the
|
|
303
|
+
server-side GitHub App, so the CLI needs the installation id:
|
|
304
|
+
|
|
305
|
+
```bash
|
|
306
|
+
sky machines hosted start \
|
|
307
|
+
--repo acme/app \
|
|
308
|
+
--installation-id 123 \
|
|
309
|
+
--branch main \
|
|
310
|
+
--wait
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
Run commands against a specific Hosted Machine session:
|
|
314
|
+
|
|
315
|
+
```bash
|
|
316
|
+
sky machines hosted exec <runtime-id> -- pwd
|
|
317
|
+
sky machines hosted exec <runtime-id> --cwd /home/user/app -- npm test
|
|
318
|
+
sky machines hosted pull <runtime-id> /home/user/app ./app-copy
|
|
319
|
+
sky machines hosted connect <runtime-id>
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
`pull` copies files or directories back through the execute API as a tar.gz
|
|
323
|
+
archive. `connect` is a lightweight command REPL over the same session execute
|
|
324
|
+
API. It is intentionally not a raw provider shell and does not expose E2B
|
|
325
|
+
sandbox ids.
|
|
326
|
+
|
|
327
|
+
Lifecycle controls:
|
|
328
|
+
|
|
329
|
+
```bash
|
|
330
|
+
sky machines hosted pause <runtime-id>
|
|
331
|
+
sky machines hosted resume <runtime-id> --wait
|
|
332
|
+
sky machines hosted destroy <runtime-id>
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
For fast iteration while editing source, run the TypeScript compiler in watch
|
|
336
|
+
mode in one terminal:
|
|
337
|
+
|
|
338
|
+
```bash
|
|
339
|
+
cd cli && npm run watch
|
|
340
|
+
```
|
|
341
|
+
|
|
342
|
+
…then invoke `./bin/run.js <cmd>` from another terminal. Each save recompiles
|
|
343
|
+
to `dist/` and the next invocation picks up the change.
|
|
344
|
+
|
|
345
|
+
## Commands
|
|
346
|
+
|
|
347
|
+
### `sky login`
|
|
348
|
+
|
|
349
|
+
Sign in to an OverSky instance.
|
|
350
|
+
|
|
351
|
+
**You probably don't need to run this at all.** If the local `oversky`
|
|
352
|
+
daemon is authenticated, every `sky` command silently auto-brokers a
|
|
353
|
+
sibling cli-scope token on first use — no `sky login`, no browser, no
|
|
354
|
+
device code, no user interaction whatsoever. See
|
|
355
|
+
[Auto-broker on first use](#auto-broker-on-first-use) below.
|
|
356
|
+
|
|
357
|
+
**When `sky login` is still useful:**
|
|
358
|
+
|
|
359
|
+
- You want to log in to a DIFFERENT account than the daemon
|
|
360
|
+
- You want to log in to a DIFFERENT server (`--base-url <url>`)
|
|
361
|
+
- The daemon isn't installed / isn't running, and you want sky alone
|
|
362
|
+
- You want to force a re-authentication (e.g. revoked refresh family)
|
|
363
|
+
|
|
364
|
+
**Behavior when invoked explicitly:**
|
|
365
|
+
|
|
366
|
+
- If the daemon is authed for the same server, `sky login` brokers the
|
|
367
|
+
handoff (still no browser).
|
|
368
|
+
- If the daemon is not running or not authed, the CLI runs its own
|
|
369
|
+
PKCE-localhost OAuth flow (popping your browser); device-code is the
|
|
370
|
+
secondary fallback (SSH, port-bind failure, `--device-code`).
|
|
371
|
+
|
|
372
|
+
```bash
|
|
373
|
+
sky login
|
|
374
|
+
sky login --base-url https://oversky.ai
|
|
375
|
+
sky login --device-code # skip broker + PKCE; use device-code directly
|
|
376
|
+
```
|
|
377
|
+
|
|
378
|
+
On first run, pass `--base-url` to target your API host. It is saved to
|
|
379
|
+
`~/.sky/config.json` and reused until you override it again.
|
|
380
|
+
|
|
381
|
+
Flags:
|
|
382
|
+
|
|
383
|
+
- `-u, --base-url <url>` — API base URL to save and use
|
|
384
|
+
- `--device-code` — force the device-code flow (also skips the
|
|
385
|
+
daemon broker pre-flight)
|
|
386
|
+
- `--port <n>` — pin the localhost callback port (PKCE flow)
|
|
387
|
+
- `--scope <cli|daemon>` — token scope (default `cli`)
|
|
388
|
+
- `--recovery-code <code>` — non-interactive sign-in with a printable
|
|
389
|
+
recovery code
|
|
390
|
+
|
|
391
|
+
Env overrides:
|
|
392
|
+
|
|
393
|
+
- `OVERSKY_SKIP_DAEMON_BROKER=1` — disable the broker pre-flight
|
|
394
|
+
- `OVERSKY_FORCE_DEVICE_CODE=1` — same as `--device-code`
|
|
395
|
+
- `OVERSKY_REFRESH_TOKEN=...` + `OVERSKY_CLI_ID=...` — non-interactive
|
|
396
|
+
restore from a backed-up refresh token
|
|
397
|
+
|
|
398
|
+
2FA, OAuth, SAML, and LDAP are not yet supported via the interactive
|
|
399
|
+
PKCE / device-code flows. (The recovery-code path is unaffected.)
|
|
400
|
+
|
|
401
|
+
### Auto-broker on first use
|
|
402
|
+
|
|
403
|
+
Every `sky` command (except `login`, `logout`, `pair`,
|
|
404
|
+
`generate-recovery-code`) runs the daemon-broker handoff transparently
|
|
405
|
+
when no token is in the keychain. So:
|
|
406
|
+
|
|
407
|
+
```bash
|
|
408
|
+
oversky login # authenticate the daemon, once
|
|
409
|
+
sky tasks list # silently auto-brokers, persists, runs
|
|
410
|
+
sky tasks list --json # uses the persisted token, no broker call
|
|
411
|
+
sky whoami # confirms identity from the persisted token
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
There is no opt-in flag. The mechanism is the long-term default.
|
|
415
|
+
|
|
416
|
+
**Skip rules** — auto-broker does NOT fire when any of these hold:
|
|
417
|
+
|
|
418
|
+
- `--bare` flag is set (operator opted out of keychain/file persistence)
|
|
419
|
+
- `OVERSKY_TOKEN` or `OVERSKY_REFRESH_TOKEN` env vars are set (operator
|
|
420
|
+
controls auth out-of-band — CI runners, ephemeral containers)
|
|
421
|
+
- `OVERSKY_SKIP_DAEMON_BROKER=1` (explicit escape hatch for debugging
|
|
422
|
+
or testing the PKCE flow itself)
|
|
423
|
+
- The command is one of `login`, `logout`, `pair`,
|
|
424
|
+
`generate-recovery-code` — these manage their own auth lifecycle
|
|
425
|
+
|
|
426
|
+
**Failure handling.** If the broker can't reach the daemon, can't read
|
|
427
|
+
its bootstrap file, or the daemon isn't authenticated, the auto-broker
|
|
428
|
+
fails quietly and the command's normal `requireAuth()` produces the
|
|
429
|
+
familiar "Not signed in. Run `sky login` first." error. The one case
|
|
430
|
+
that gets a louder hint is baseURL mismatch, since the fix is precise:
|
|
431
|
+
|
|
432
|
+
```
|
|
433
|
+
[sky] Local oversky daemon is logged in to http://localhost:3080, but sky
|
|
434
|
+
is configured for https://oversky.ai. Run `sky login --base-url http://localhost:3080`
|
|
435
|
+
to use the daemon.
|
|
436
|
+
Not signed in. Run `sky login` first.
|
|
437
|
+
```
|
|
438
|
+
|
|
439
|
+
### Daemon-as-broker handoff
|
|
440
|
+
|
|
441
|
+
Mechanism for "logged-in daemon implies logged-in sky":
|
|
442
|
+
|
|
443
|
+
1. `sky login` reads the daemon's bootstrap file:
|
|
444
|
+
- macOS: `~/Library/Application Support/OverSky/daemon-island.<profile>.json`
|
|
445
|
+
- Linux/Windows: `~/.oversky/profiles/<profile>/daemon-island.json`
|
|
446
|
+
(pre-Phase-K fallback: `~/.oversky/daemon-island.json`)
|
|
447
|
+
2. CLI POSTs to `http://127.0.0.1:<port>/v1/auth/cli-handoff` with the
|
|
448
|
+
bootstrap secret as `Authorization: Bearer ...` and the requested
|
|
449
|
+
cliId in the body.
|
|
450
|
+
3. Daemon's loopback handler (`daemon/src/auth/cliHandoff.ts`) forwards
|
|
451
|
+
to the server's `POST /api/daemons/cli-handoff` using the daemon's
|
|
452
|
+
own bearer as proof of "this user is already authenticated here".
|
|
453
|
+
4. Server mints a **fresh cli-scope refresh family** (independent
|
|
454
|
+
rotation, distinct revocation, blast-radius isolated from the
|
|
455
|
+
daemon) bound to the supplied cliId.
|
|
456
|
+
5. CLI persists via the canonical `writeToBackend()` — Keychain on
|
|
457
|
+
macOS, `cli-auth.json` elsewhere.
|
|
458
|
+
|
|
459
|
+
Trust model is the same same-UID loopback fence the Socket.IO server
|
|
460
|
+
uses: any attacker who can read the 0600 bootstrap file can already
|
|
461
|
+
read the daemon's keychain. CI tokens are refused at the server
|
|
462
|
+
(daemon bootstrapped from `osk_ci_*` cannot auto-elevate to CLI).
|
|
463
|
+
|
|
464
|
+
### `sky logout`
|
|
465
|
+
|
|
466
|
+
Sign out and clear the saved token. The `baseURL` is preserved so the next
|
|
467
|
+
`sky login` defaults to the same host.
|
|
468
|
+
|
|
469
|
+
```bash
|
|
470
|
+
sky logout
|
|
471
|
+
```
|
|
472
|
+
|
|
473
|
+
The server-side logout call is best-effort — if the network is down, the
|
|
474
|
+
local token is still cleared.
|
|
475
|
+
|
|
476
|
+
### `sky whoami`
|
|
477
|
+
|
|
478
|
+
Show the currently signed-in user.
|
|
479
|
+
|
|
480
|
+
```bash
|
|
481
|
+
sky whoami
|
|
482
|
+
sky whoami --json
|
|
483
|
+
```
|
|
484
|
+
|
|
485
|
+
### `sky convos list`
|
|
486
|
+
|
|
487
|
+
List recent conversations. Renders a column-aligned table by default; use
|
|
488
|
+
`--json` for machine-readable output.
|
|
489
|
+
|
|
490
|
+
```bash
|
|
491
|
+
sky convos list
|
|
492
|
+
sky convos list --json
|
|
493
|
+
sky convos list --cursor <cursor-from-previous-page>
|
|
494
|
+
```
|
|
495
|
+
|
|
496
|
+
Flags:
|
|
497
|
+
|
|
498
|
+
- `--json` — emit raw JSON instead of the table
|
|
499
|
+
- `--cursor <cursor>` — pagination cursor returned from a previous page
|
|
500
|
+
|
|
501
|
+
### `sky convos show <id>`
|
|
502
|
+
|
|
503
|
+
Show details for a single conversation: title, endpoint, model, user, and
|
|
504
|
+
timestamps. Pair with `messages list --convo <id>` to see the transcript.
|
|
505
|
+
|
|
506
|
+
```bash
|
|
507
|
+
sky convos show <convo-id>
|
|
508
|
+
sky convos show <convo-id> --json
|
|
509
|
+
```
|
|
510
|
+
|
|
511
|
+
### `sky messages list --convo <id>`
|
|
512
|
+
|
|
513
|
+
List messages in a conversation. Renders a table with time, role, text
|
|
514
|
+
preview (truncated to 80 chars), and message ID. Use `--json` for the full
|
|
515
|
+
message objects.
|
|
516
|
+
|
|
517
|
+
```bash
|
|
518
|
+
sky messages list --convo <convo-id>
|
|
519
|
+
sky messages list --convo <convo-id> --json
|
|
520
|
+
sky messages list -c <convo-id>
|
|
521
|
+
```
|
|
522
|
+
|
|
523
|
+
Flags:
|
|
524
|
+
|
|
525
|
+
- `-c, --convo <id>` — conversation ID (required)
|
|
526
|
+
- `--json` — emit raw JSON
|
|
527
|
+
|
|
528
|
+
### `sky agents list`
|
|
529
|
+
|
|
530
|
+
List agents available to the signed-in user.
|
|
531
|
+
|
|
532
|
+
```bash
|
|
533
|
+
sky agents list
|
|
534
|
+
sky agents list --json
|
|
535
|
+
```
|
|
536
|
+
|
|
537
|
+
### `sky agents versions <id>`
|
|
538
|
+
|
|
539
|
+
List an agent's edit-history snapshots so you know which index to revert to.
|
|
540
|
+
The version array is EDIT-gated (it rides the expanded agent payload), so this
|
|
541
|
+
needs EDIT permission on the agent — a VIEW-only caller gets a clear exit-3
|
|
542
|
+
message. The printed **INDEX** is the literal `version_index` consumed by
|
|
543
|
+
`sky agents revert`; index `0` is the genesis snapshot and the last row
|
|
544
|
+
(marked `current`) is the live state.
|
|
545
|
+
|
|
546
|
+
```bash
|
|
547
|
+
sky agents versions <agent-id>
|
|
548
|
+
sky agents versions <agent-id> --json
|
|
549
|
+
# then revert to a listed index:
|
|
550
|
+
sky agents revert <agent-id> --version 2
|
|
551
|
+
```
|
|
552
|
+
|
|
553
|
+
### `sky agents triggers ...` / `sky agents schedule`
|
|
554
|
+
|
|
555
|
+
Agent-scoped automation. These are ergonomic facades over the universal Trigger
|
|
556
|
+
Engine (`sky triggers`) that inject `scope=agent, agentId=<id>` for you — the
|
|
557
|
+
same canonical surface the web agent page authors against (the legacy
|
|
558
|
+
per-agent `/api/agents/:id/triggers` route is deprecated and intentionally not
|
|
559
|
+
used here).
|
|
560
|
+
|
|
561
|
+
```bash
|
|
562
|
+
# List every trigger owned by an agent
|
|
563
|
+
sky agents triggers list <agent-id>
|
|
564
|
+
sky agents triggers list <agent-id> --kind schedule --enabled --json
|
|
565
|
+
|
|
566
|
+
# Full authoring surface (all kinds + knobs)
|
|
567
|
+
sky agents triggers create <agent-id> --kind schedule --cron "0 9 * * *" --prompt "Prepare the daily brief"
|
|
568
|
+
sky agents triggers create <agent-id> --kind schedule --daily-time 09:00 --daily-time 14:00 --prompt "Check the queue"
|
|
569
|
+
sky agents triggers create <agent-id> --kind schedule --interval-minutes 30 --prompt "Look for blockers"
|
|
570
|
+
sky agents triggers create <agent-id> --kind once --at 2026-06-01T15:30:00Z --prompt "Send the launch recap"
|
|
571
|
+
sky agents triggers create <agent-id> --kind event --entity task --event task.completed --prompt "Summarize the finished task"
|
|
572
|
+
sky agents triggers create <agent-id> --kind form --form-fields '[{"id":"message","type":"textarea","label":"Message","required":true}]' --prompt "Review {{form.message}}"
|
|
573
|
+
|
|
574
|
+
# Convenience one-liner for schedule-board cases (kind inferred from timing flags)
|
|
575
|
+
sky agents schedule <agent-id> --cron "0 9 * * 1-5" --prompt "Prepare the daily brief"
|
|
576
|
+
sky agents schedule <agent-id> --daily-time 09:00 --daily-time 14:00 --prompt "Check the queue"
|
|
577
|
+
sky agents schedule <agent-id> --interval-minutes 30 --prompt "Look for blockers"
|
|
578
|
+
sky agents schedule <agent-id> --at 2026-06-01T15:30:00Z --prompt "Send the launch recap"
|
|
579
|
+
|
|
580
|
+
# Recurring with a lifetime cap / end date
|
|
581
|
+
sky agents schedule <agent-id> --cron "0 9 * * 1-5" --prompt "Daily brief" --max-runs 20 --end-at 2026-12-31T00:00:00Z
|
|
582
|
+
```
|
|
583
|
+
|
|
584
|
+
The per-trigger lifecycle is wrapped under `agents triggers` too, taking
|
|
585
|
+
`<agent-id> <trigger-id>` and validating the trigger is agent-scoped to that
|
|
586
|
+
agent first (a fat-finger fence). They print the trigger ids via `agents
|
|
587
|
+
triggers list`:
|
|
588
|
+
|
|
589
|
+
```bash
|
|
590
|
+
sky agents triggers show <agent-id> <trigger-id>
|
|
591
|
+
sky agents triggers fire <agent-id> <trigger-id> # the board's "Run"
|
|
592
|
+
sky agents triggers disable <agent-id> <trigger-id> # the board's "Disable"
|
|
593
|
+
sky agents triggers enable <agent-id> <trigger-id>
|
|
594
|
+
sky agents triggers update <agent-id> <trigger-id> --label "..." --cron "0 8 * * *" --max-runs 20
|
|
595
|
+
sky agents triggers delete <agent-id> <trigger-id> --yes
|
|
596
|
+
sky agents triggers runs <agent-id> <trigger-id> # fire history
|
|
597
|
+
sky agents triggers runs <agent-id> <trigger-id> --fire <fire-id> # one fire's outcome + conversation
|
|
598
|
+
sky agents triggers replay <agent-id> <trigger-id> <fire-id> # replay a historical fire
|
|
599
|
+
sky agents triggers policy <agent-id> # initiative policy summary
|
|
600
|
+
```
|
|
601
|
+
|
|
602
|
+
(For triggers in any other scope, or to operate on a trigger id regardless of
|
|
603
|
+
scope, use the global `sky triggers <verb> <trigger-id>`.)
|
|
604
|
+
|
|
605
|
+
### `sky agent message send`
|
|
606
|
+
|
|
607
|
+
Send an agent-authored message through the canonical communication path. Main
|
|
608
|
+
chat is the default destination; Slack owner DM and Slack channel destinations
|
|
609
|
+
are also available. In daemon task runtimes the CLI derives the self identity
|
|
610
|
+
and stable idempotency key from the bound session.
|
|
611
|
+
|
|
612
|
+
```bash
|
|
613
|
+
sky context --json
|
|
614
|
+
sky agent message send --text "Done" --json
|
|
615
|
+
sky agent message send --agent <agent-id> --text "Done" --json
|
|
616
|
+
sky agent message send --agent <agent-id> --kind blocker --attention interrupt --text "I need your approval to continue" --json
|
|
617
|
+
sky agent message send --text "Task is ready" --attach-task-card --json
|
|
618
|
+
sky agent message send --destination slack_channel --channel C123 --text "Update" --json
|
|
619
|
+
```
|
|
620
|
+
|
|
621
|
+
`--attention` is an intent for app-owner DMs, not a channel override. The user’s
|
|
622
|
+
notification settings and contextual gates choose actual reach. A separate
|
|
623
|
+
user policy chooses quiet, standard, or time-sensitive native presentation;
|
|
624
|
+
the sender cannot select an Android channel or iOS interruption level. Slack delivery
|
|
625
|
+
does not use this policy, so the CLI rejects attention and notification-policy
|
|
626
|
+
flags for Slack destinations instead of silently ignoring them.
|
|
627
|
+
|
|
628
|
+
Task context does not render a Task Card by itself. Add `--attach-task-card`
|
|
629
|
+
(or `presentation.taskCard: true` in JSON) only when the message should help
|
|
630
|
+
the user open or follow the live task. Managed sessions derive trusted task
|
|
631
|
+
identity server-side, so the Agent chooses presentation, not task identity.
|
|
632
|
+
|
|
633
|
+
### `sky context`
|
|
634
|
+
|
|
635
|
+
Print the current runtime identity without requiring a network round trip. This
|
|
636
|
+
is the first command an automated agent should call when it needs to know
|
|
637
|
+
whether it is running inside a daemon-bound agent session.
|
|
638
|
+
|
|
639
|
+
```bash
|
|
640
|
+
sky context --json
|
|
641
|
+
sky context --json --include-account # optional read-only /api/user lookup
|
|
642
|
+
```
|
|
643
|
+
|
|
644
|
+
### `sky agents upcoming <id>`
|
|
645
|
+
|
|
646
|
+
The unified "what fires next" feed — the same source the web Schedule Board
|
|
647
|
+
calendar plots. Merges pending scheduled messages, routine triggers assigned to
|
|
648
|
+
the agent, and the agent's own schedule/once/self*scheduled triggers into one
|
|
649
|
+
time-ordered stream (`GET /api/upcoming`). Unlike `agents triggers list` (which
|
|
650
|
+
shows trigger \_definitions*), this shows concrete _occurrences_ with fire times.
|
|
651
|
+
|
|
652
|
+
```bash
|
|
653
|
+
sky agents upcoming <agent-id>
|
|
654
|
+
sky agents upcoming <agent-id> --horizon-days 30 --expand all # every occurrence in 30d
|
|
655
|
+
sky agents upcoming <agent-id> --kinds agent_trigger --json
|
|
656
|
+
```
|
|
657
|
+
|
|
658
|
+
### `sky agents plan-day <id>` — Smart Schedule
|
|
659
|
+
|
|
660
|
+
The CLI form of the Schedule Board's "Plan my day". A propose → review → approve
|
|
661
|
+
flow: propose builds a DRAFT day plan from the agent's open tasks + working
|
|
662
|
+
hours; nothing is scheduled until you approve.
|
|
663
|
+
|
|
664
|
+
```bash
|
|
665
|
+
sky agents plan-day <agent-id> # propose (or recover the pending draft) and print it
|
|
666
|
+
sky agents plan-day <agent-id> --approve # materialize the pending plan as to-dos
|
|
667
|
+
sky agents plan-day <agent-id> --dismiss # discard the pending plan
|
|
668
|
+
sky agents plan-day <agent-id> --regenerate "prioritize the Q2 launch" \
|
|
669
|
+
--hours-start 09:00 --hours-end 17:00 # a fresh plan with a working-hours window
|
|
670
|
+
```
|
|
671
|
+
|
|
672
|
+
### `sky agents schedule-overview <id>` — full-visibility view
|
|
673
|
+
|
|
674
|
+
One call for everything an agent needs when it wakes to think: its
|
|
675
|
+
self-reflection-loop state, upcoming fires (future), recent fires (past), open
|
|
676
|
+
tasks assigned to it, and today's to-dos. Stitches `GET /api/upcoming`,
|
|
677
|
+
`/api/triggers/audit`, `/api/triggers`, `/api/tasks`, and `/api/todos` into one
|
|
678
|
+
view; a failing source degrades to a `(unavailable: …)` note rather than failing
|
|
679
|
+
the whole overview. `--json` emits the full aggregate for programmatic use.
|
|
680
|
+
|
|
681
|
+
```bash
|
|
682
|
+
sky agents schedule-overview <agent-id>
|
|
683
|
+
sky agents schedule-overview <agent-id> --horizon-days 14 --json
|
|
684
|
+
```
|
|
685
|
+
|
|
686
|
+
### `sky agents reflect <id>` — the self-reflection loop
|
|
687
|
+
|
|
688
|
+
The agent's meta-cadence loop: a single recurring trigger (`scope:agent,
|
|
689
|
+
kind:schedule, execution.mode:run_only` — the same shape a personal-agent
|
|
690
|
+
heartbeat uses) that fires a **silent** agent turn to review its own schedule and
|
|
691
|
+
**retune its own cadence**. The cognition is entirely prompt-driven (no bespoke
|
|
692
|
+
server logic); the loop is idempotent (located by a stable `self-reflection`
|
|
693
|
+
label, so re-running retunes it rather than stacking duplicates) and coalesces so
|
|
694
|
+
a slow reflection turn never overlaps itself. Default cadence is 6h. Pair it with
|
|
695
|
+
`agents schedule-overview` — the reflection prompt tells the agent to open that
|
|
696
|
+
view, judge its own rhythm, and reschedule this trigger.
|
|
697
|
+
|
|
698
|
+
```bash
|
|
699
|
+
sky agents reflect <agent-id> # status of the loop
|
|
700
|
+
sky agents reflect <agent-id> --enable # start it at the default 6h
|
|
701
|
+
sky agents reflect <agent-id> --set-cadence 8h # start / retune to a new interval
|
|
702
|
+
sky agents reflect <agent-id> --set-cadence 90m --timezone America/New_York
|
|
703
|
+
sky agents reflect <agent-id> --disable # pause it (safe to re-enable later)
|
|
704
|
+
```
|
|
705
|
+
|
|
706
|
+
### `sky agents todos ...`
|
|
707
|
+
|
|
708
|
+
The agent's day-plan feed (the web ToDoPanel). To-Dos are time-boxed work
|
|
709
|
+
blocks — manual or produced by `plan-day`. Each is backed by a `once` trigger.
|
|
710
|
+
|
|
711
|
+
```bash
|
|
712
|
+
sky agents todos list <agent-id> # today; --date YYYY-MM-DD for another day
|
|
713
|
+
sky agents todos create <agent-id> --name "Draft update" --at 2026-06-01T09:00:00Z --prompt "Draft the weekly update." --duration 45
|
|
714
|
+
sky agents todos cancel <todo-id> --yes
|
|
715
|
+
```
|
|
716
|
+
|
|
717
|
+
### `sky triggers ...`
|
|
718
|
+
|
|
719
|
+
Manage raw Universal Trigger Engine rows for any supported scope.
|
|
720
|
+
|
|
721
|
+
```bash
|
|
722
|
+
sky triggers list --scope agent
|
|
723
|
+
sky triggers create --scope agent --ref agentId=<agent-id> --kind schedule --mode send_message --cron "0 9 * * *" --prompt "Prepare the daily brief"
|
|
724
|
+
sky triggers update <trigger-id> --no-enabled
|
|
725
|
+
sky triggers fire <trigger-id>
|
|
726
|
+
sky triggers audit <trigger-id>
|
|
727
|
+
sky triggers audit --agent <agent-id> --limit 50
|
|
728
|
+
sky triggers fire-detail <trigger-id> <fire-id>
|
|
729
|
+
sky triggers replay <trigger-id> <fire-id>
|
|
730
|
+
sky triggers event-catalog
|
|
731
|
+
sky triggers parse-intent --scope agent --ref agentId=<agent-id> --message "Every weekday at 9, review tasks"
|
|
732
|
+
sky triggers capabilities space_subscriber
|
|
733
|
+
```
|
|
734
|
+
|
|
735
|
+
Use `--from-json <file|->` on `create`, `update`, and `fire` for full request
|
|
736
|
+
bodies. Scope refs are passed as repeatable `--ref key=value` flags.
|
|
737
|
+
|
|
738
|
+
### `sky commitments ...`
|
|
739
|
+
|
|
740
|
+
Durable **commitment contracts**. A commitment is not a unit of work — it is a
|
|
741
|
+
standing commitment ("hold this outcome true") that an agent watches on a cadence
|
|
742
|
+
with its own control loop: a fast _check_ (sense → project open loops → pick a
|
|
743
|
+
posture → act) and a slower _reflection_ that retunes the commitment's own cadence
|
|
744
|
+
from realized outcomes. Commitments sit above goals/tasks, which they watch as
|
|
745
|
+
sensors and can create work in.
|
|
746
|
+
|
|
747
|
+
```bash
|
|
748
|
+
sky commitments list --agent <agent-id> --status active
|
|
749
|
+
sky commitments show <commitment-id>
|
|
750
|
+
sky commitments preflight <commitment-id> # explain gates before it runs
|
|
751
|
+
|
|
752
|
+
# Author one (draft by default — read it back, then activate)
|
|
753
|
+
sky commitments create --agent <agent-id> \
|
|
754
|
+
--title "Hiring loop" --outcome "Every candidate hears back within 48h" \
|
|
755
|
+
--watch tasks --watch email --cadence 12h
|
|
756
|
+
sky commitments resume <commitment-id> # activate
|
|
757
|
+
|
|
758
|
+
# Or draft it from a sentence (read-only proposal)
|
|
759
|
+
sky commitments plan --agent <agent-id> --sentence "Make sure every candidate hears back in 48h"
|
|
760
|
+
|
|
761
|
+
# Steer it
|
|
762
|
+
sky commitments update <commitment-id> --cadence 6h # retune how often it checks
|
|
763
|
+
sky commitments autonomy <commitment-id> --mode ask_first # how much it may act alone
|
|
764
|
+
sky commitments checks <commitment-id> # what it has been deciding
|
|
765
|
+
sky commitments check-now <commitment-id> # run one iteration now
|
|
766
|
+
sky commitments pause <commitment-id> # kill-switch
|
|
767
|
+
```
|
|
768
|
+
|
|
769
|
+
Autonomy ladder: `off` → `suggestions_only` (default) → `ask_first` →
|
|
770
|
+
`auto_run_limited` → `auto_run`. Full reference:
|
|
771
|
+
[docs/cli/SKRR_COMMITMENTS.md](../docs/cli/SKRR_COMMITMENTS.md).
|
|
772
|
+
|
|
773
|
+
### `sky spaces` — perspective guide
|
|
774
|
+
|
|
775
|
+
Run `sky spaces` before operating on an unfamiliar space. It maps each sidebar
|
|
776
|
+
perspective to the command family and web route; use `--json` for agent discovery.
|
|
777
|
+
|
|
778
|
+
```bash
|
|
779
|
+
sky spaces
|
|
780
|
+
sky spaces --json
|
|
781
|
+
sky commands --schema "spaces files list"
|
|
782
|
+
```
|
|
783
|
+
|
|
784
|
+
Mutating bulk commands support validation-only planning with `--dry-run`:
|
|
785
|
+
|
|
786
|
+
```bash
|
|
787
|
+
sky spaces reorder --root --space <space-a> --space <space-b> --dry-run --json
|
|
788
|
+
sky spaces views reorder <space-id> --view <view-a> --view <view-b> --dry-run --json
|
|
789
|
+
sky spaces actions replace <space-id> --from-json actions.json --dry-run --json
|
|
790
|
+
```
|
|
791
|
+
|
|
792
|
+
### `sky spaces list`
|
|
793
|
+
|
|
794
|
+
List spaces. Renders ID, title, status, goal count, and lead agent by default.
|
|
795
|
+
|
|
796
|
+
```bash
|
|
797
|
+
sky spaces list
|
|
798
|
+
sky spaces list --status active
|
|
799
|
+
sky spaces list --include-archived
|
|
800
|
+
sky spaces list --json
|
|
801
|
+
```
|
|
802
|
+
|
|
803
|
+
Flags:
|
|
804
|
+
|
|
805
|
+
- `--status <status>` — filter by space status
|
|
806
|
+
- `--include-archived` — include archived spaces
|
|
807
|
+
- `--limit <n>` — max results (default 50)
|
|
808
|
+
- `--cursor <cursor>` — pagination cursor from a previous page
|
|
809
|
+
- `--json` — emit raw JSON
|
|
810
|
+
|
|
811
|
+
### `sky spaces show <id>`
|
|
812
|
+
|
|
813
|
+
Show details for a single space.
|
|
814
|
+
|
|
815
|
+
```bash
|
|
816
|
+
sky spaces show <space-id>
|
|
817
|
+
sky spaces show <space-id> --json
|
|
818
|
+
```
|
|
819
|
+
|
|
820
|
+
### `sky spaces create`
|
|
821
|
+
|
|
822
|
+
Create a new space. `--title` is required unless you supply it in a JSON body.
|
|
823
|
+
|
|
824
|
+
```bash
|
|
825
|
+
sky spaces create --title "Q2 Launch"
|
|
826
|
+
sky spaces create --title "Support" --status active --color "#4f46e5"
|
|
827
|
+
sky spaces create --from-json space.json
|
|
828
|
+
cat space.json | sky spaces create --from-json -
|
|
829
|
+
sky spaces create --from-json template.json --title "Override title"
|
|
830
|
+
```
|
|
831
|
+
|
|
832
|
+
Flags: `--title`, `--description`, `--status`, `--color`, `--lead-agent`,
|
|
833
|
+
`--target-date`, `--group-chat`, `--from-json <file|->`, `--json`.
|
|
834
|
+
|
|
835
|
+
### `sky spaces update <id>`
|
|
836
|
+
|
|
837
|
+
Partial patch. At least one flag (or `--from-json`) is required.
|
|
838
|
+
|
|
839
|
+
```bash
|
|
840
|
+
sky spaces update <space-id> --title "New title"
|
|
841
|
+
sky spaces update <space-id> --status active --color "#4f46e5"
|
|
842
|
+
sky spaces update <space-id> --from-json patch.json
|
|
843
|
+
```
|
|
844
|
+
|
|
845
|
+
Flags: `--title`, `--description`, `--status`, `--color`, `--lead-agent`,
|
|
846
|
+
`--target-date`, `--from-json <file|->`, `--json`.
|
|
847
|
+
|
|
848
|
+
### `sky spaces delete <id>`
|
|
849
|
+
|
|
850
|
+
Delete a space. Prompts for confirmation by default; `--yes` skips the prompt.
|
|
851
|
+
|
|
852
|
+
```bash
|
|
853
|
+
sky spaces delete <space-id>
|
|
854
|
+
sky spaces delete <space-id> --yes
|
|
855
|
+
```
|
|
856
|
+
|
|
857
|
+
When stdin is not a TTY (piped input, CI), the command refuses to prompt and
|
|
858
|
+
exits with code 7 unless `--yes` is passed. This prevents hangs in
|
|
859
|
+
non-interactive environments.
|
|
860
|
+
|
|
861
|
+
### `sky spaces archive <id>` / `sky spaces unarchive <id>`
|
|
862
|
+
|
|
863
|
+
Reversible alternative to `spaces delete`. Archives the space (setting
|
|
864
|
+
`archivedAt`) without destroying its data; `unarchive` reverses it.
|
|
865
|
+
|
|
866
|
+
```bash
|
|
867
|
+
sky spaces archive <space-id>
|
|
868
|
+
sky spaces unarchive <space-id>
|
|
869
|
+
sky spaces archive <space-id> --json
|
|
870
|
+
```
|
|
871
|
+
|
|
872
|
+
### `sky spaces` — subspaces (parent / child hierarchy)
|
|
873
|
+
|
|
874
|
+
Spaces form a tree. Each space tracks `parentSpaceId`, the materialized
|
|
875
|
+
`ancestorSpaceIds` path, its `depth` (root = 0, capped at 20), and
|
|
876
|
+
`inheritAccess` (default `true`) — when `inheritAccess` is `false` the space is
|
|
877
|
+
a **private subspace** that does not inherit members/permissions from its parent
|
|
878
|
+
chain. These mirror the web app's subspace features.
|
|
879
|
+
|
|
880
|
+
```bash
|
|
881
|
+
# Create a child space under a parent
|
|
882
|
+
sky spaces create --title "Frontend" --parent <parent-space-id>
|
|
883
|
+
|
|
884
|
+
# Create a private child that does NOT inherit the parent's members
|
|
885
|
+
sky spaces create --title "Private notes" --parent <parent-space-id> --no-inherit-access
|
|
886
|
+
|
|
887
|
+
# List the direct children of a space
|
|
888
|
+
sky spaces subspaces <space-id>
|
|
889
|
+
sky spaces subspaces <space-id> --include-archived --json
|
|
890
|
+
|
|
891
|
+
# Move a space under a new parent (reparent) — the whole subtree follows
|
|
892
|
+
sky spaces move <space-id> --parent <new-parent-space-id>
|
|
893
|
+
|
|
894
|
+
# Detach a space back to the top level (no parent)
|
|
895
|
+
sky spaces move <space-id> --root
|
|
896
|
+
|
|
897
|
+
# Toggle inheritance on an existing space
|
|
898
|
+
sky spaces update <space-id> --no-inherit-access # make private
|
|
899
|
+
sky spaces update <space-id> --inherit-access # re-inherit from parents
|
|
900
|
+
|
|
901
|
+
# Inspect a space's place in the tree (Parent / Depth / Ancestors / Inherits ACL)
|
|
902
|
+
sky spaces show <space-id>
|
|
903
|
+
```
|
|
904
|
+
|
|
905
|
+
Server-side guards are surfaced as ordinary CLI errors: moving a space under
|
|
906
|
+
itself or a descendant fails with `cycle_detected`; exceeding the depth cap
|
|
907
|
+
fails with `max_depth_exceeded`; crossing workspaces fails with
|
|
908
|
+
`workspace_mismatch`; and `spaces delete` refuses (`space_has_subspaces`) while
|
|
909
|
+
a space still has children — move or delete them first. Reparenting requires
|
|
910
|
+
EDIT on both the space and the target parent.
|
|
911
|
+
|
|
912
|
+
### `sky spaces reorder` / `sky spaces pin`
|
|
913
|
+
|
|
914
|
+
Reorder a complete sibling group atomically, or toggle the current user's
|
|
915
|
+
sidebar pin for a space.
|
|
916
|
+
|
|
917
|
+
```bash
|
|
918
|
+
sky spaces reorder --root --space <space-a> --space <space-b>
|
|
919
|
+
sky spaces reorder --parent <parent-id> --space <child-a> --space <child-b>
|
|
920
|
+
sky spaces reorder --from-json order.json
|
|
921
|
+
sky spaces reorder --from-json order.json --dry-run --json
|
|
922
|
+
sky spaces pin <space-id>
|
|
923
|
+
sky spaces pin <space-id> --json
|
|
924
|
+
```
|
|
925
|
+
|
|
926
|
+
The reorder JSON shape is `{ "parentSpaceId": null, "orderedIds": ["..."] }`.
|
|
927
|
+
|
|
928
|
+
### `sky spaces summary` / `sky spaces bootstrap`
|
|
929
|
+
|
|
930
|
+
Fetch the aggregated dashboard summary or the full bootstrap payload used by the
|
|
931
|
+
space detail page.
|
|
932
|
+
|
|
933
|
+
```bash
|
|
934
|
+
sky spaces summary <space-id> --json
|
|
935
|
+
sky spaces bootstrap <space-id> --json
|
|
936
|
+
```
|
|
937
|
+
|
|
938
|
+
### `sky spaces files ...`
|
|
939
|
+
|
|
940
|
+
Manage the complete space file tree. Folder deletion requires `--yes` in
|
|
941
|
+
non-interactive environments; pass `--delete-contents` when deleting a
|
|
942
|
+
non-empty folder is intentional.
|
|
943
|
+
|
|
944
|
+
```bash
|
|
945
|
+
sky spaces files folders list <space-id>
|
|
946
|
+
sky spaces files folders create <space-id> --name docs
|
|
947
|
+
sky spaces files folders update <space-id> <folder-id> --name archive
|
|
948
|
+
sky spaces files folders delete <space-id> <folder-id> --yes
|
|
949
|
+
sky spaces files rename <space-id> <file-id> --filename report-final.pdf
|
|
950
|
+
sky spaces files move <space-id> <file-id> --folder <folder-id>
|
|
951
|
+
sky spaces files move <space-id> <file-id> --root
|
|
952
|
+
sky spaces files delete <space-id> <file-id> --yes
|
|
953
|
+
```
|
|
954
|
+
|
|
955
|
+
### `sky spaces actions ...`
|
|
956
|
+
|
|
957
|
+
Manage the custom actions displayed by a space's Actions surface. Action
|
|
958
|
+
payloads can be supplied as JSON to preserve fields added by the server.
|
|
959
|
+
|
|
960
|
+
```bash
|
|
961
|
+
sky spaces actions list <space-id>
|
|
962
|
+
sky spaces actions add <space-id> --id triage --label Triage \
|
|
963
|
+
--prompt "Triage the open tasks" --color "#4f46e5"
|
|
964
|
+
sky spaces actions update <space-id> <action-id> --from-json action-patch.json
|
|
965
|
+
sky spaces actions delete <space-id> <action-id> --yes
|
|
966
|
+
sky spaces actions replace <space-id> --from-json actions.json
|
|
967
|
+
sky spaces actions replace <space-id> --from-json actions.json --dry-run --json
|
|
968
|
+
```
|
|
969
|
+
|
|
970
|
+
### `sky spaces actions available <space-id>`
|
|
971
|
+
|
|
972
|
+
List the agent quick actions attachable to tasks in a space (member agents'
|
|
973
|
+
`agentActions`, filtered to enabled + scope general/this-space). Distinct from
|
|
974
|
+
`sky spaces actions list` above, which manages the space's own custom actions.
|
|
975
|
+
Each row's `REF` (`<agentId>:<actionId>`) feeds `sky tasks actions attach`.
|
|
976
|
+
|
|
977
|
+
```bash
|
|
978
|
+
sky spaces actions available <space-id>
|
|
979
|
+
sky spaces actions available <space-id> --json
|
|
980
|
+
```
|
|
981
|
+
|
|
982
|
+
### `sky spaces views ...`
|
|
983
|
+
|
|
984
|
+
Manage saved task views used by the Tasks perspective.
|
|
985
|
+
|
|
986
|
+
```bash
|
|
987
|
+
sky spaces views list <space-id>
|
|
988
|
+
sky spaces views create <space-id> --name Board --type board --scope shared
|
|
989
|
+
sky spaces views update <space-id> <view-id> --name "Launch board"
|
|
990
|
+
sky spaces views duplicate <space-id> <view-id>
|
|
991
|
+
sky spaces views reorder <space-id> --view <view-id> --view <other-view-id>
|
|
992
|
+
sky spaces views delete <space-id> <view-id> --yes
|
|
993
|
+
```
|
|
994
|
+
|
|
995
|
+
### `sky views ...`
|
|
996
|
+
|
|
997
|
+
Create persistent, personalized Task Views that can select exact task IDs or
|
|
998
|
+
apply criteria across one or more Spaces. The create/show JSON response includes
|
|
999
|
+
a durable `url`; opening it displays the view in a focused modal.
|
|
1000
|
+
|
|
1001
|
+
```bash
|
|
1002
|
+
sky views create --name "Launch scope" --task-id <task-id> --task-id <task-id>
|
|
1003
|
+
sky views create --name "Cross-space blockers" \
|
|
1004
|
+
--space <space-id> --space <space-id> --status blocked --group-by space
|
|
1005
|
+
sky views create --name "My reviews" --status in_review --assignee <id> --json
|
|
1006
|
+
sky views list
|
|
1007
|
+
sky views show <view-id>
|
|
1008
|
+
sky views delete <view-id> --yes
|
|
1009
|
+
|
|
1010
|
+
### `sky space-directory-views ...`
|
|
1011
|
+
|
|
1012
|
+
Manage global Space Directory Views. These are distinct from `sky spaces views`,
|
|
1013
|
+
which manages task views inside one Space.
|
|
1014
|
+
|
|
1015
|
+
```bash
|
|
1016
|
+
sky space-directory-views list --json
|
|
1017
|
+
sky space-directory-views create --name "Active delivery" --config '{"schemaVersion":1,"layout":"list"}' --json
|
|
1018
|
+
sky space-directory-views update <view-id> --version 3 --from-json ./space-view-patch.json
|
|
1019
|
+
sky space-directory-views delete <view-id> --version 3 --yes
|
|
1020
|
+
```
|
|
1021
|
+
|
|
1022
|
+
### `sky work-views ...`
|
|
1023
|
+
|
|
1024
|
+
Manage saved cross-entity Work Views and read their ACL-safe Space-to-Task projection.
|
|
1025
|
+
|
|
1026
|
+
```bash
|
|
1027
|
+
sky work-views list --json
|
|
1028
|
+
sky work-views create --from-json ./work-view.json --json
|
|
1029
|
+
sky work-views update <view-id> --version 2 --from-json ./work-view-patch.json
|
|
1030
|
+
sky work-views result <view-id> --json
|
|
1031
|
+
sky work-views delete <view-id> --version 2 --yes
|
|
1032
|
+
```
|
|
1033
|
+
```
|
|
1034
|
+
|
|
1035
|
+
### `sky spaces live ...`
|
|
1036
|
+
|
|
1037
|
+
Inspect and manage the Live perspective's cards and current-user character.
|
|
1038
|
+
|
|
1039
|
+
```bash
|
|
1040
|
+
sky spaces live scene <space-id>
|
|
1041
|
+
sky spaces live scene <space-id> --character <character-id>
|
|
1042
|
+
sky spaces live cards list <space-id>
|
|
1043
|
+
sky spaces live cards create <space-id> --kind tasks --title Tasks --slot top
|
|
1044
|
+
sky spaces live cards update <space-id> <card-id> --enabled
|
|
1045
|
+
sky spaces live cards reorder <space-id> --card <card-id> --card <other-card-id>
|
|
1046
|
+
sky spaces live cards delete <space-id> <card-id> --yes
|
|
1047
|
+
```
|
|
1048
|
+
|
|
1049
|
+
### `sky spaces preferences ...`
|
|
1050
|
+
|
|
1051
|
+
Read and update the current user's server-backed space sidebar preferences.
|
|
1052
|
+
|
|
1053
|
+
```bash
|
|
1054
|
+
sky spaces preferences show <space-id>
|
|
1055
|
+
sky spaces preferences tabs <space-id> \
|
|
1056
|
+
--visible dashboard --visible tasks --hidden skills --hidden members
|
|
1057
|
+
sky spaces preferences tabs <space-id> --from-json tabs.json
|
|
1058
|
+
```
|
|
1059
|
+
|
|
1060
|
+
### `sky spaces room ...` — the space's group chat
|
|
1061
|
+
|
|
1062
|
+
Every space can have a **Room**: the group chat behind the Room tab on the
|
|
1063
|
+
space detail page. The link is a single field on the space (`space.groupChatId`),
|
|
1064
|
+
and the Room's group chat is tagged `space-room` + `space-room:<space-id>`.
|
|
1065
|
+
|
|
1066
|
+
```bash
|
|
1067
|
+
# Who and what is in the Room (read-only — never creates)
|
|
1068
|
+
sky spaces room show <space-id>
|
|
1069
|
+
sky spaces room show <space-id> --json # full payload incl. groupChatId
|
|
1070
|
+
|
|
1071
|
+
# Create the Room if absent, and sync its members from the space (idempotent)
|
|
1072
|
+
sky spaces room ensure <space-id>
|
|
1073
|
+
|
|
1074
|
+
# Read the transcript
|
|
1075
|
+
sky spaces room messages <space-id> --limit 50
|
|
1076
|
+
sky spaces room messages <space-id> --cursor <cursor> # next page
|
|
1077
|
+
sky spaces room messages <space-id> --thread <message-id> # one thread
|
|
1078
|
+
|
|
1079
|
+
# Post to it
|
|
1080
|
+
sky spaces room send <space-id> -m "Standup in 5"
|
|
1081
|
+
sky spaces room send <space-id> -m "Take a look?" --mention agent:<agent-id>
|
|
1082
|
+
sky spaces room send <space-id> -m "Kickoff" --ensure # create-then-send
|
|
1083
|
+
```
|
|
1084
|
+
|
|
1085
|
+
**`ensure` is the only path that creates a Room.** `show` / `messages` / `send`
|
|
1086
|
+
read the existing link and fail with `space_room_not_found` when the space has
|
|
1087
|
+
never had its Room tab opened — the error names `ensure` as the fix. `ensure` is
|
|
1088
|
+
safe to re-run: it creates only when absent, otherwise it just reconciles the
|
|
1089
|
+
chat's participants and agents against the space membership. Run it after adding
|
|
1090
|
+
members or agents to a space if you drive the Room entirely from the CLI, since
|
|
1091
|
+
nothing else syncs them headlessly.
|
|
1092
|
+
|
|
1093
|
+
**Mentions decide whether an agent answers.** Each agent in a chat has a trigger
|
|
1094
|
+
mode (`always` / `mention` / `keyword` / `manual`); a `mention`-mode agent stays
|
|
1095
|
+
silent unless it is mentioned. `sky spaces room show` prints each agent's mode so
|
|
1096
|
+
you can tell in advance. `--mention` is repeatable and accepts `agent:<id>`,
|
|
1097
|
+
`user:<id>`, `all` (or `everyone`), plus bare `agent_…` / bare 24-hex user ids.
|
|
1098
|
+
An ambiguous bare value is rejected rather than guessed.
|
|
1099
|
+
|
|
1100
|
+
Room membership and settings are managed **from the space**, not the chat:
|
|
1101
|
+
`sky chats agents add`, `chats update`, and the participant routes all refuse a
|
|
1102
|
+
Room with `space_room_managed` (409). Use `sky spaces members ...` instead.
|
|
1103
|
+
Messaging is unaffected — `send` and `messages` work normally.
|
|
1104
|
+
|
|
1105
|
+
The inverse lookup (chat → its spaces) is `sky chats spaces list --chat <chat-id>`.
|
|
1106
|
+
|
|
1107
|
+
### `sky spaces triggers ...`
|
|
1108
|
+
|
|
1109
|
+
Configure the current user's floating assistant triggers for a space.
|
|
1110
|
+
|
|
1111
|
+
```bash
|
|
1112
|
+
sky spaces triggers show <space-id>
|
|
1113
|
+
sky spaces triggers set <space-id> --agent <agent-id> --event-enabled --event-type task.created
|
|
1114
|
+
sky spaces triggers set <space-id> --agent <agent-id> --schedule-enabled --schedule-mode daily --daily-time 09:00 --timezone America/New_York
|
|
1115
|
+
sky spaces triggers set <space-id> --agent <agent-id> --schedule-mode cron --cron "0 9 * * MON"
|
|
1116
|
+
sky spaces triggers delete <space-id> --yes
|
|
1117
|
+
```
|
|
1118
|
+
|
|
1119
|
+
For event triggers, use `--event-type`, `--task-status`, `--visibility`,
|
|
1120
|
+
`--sender-type`, `--quiet-hours`, and rate-limit flags. For schedule triggers,
|
|
1121
|
+
use `--schedule-mode`, `--interval-minutes`, `--daily-time`, `--cron`,
|
|
1122
|
+
`--timezone`, `--working-hours`, and `--max-per-day`.
|
|
1123
|
+
|
|
1124
|
+
### `sky chats send` / `sky chats messages`
|
|
1125
|
+
|
|
1126
|
+
Read and post to any group chat by its id. These are the chat-addressed twins of
|
|
1127
|
+
`sky spaces room send` / `... messages` — same flags, same behaviour; only the
|
|
1128
|
+
way you name the chat differs.
|
|
1129
|
+
|
|
1130
|
+
```bash
|
|
1131
|
+
sky chats messages <chat-id> --limit 50
|
|
1132
|
+
sky chats messages <chat-id> --cursor <cursor> # next page
|
|
1133
|
+
sky chats messages <chat-id> --thread <message-id> # replies in one thread
|
|
1134
|
+
|
|
1135
|
+
sky chats send <chat-id> -m "Hello team!"
|
|
1136
|
+
sky chats send <chat-id> -m "Take a look?" --mention agent:<agent-id>
|
|
1137
|
+
sky chats send <chat-id> -m "Heads up" --mention all
|
|
1138
|
+
sky chats send <chat-id> -m "On it" --thread <message-id>
|
|
1139
|
+
sky chats send <chat-id> -m "Answering" --reply-to <message-id>
|
|
1140
|
+
```
|
|
1141
|
+
|
|
1142
|
+
`--mention` is repeatable and accepts `agent:<id>`, `user:<id>`, `all` (or
|
|
1143
|
+
`everyone`), plus bare `agent_…` / bare 24-hex user ids; ambiguous bare values
|
|
1144
|
+
are rejected rather than guessed. Mentions matter because an agent whose trigger
|
|
1145
|
+
mode is `mention` will not respond to an unmentioned message. The server rejects
|
|
1146
|
+
a mention of anyone who is not already in the chat.
|
|
1147
|
+
|
|
1148
|
+
`--thread <root-message-id>` posts into (or reads) a thread; `--reply-to` marks a
|
|
1149
|
+
direct reply without opening a thread.
|
|
1150
|
+
|
|
1151
|
+
### `sky chats list`
|
|
1152
|
+
|
|
1153
|
+
```bash
|
|
1154
|
+
sky chats list
|
|
1155
|
+
sky chats list --rooms # only Space Rooms
|
|
1156
|
+
sky chats list --exclude-rooms # only ordinary group chats
|
|
1157
|
+
sky chats list --limit 50 --cursor <cursor>
|
|
1158
|
+
```
|
|
1159
|
+
|
|
1160
|
+
The `KIND` column reads `room` for a Space Room and `chat` otherwise, and the
|
|
1161
|
+
`SPACE` column names the owning space. Both come from the chat's tags
|
|
1162
|
+
(`space-room` + `space-room:<space-id>`), which the list endpoint now returns.
|
|
1163
|
+
|
|
1164
|
+
`--rooms` / `--exclude-rooms` filter **the fetched page**, not the query — a Room
|
|
1165
|
+
on a later page is not excluded by `--rooms`, it was simply never fetched. For an
|
|
1166
|
+
authoritative space → Room lookup use `sky spaces room show <space-id>`, which
|
|
1167
|
+
resolves the link directly off the space.
|
|
1168
|
+
|
|
1169
|
+
`sky chats show <chat-id>` flags a Space Room explicitly and names the space that
|
|
1170
|
+
owns it, so you learn membership is managed elsewhere before a mutation fails
|
|
1171
|
+
with `space_room_managed`.
|
|
1172
|
+
|
|
1173
|
+
### `sky chats triggers ...`
|
|
1174
|
+
|
|
1175
|
+
Configure the current user's assistant trigger preset for a group chat.
|
|
1176
|
+
|
|
1177
|
+
```bash
|
|
1178
|
+
sky chats triggers show <chat-id>
|
|
1179
|
+
sky chats triggers set <chat-id> --agent <agent-id> --message-enabled --message-mode mention
|
|
1180
|
+
sky chats triggers set <chat-id> --agent <agent-id> --message-mode keyword --keyword urgent --keyword review
|
|
1181
|
+
sky chats triggers set <chat-id> --agent <agent-id> --schedule-enabled --schedule-mode interval --interval-minutes 60
|
|
1182
|
+
```
|
|
1183
|
+
|
|
1184
|
+
The command writes the preset API (`/api/triggers/gcs-preset`), which expands
|
|
1185
|
+
message and schedule lanes into the underlying universal trigger rows.
|
|
1186
|
+
|
|
1187
|
+
### `sky goals list`
|
|
1188
|
+
|
|
1189
|
+
List goals. With `--space`, scopes to goals inside a specific space (uses
|
|
1190
|
+
the `listSpaceGoals` endpoint internally). Without it, the command uses the
|
|
1191
|
+
general `listGoals` endpoint with status/level filters.
|
|
1192
|
+
|
|
1193
|
+
```bash
|
|
1194
|
+
sky goals list
|
|
1195
|
+
sky goals list --space <space-id>
|
|
1196
|
+
sky goals list --status active
|
|
1197
|
+
sky goals list --level company --json
|
|
1198
|
+
```
|
|
1199
|
+
|
|
1200
|
+
Flags:
|
|
1201
|
+
|
|
1202
|
+
- `--space <id>` — scope to goals in a specific space
|
|
1203
|
+
- `--status <status>` — filter by goal status
|
|
1204
|
+
- `--level <level>` — filter by goal level
|
|
1205
|
+
- `--include-archived` — include archived goals
|
|
1206
|
+
- `--limit <n>` — max results (default 50)
|
|
1207
|
+
- `--cursor <cursor>` — pagination cursor
|
|
1208
|
+
- `--json` — emit raw JSON
|
|
1209
|
+
|
|
1210
|
+
### `sky goals show <id>`
|
|
1211
|
+
|
|
1212
|
+
Show details for a single goal, including the DRI and completion percentage.
|
|
1213
|
+
|
|
1214
|
+
```bash
|
|
1215
|
+
sky goals show <goal-id>
|
|
1216
|
+
sky goals show <goal-id> --json
|
|
1217
|
+
```
|
|
1218
|
+
|
|
1219
|
+
### `sky goals create`
|
|
1220
|
+
|
|
1221
|
+
Create a new goal. `--title` is required unless supplied via `--from-json`.
|
|
1222
|
+
|
|
1223
|
+
```bash
|
|
1224
|
+
sky goals create --title "Ship Q2 roadmap"
|
|
1225
|
+
sky goals create --title "Milestone 1" --level milestone --parent <parent-id>
|
|
1226
|
+
sky goals create --from-json goal.json
|
|
1227
|
+
```
|
|
1228
|
+
|
|
1229
|
+
Flags: `--title`, `--description`, `--level`, `--parent`, `--owner-agent`,
|
|
1230
|
+
`--dri-agent`, `--dri-user`, `--from-json <file|->`, `--json`.
|
|
1231
|
+
|
|
1232
|
+
### `sky goals update <id>`
|
|
1233
|
+
|
|
1234
|
+
Partial patch.
|
|
1235
|
+
|
|
1236
|
+
```bash
|
|
1237
|
+
sky goals update <goal-id> --title "New title"
|
|
1238
|
+
sky goals update <goal-id> --status active --dri-user <user-id>
|
|
1239
|
+
sky goals update <goal-id> --from-json patch.json
|
|
1240
|
+
```
|
|
1241
|
+
|
|
1242
|
+
Flags: `--title`, `--description`, `--level`, `--status`, `--parent`,
|
|
1243
|
+
`--owner-agent`, `--dri-agent`, `--dri-user`, `--from-json <file|->`, `--json`.
|
|
1244
|
+
|
|
1245
|
+
### `sky goals delete <id>`
|
|
1246
|
+
|
|
1247
|
+
Delete a goal. Same confirmation behavior as `spaces delete`.
|
|
1248
|
+
|
|
1249
|
+
```bash
|
|
1250
|
+
sky goals delete <goal-id>
|
|
1251
|
+
sky goals delete <goal-id> --yes
|
|
1252
|
+
```
|
|
1253
|
+
|
|
1254
|
+
### `sky tasks list`
|
|
1255
|
+
|
|
1256
|
+
List tasks. All filter flags are passed through to `listTasks` as params;
|
|
1257
|
+
combine freely.
|
|
1258
|
+
|
|
1259
|
+
```bash
|
|
1260
|
+
sky tasks list
|
|
1261
|
+
sky tasks list --space <space-id>
|
|
1262
|
+
sky tasks list --goal <goal-id> --status in_progress
|
|
1263
|
+
sky tasks list --space <space-id> --external-key ws0/root --json
|
|
1264
|
+
sky tasks list --q "login bug"
|
|
1265
|
+
sky tasks list --priority high --json
|
|
1266
|
+
```
|
|
1267
|
+
|
|
1268
|
+
Flags:
|
|
1269
|
+
|
|
1270
|
+
- `--space <id>` — filter by space ID
|
|
1271
|
+
- `--goal <id>` — filter by goal ID
|
|
1272
|
+
- `--parent <id>` — filter by parent task ID (lists direct children)
|
|
1273
|
+
- `--status <status>` — filter by task status
|
|
1274
|
+
- `--priority <priority>` — filter by task priority
|
|
1275
|
+
- `--external-key <key>` — filter by caller-supplied idempotency key
|
|
1276
|
+
- `--q <query>` — free-text search
|
|
1277
|
+
- `--limit <n>` — max results (default 50)
|
|
1278
|
+
- `--cursor <cursor>` — pagination cursor
|
|
1279
|
+
- `--json` — emit raw JSON
|
|
1280
|
+
|
|
1281
|
+
The table shows the task ref (identifier or `#taskNumber`), title, status,
|
|
1282
|
+
priority, assignee counts (`Na/Mu` = N agents, M users), and ID.
|
|
1283
|
+
|
|
1284
|
+
### Current task defaults
|
|
1285
|
+
|
|
1286
|
+
In daemon task runtimes, the CLI reads `OVERSKY_SESSION_TASK_ID` as the
|
|
1287
|
+
canonical current task. Agent-facing task commands therefore accept no task
|
|
1288
|
+
positional when the current task is obvious:
|
|
1289
|
+
|
|
1290
|
+
```bash
|
|
1291
|
+
sky tasks show --json
|
|
1292
|
+
sky tasks comments add --body "Done investigating." --json # human discussion comment
|
|
1293
|
+
sky tasks events append --kind checkpoint --summary "Done investigating." --idempotency-key investigation-1 --json
|
|
1294
|
+
sky tasks complete --summary "Shipped the fix." --artifacts none --verdict approved --json
|
|
1295
|
+
sky tasks move --status in_progress --json
|
|
1296
|
+
```
|
|
1297
|
+
|
|
1298
|
+
Use `--task <task-id>` when a script intentionally operates on a different
|
|
1299
|
+
task. `--from-json` payloads may include `taskId` for commands that accept a
|
|
1300
|
+
task-scoped JSON body; the CLI uses it for routing and strips it from the API
|
|
1301
|
+
payload before sending the business fields.
|
|
1302
|
+
|
|
1303
|
+
### `sky tasks show [id]`
|
|
1304
|
+
|
|
1305
|
+
Show details for a single task. Enriched by default — pass `--no-enrich` to
|
|
1306
|
+
skip the server-side enrichment (assignee names, parent titles).
|
|
1307
|
+
|
|
1308
|
+
```bash
|
|
1309
|
+
sky tasks show <task-id>
|
|
1310
|
+
sky tasks show
|
|
1311
|
+
sky tasks show --task <task-id> --json
|
|
1312
|
+
sky tasks show <task-id> --json
|
|
1313
|
+
sky tasks show <task-id> --no-enrich
|
|
1314
|
+
```
|
|
1315
|
+
|
|
1316
|
+
### `sky tasks create`
|
|
1317
|
+
|
|
1318
|
+
Create a new task. `--title` is required unless supplied via `--from-json`.
|
|
1319
|
+
The assignee flags are repeatable — pass `--assignee-agent` multiple times to
|
|
1320
|
+
assign several agents.
|
|
1321
|
+
|
|
1322
|
+
```bash
|
|
1323
|
+
sky tasks create --title "Fix login bug" --space <space-id>
|
|
1324
|
+
sky tasks create --title "Design review" --space <space-id> --goal <goal-id> --priority high
|
|
1325
|
+
sky tasks create --title "Runnable by default" --space <space-id> --default-agent auto
|
|
1326
|
+
sky tasks create --title "QA pass" \
|
|
1327
|
+
--assignee-agent <agent-id> \
|
|
1328
|
+
--assignee-agent <other-agent-id> \
|
|
1329
|
+
--tag release --tag urgent \
|
|
1330
|
+
--label-id <existing-label-id>
|
|
1331
|
+
sky tasks create --title "Follow up" --source-conversation <conversation-id>
|
|
1332
|
+
sky tasks create --title "Spec task" --external-key ws0/spec --dry-run --json
|
|
1333
|
+
sky tasks create --from-json task.json
|
|
1334
|
+
```
|
|
1335
|
+
|
|
1336
|
+
When no assignee is supplied, `sky tasks create` uses a deterministic default:
|
|
1337
|
+
the bound daemon-session agent, the lead agent for a space-scoped task, or the
|
|
1338
|
+
only message-eligible agent in an unscoped personal task. If an unscoped CLI
|
|
1339
|
+
has multiple eligible agents, the command fails and asks for an explicit
|
|
1340
|
+
assignee instead of guessing. An explicit empty `assigneeAgentIds` or
|
|
1341
|
+
`assigneeUserIds` array remains the opt-out for intentionally unassigned work.
|
|
1342
|
+
|
|
1343
|
+
Inside a Local Daemon agent session, `sky tasks create` also defaults missing
|
|
1344
|
+
`sourceConversationId` and `spaceId` from the session env when available.
|
|
1345
|
+
|
|
1346
|
+
`--default-agent` overrides the automatic default. `--default-agent auto`
|
|
1347
|
+
injects the space lead agent, while an explicit agent ID selects that agent.
|
|
1348
|
+
An explicit `--assignee-agent`/`assigneeAgentIds` or `--assignee-user`/
|
|
1349
|
+
`assigneeUserIds` always wins.
|
|
1350
|
+
|
|
1351
|
+
When `--project <canonical-project-id>` or `--parent <task-id>` is supplied
|
|
1352
|
+
without `--space`, the CLI resolves the inherited Space before choosing the
|
|
1353
|
+
default assignee. Project refs still require `--space`; canonical project IDs
|
|
1354
|
+
are globally resolvable.
|
|
1355
|
+
|
|
1356
|
+
Tags are lightweight free-form keywords. Labels are shared workspace taxonomy
|
|
1357
|
+
and are attached by opaque ID; discover existing IDs with
|
|
1358
|
+
`sky tasks labels list --json`. Both are optional and repeatable at creation.
|
|
1359
|
+
|
|
1360
|
+
Flags: `--title`, `--description`, `--description-format`, `--external-key`,
|
|
1361
|
+
`--default-agent`,
|
|
1362
|
+
`--priority`, `--parent`, `--space`, `--goal`,
|
|
1363
|
+
`--source-conversation`, `--source-message`, `--assignee-agent`
|
|
1364
|
+
(repeatable), `--assignee-user` (repeatable), `--due-date`, `--tag`
|
|
1365
|
+
(repeatable), `--label-id` (repeatable), `--from-json <file|->`, `--dry-run`,
|
|
1366
|
+
`--json`.
|
|
1367
|
+
|
|
1368
|
+
### `sky tasks upsert`
|
|
1369
|
+
|
|
1370
|
+
Create or update one task by `externalKey`. The lookup is scoped by any
|
|
1371
|
+
provided `--space`, `--goal`, and `--parent`, so title changes do
|
|
1372
|
+
not create duplicates.
|
|
1373
|
+
|
|
1374
|
+
Automatic assignee defaults apply only when the upsert creates a new task.
|
|
1375
|
+
Updating an existing task preserves omitted assignment fields, including an
|
|
1376
|
+
intentional unassigned state. Pass an explicit assignee or `--default-agent`
|
|
1377
|
+
to change/fill assignment during an update.
|
|
1378
|
+
|
|
1379
|
+
```bash
|
|
1380
|
+
sky tasks upsert --space <space-id> --external-key ws0/root --title "WS0 root"
|
|
1381
|
+
sky tasks upsert --space <space-id> --external-key ws0/root --title "WS0 root" --default-agent auto
|
|
1382
|
+
sky tasks upsert --space <space-id> --external-key ws0/root --from-json task.json --json
|
|
1383
|
+
```
|
|
1384
|
+
|
|
1385
|
+
### `sky tasks create-tree`
|
|
1386
|
+
|
|
1387
|
+
Create a whole task tree from JSON. The command returns a `mapping` object from
|
|
1388
|
+
input `tempId` (or generated path like `0.1`) to the real task id. If a node has
|
|
1389
|
+
`externalKey`, or `--external-key-prefix` is provided, that node is upserted
|
|
1390
|
+
instead of blindly duplicated.
|
|
1391
|
+
|
|
1392
|
+
```bash
|
|
1393
|
+
sky tasks create-tree --from-json tree.json --space <space-id> --json
|
|
1394
|
+
sky tasks create-tree --from-json tree.json --space <space-id> --default-agent auto
|
|
1395
|
+
sky tasks create-tree --from-json tree.json --external-key-prefix recursive-learning/ws0
|
|
1396
|
+
sky tasks create-tree --from-json tree.json --dry-run --json
|
|
1397
|
+
```
|
|
1398
|
+
|
|
1399
|
+
Nodes without assignees inherit their parent node's assignee first, then use
|
|
1400
|
+
the same automatic default as `tasks create`. `--default-agent auto` makes the
|
|
1401
|
+
space-lead fallback explicit for a tree. Nodes matched by `externalKey` keep
|
|
1402
|
+
their existing assignment unless the input explicitly supplies assignees or
|
|
1403
|
+
`--default-agent` fills an unassigned task.
|
|
1404
|
+
|
|
1405
|
+
Minimal `tree.json`:
|
|
1406
|
+
|
|
1407
|
+
```json
|
|
1408
|
+
{
|
|
1409
|
+
"root": {
|
|
1410
|
+
"tempId": "root",
|
|
1411
|
+
"title": "Build Harness Self-Improvement initiative",
|
|
1412
|
+
"children": [{ "tempId": "ws0", "title": "WS0 - Activate dark features" }]
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
```
|
|
1416
|
+
|
|
1417
|
+
### `sky tasks plan ...`
|
|
1418
|
+
|
|
1419
|
+
Create and operate the Implementation Workflow owned by a parent Task. Work
|
|
1420
|
+
nodes always reference real direct subtasks; control nodes may add approvals,
|
|
1421
|
+
waits, branches and bounded review.
|
|
1422
|
+
|
|
1423
|
+
```bash
|
|
1424
|
+
sky tasks plan create <task-id> --json
|
|
1425
|
+
sky tasks plan show <task-id>
|
|
1426
|
+
sky tasks plan add-subtask <task-id> --title "Implement the API" --agent <agent-id>
|
|
1427
|
+
sky tasks plan sync <task-id>
|
|
1428
|
+
sky tasks plan update <task-id> --from-json plan-update.json --json
|
|
1429
|
+
sky tasks plan start <task-id> --start-identity implementation-v1 --json
|
|
1430
|
+
sky tasks plan run <task-id> <run-id> --json
|
|
1431
|
+
sky tasks plan pause <task-id> <run-id> <node-key>
|
|
1432
|
+
sky tasks plan resume <task-id> <run-id> <node-key>
|
|
1433
|
+
sky tasks plan retry <task-id> <run-id>
|
|
1434
|
+
sky tasks plan reconcile <task-id> <run-id>
|
|
1435
|
+
sky tasks plan cancel <task-id> <run-id> --yes
|
|
1436
|
+
```
|
|
1437
|
+
|
|
1438
|
+
### `sky tasks bulk-update`
|
|
1439
|
+
|
|
1440
|
+
Apply partial patches to many tasks. Use `status` in a patch to route that item
|
|
1441
|
+
through the canonical move endpoint; other fields use `tasks update`.
|
|
1442
|
+
|
|
1443
|
+
```bash
|
|
1444
|
+
sky tasks bulk-update --from-json updates.json --json
|
|
1445
|
+
sky tasks bulk-update --from-json updates.json --continue-on-error
|
|
1446
|
+
```
|
|
1447
|
+
|
|
1448
|
+
Accepted JSON shapes:
|
|
1449
|
+
|
|
1450
|
+
```json
|
|
1451
|
+
{
|
|
1452
|
+
"updates": [
|
|
1453
|
+
{ "id": "task-1", "priority": "high", "status": "in_progress" },
|
|
1454
|
+
{ "id": "task-2", "data": { "goalId": "goal-1", "tags": ["release"] } }
|
|
1455
|
+
]
|
|
1456
|
+
}
|
|
1457
|
+
```
|
|
1458
|
+
|
|
1459
|
+
### `sky tasks tree [id]`
|
|
1460
|
+
|
|
1461
|
+
Fetch a root task plus descendants and render the hierarchy. With `--goal`,
|
|
1462
|
+
fetch tasks linked to a goal and render a forest of root tasks plus subtasks.
|
|
1463
|
+
`--json` returns either nested `tree.children[]` for a root task or
|
|
1464
|
+
`trees[].children[]` with `object: "goal_task_forest"` for a goal.
|
|
1465
|
+
|
|
1466
|
+
```bash
|
|
1467
|
+
sky tasks tree <root-task-id>
|
|
1468
|
+
sky tasks tree <root-task-id> --limit 1000 --json
|
|
1469
|
+
sky tasks tree --goal <goal-id>
|
|
1470
|
+
sky tasks tree --goal <goal-id> --json
|
|
1471
|
+
```
|
|
1472
|
+
|
|
1473
|
+
Flags: `--goal <id>`, `--limit <n>`, `--cursor <cursor>` (goal mode),
|
|
1474
|
+
`--no-enrich` (root-task mode), `--json`.
|
|
1475
|
+
|
|
1476
|
+
### `sky tasks update [id]`
|
|
1477
|
+
|
|
1478
|
+
Partial patch. Assignees can be replaced wholesale (`--assignee-agent`) or
|
|
1479
|
+
mutated incrementally (`--add-assignee-agent`, `--remove-assignee-agent`) so
|
|
1480
|
+
you don't have to re-send the full list.
|
|
1481
|
+
|
|
1482
|
+
```bash
|
|
1483
|
+
sky tasks update <task-id> --title "New title"
|
|
1484
|
+
sky tasks update --title "New title"
|
|
1485
|
+
sky tasks update --task <task-id> --title "New title" --json
|
|
1486
|
+
sky tasks update <task-id> --priority high --due-date 2026-05-01
|
|
1487
|
+
sky tasks update <task-id> --add-assignee-agent <agent-id>
|
|
1488
|
+
sky tasks update <task-id> --remove-assignee-user <user-id>
|
|
1489
|
+
sky tasks update <task-id> --from-json patch.json
|
|
1490
|
+
```
|
|
1491
|
+
|
|
1492
|
+
Flags: `--title`, `--description`, `--priority`, `--due-date`, `--goal`,
|
|
1493
|
+
`--assignee-agent`/`--assignee-user` (replace, repeatable),
|
|
1494
|
+
`--add-assignee-agent`/`--remove-assignee-agent` (incremental, repeatable),
|
|
1495
|
+
`--add-assignee-user`/`--remove-assignee-user` (incremental, repeatable),
|
|
1496
|
+
`--tag` (replace, repeatable), `--from-json <file|->`, `--json`.
|
|
1497
|
+
|
|
1498
|
+
**Note**: `TaskUpdateParams` in the data-provider does not expose a `status`
|
|
1499
|
+
field — use [`sky tasks move [id] --status <status>`](#sky-tasks-move-id---status-status)
|
|
1500
|
+
to transition between states like `todo`, `in_progress`, `blocked`, or
|
|
1501
|
+
`completed`. `tasks update` handles everything else.
|
|
1502
|
+
|
|
1503
|
+
### `sky tasks complete [id]`
|
|
1504
|
+
|
|
1505
|
+
Post the canonical `---TASK_OUTPUT---` closeout comment and move the task to a
|
|
1506
|
+
terminal status. In a task daemon session, omit the id to complete the current
|
|
1507
|
+
task.
|
|
1508
|
+
|
|
1509
|
+
```bash
|
|
1510
|
+
sky tasks complete --summary "Shipped the fix." --artifacts none --verdict approved --json
|
|
1511
|
+
sky tasks complete <task-id> --summary "Shipped the fix." --verdict approved
|
|
1512
|
+
sky tasks complete --task <task-id> --status failed --summary "Blocked by missing access" --verdict blocked
|
|
1513
|
+
sky tasks complete --from-json task-output.json --json
|
|
1514
|
+
```
|
|
1515
|
+
|
|
1516
|
+
`--status completed` moves the task to `done`; `--status failed` moves it to
|
|
1517
|
+
`failed`. Pass `--no-move` when another runner owns the status transition.
|
|
1518
|
+
|
|
1519
|
+
### `sky tasks delete <id>`
|
|
1520
|
+
|
|
1521
|
+
Delete a task. Same confirmation behavior as `spaces delete`.
|
|
1522
|
+
|
|
1523
|
+
```bash
|
|
1524
|
+
sky tasks delete <task-id>
|
|
1525
|
+
sky tasks delete <task-id> --yes
|
|
1526
|
+
```
|
|
1527
|
+
|
|
1528
|
+
### `sky tasks start [id]`
|
|
1529
|
+
|
|
1530
|
+
Start execution of a task. The server spawns a conversation and a session,
|
|
1531
|
+
then streams progress via the agentic WebSocket (not wrapped by the CLI yet).
|
|
1532
|
+
The command returns immediately after starting and prints the conversation
|
|
1533
|
+
and session IDs so you can follow up elsewhere.
|
|
1534
|
+
|
|
1535
|
+
```bash
|
|
1536
|
+
sky tasks start <task-id>
|
|
1537
|
+
sky tasks start
|
|
1538
|
+
sky tasks start --task <task-id> --json
|
|
1539
|
+
sky tasks start <task-id> --skill <skill-id> # run with a pinned space-skill
|
|
1540
|
+
sky tasks start <task-id> --json
|
|
1541
|
+
sky tasks start OSK-123 --branch # create/check out oversky/task/OSK-123
|
|
1542
|
+
```
|
|
1543
|
+
|
|
1544
|
+
With no explicit task or daemon session context, task commands can infer
|
|
1545
|
+
`OSK-123` from the current `oversky/task/OSK-123` branch. Verify that local
|
|
1546
|
+
context with `sky tasks current` (it makes no network request).
|
|
1547
|
+
|
|
1548
|
+
Sample output:
|
|
1549
|
+
|
|
1550
|
+
```
|
|
1551
|
+
Started task task-abc123
|
|
1552
|
+
Conversation: convo-xyz789
|
|
1553
|
+
Session: session-456
|
|
1554
|
+
```
|
|
1555
|
+
|
|
1556
|
+
### Continuous execution control
|
|
1557
|
+
|
|
1558
|
+
Use these commands when a script or operator starts several agent sessions and
|
|
1559
|
+
needs visibility after `tasks start` returns.
|
|
1560
|
+
|
|
1561
|
+
```bash
|
|
1562
|
+
# What is occupying execution capacity in a space?
|
|
1563
|
+
sky spaces capacity <space-id>
|
|
1564
|
+
|
|
1565
|
+
# Raise/lower the execution concurrency cap without enabling auto-execute
|
|
1566
|
+
sky spaces auto-executor update <space-id> --max-active-tasks 6
|
|
1567
|
+
|
|
1568
|
+
# Show active task sessions under a space or root task
|
|
1569
|
+
sky tasks active --space <space-id>
|
|
1570
|
+
sky tasks active --root <root-task-id>
|
|
1571
|
+
sky tasks active
|
|
1572
|
+
|
|
1573
|
+
# One-shot operator snapshot: counts, active sessions, recent events, failures
|
|
1574
|
+
sky tasks monitor <root-task-id>
|
|
1575
|
+
|
|
1576
|
+
# Human-facing polling stream
|
|
1577
|
+
sky tasks watch <root-task-id> --descendants --children-only
|
|
1578
|
+
|
|
1579
|
+
# Script gate: wait for prerequisites, then continue ready children
|
|
1580
|
+
sky tasks wait <task-a> --task <task-b> --until done --timeout 30m
|
|
1581
|
+
sky tasks wait --until done --timeout 30m
|
|
1582
|
+
sky tasks continue-ready <root-task-id> --max-starts 3
|
|
1583
|
+
```
|
|
1584
|
+
|
|
1585
|
+
On current servers, `continue-ready` consumes the canonical dependency and
|
|
1586
|
+
next-actor projection. The legacy `depends: WS-x.y` parser remains only as a
|
|
1587
|
+
compatibility fallback for older servers. It also clamps starts to free space
|
|
1588
|
+
capacity unless `--ignore-capacity` is passed.
|
|
1589
|
+
|
|
1590
|
+
### `sky tasks interrupt <id>`
|
|
1591
|
+
|
|
1592
|
+
Stop a running task. Mirrors the web editor's "Stop execution" affordance —
|
|
1593
|
+
posts an interrupt-flagged comment that the agent runtime honors. The
|
|
1594
|
+
optional `--reason` text lands in the activity log so reviewers can see
|
|
1595
|
+
who stopped what and why.
|
|
1596
|
+
|
|
1597
|
+
```bash
|
|
1598
|
+
sky tasks interrupt <task-id>
|
|
1599
|
+
sky tasks interrupt <task-id> --reason "wrong file"
|
|
1600
|
+
```
|
|
1601
|
+
|
|
1602
|
+
### Inline anchored comments
|
|
1603
|
+
|
|
1604
|
+
Two complementary commands. `comments add` is the low-level primitive —
|
|
1605
|
+
it records the anchor row but does NOT touch the description, so the
|
|
1606
|
+
caller is responsible for ensuring a matching `<span data-comment-id="…">`
|
|
1607
|
+
exists. `comments anchor` is the one-shot helper that does both in a
|
|
1608
|
+
single atomic flow.
|
|
1609
|
+
|
|
1610
|
+
#### `sky tasks comments anchor` — one-shot find-and-wrap (recommended)
|
|
1611
|
+
|
|
1612
|
+
Finds the quote in the current task description, wraps the matched
|
|
1613
|
+
occurrence in `<span class="inline-comment" data-comment-id="…">…</span>`,
|
|
1614
|
+
PATCHes the description back with optimistic-lock (`expectedVersion`),
|
|
1615
|
+
then posts the inline comment with the matching mark id. If the comment
|
|
1616
|
+
POST fails, the description is rolled back so the task is never left
|
|
1617
|
+
with an orphan span.
|
|
1618
|
+
|
|
1619
|
+
```bash
|
|
1620
|
+
sky tasks comments anchor <task-id> \
|
|
1621
|
+
--quote "the offending sentence" \
|
|
1622
|
+
--body "Needs rewording"
|
|
1623
|
+
|
|
1624
|
+
# Pick a later occurrence when the phrase repeats
|
|
1625
|
+
sky tasks comments anchor <task-id> --quote "TODO" --occurrence 2 --body "Pick one"
|
|
1626
|
+
|
|
1627
|
+
# Preview the description change without committing
|
|
1628
|
+
sky tasks comments anchor <task-id> --quote "…" --body "…" --dry-run
|
|
1629
|
+
|
|
1630
|
+
# Pre-mint the mark id (useful when you want to reference it from automation)
|
|
1631
|
+
sky tasks comments anchor <task-id> \
|
|
1632
|
+
--quote "…" --body "…" --anchor-mark-id my-mark-1
|
|
1633
|
+
```
|
|
1634
|
+
|
|
1635
|
+
The quote must live in a **single HTML text run** in the description.
|
|
1636
|
+
TipTap-style spans across formatting marks (e.g. `the <em>offending</em>
|
|
1637
|
+
sentence`) are rejected with a clear error — the editor would have to
|
|
1638
|
+
break the `<em>` mark to wrap them, which would change the document's
|
|
1639
|
+
semantics. Workaround: flatten the formatting first with
|
|
1640
|
+
`sky tasks update <id> --description …`, then re-run.
|
|
1641
|
+
|
|
1642
|
+
> **Important — collab safety.** If a collaborative editing session is
|
|
1643
|
+
> open on the same task, the server's description renderer
|
|
1644
|
+
> (`CollabDescriptionRenderer`, 2s tick) will overwrite your PATCH with
|
|
1645
|
+
> a fresh render from the Y.Doc, dropping the span you injected. The CLI
|
|
1646
|
+
> isn't a Yjs peer so it can't speak the same wire protocol. Prefer the
|
|
1647
|
+
> web editor when live collaborators are actively typing.
|
|
1648
|
+
|
|
1649
|
+
#### `sky tasks comments add --anchor-mark-id / --anchor-quote` (low-level)
|
|
1650
|
+
|
|
1651
|
+
Records the anchor row without modifying the description. Useful when you
|
|
1652
|
+
already managed the span (e.g. via a web edit session) or you don't need
|
|
1653
|
+
the visible inline-comment style — the comment still threads in the
|
|
1654
|
+
rail, just without a highlighted phrase.
|
|
1655
|
+
|
|
1656
|
+
| Flag | Meaning |
|
|
1657
|
+
| ------------------------- | ----------------------------------------------------------------------------------------------------- |
|
|
1658
|
+
| `--anchor-mark-id <id>` | Mark id that matches the `data-comment-id` span in the description. Must match `[a-zA-Z0-9_-]{1,64}`. |
|
|
1659
|
+
| `--anchor-quote "<text>"` | Captured quote shown in the comments rail. Truncated to 500 chars to match the editor. |
|
|
1660
|
+
|
|
1661
|
+
Pass `--anchor-quote` alone and the CLI mints a UUID for the mark id,
|
|
1662
|
+
mirroring the web editor's `handleAddInlineComment`. You must still
|
|
1663
|
+
apply a matching `data-comment-id` span to the description for the
|
|
1664
|
+
in-document chip to render.
|
|
1665
|
+
|
|
1666
|
+
```bash
|
|
1667
|
+
# Mint markId for me, attach to a quote
|
|
1668
|
+
sky tasks comments add <task-id> \
|
|
1669
|
+
--body "This phrase needs rewording" \
|
|
1670
|
+
--anchor-quote "the offending sentence"
|
|
1671
|
+
|
|
1672
|
+
# Current task in a daemon task runtime
|
|
1673
|
+
sky tasks comments add --body "This phrase needs rewording" --json
|
|
1674
|
+
|
|
1675
|
+
# Pre-minted markId (matches a span you already added)
|
|
1676
|
+
sky tasks comments add <task-id> \
|
|
1677
|
+
--body "Pre-minted anchor" \
|
|
1678
|
+
--anchor-mark-id my-mark-123 \
|
|
1679
|
+
--anchor-quote "context"
|
|
1680
|
+
|
|
1681
|
+
# Threaded reply (anchor on a reply is silently dropped; replies inherit
|
|
1682
|
+
# the parent's anchor server-side)
|
|
1683
|
+
sky tasks comments add <task-id> \
|
|
1684
|
+
--body "+1" \
|
|
1685
|
+
--parent-comment <root-comment-id>
|
|
1686
|
+
```
|
|
1687
|
+
|
|
1688
|
+
### `sky tasks dri-run <id>` / `sky tasks dri-plan <id>`
|
|
1689
|
+
|
|
1690
|
+
The DRI ("Directly Responsible Individual") card on the task detail page
|
|
1691
|
+
exposes two execution modes:
|
|
1692
|
+
|
|
1693
|
+
| Web button | CLI |
|
|
1694
|
+
| ---------------------------------------------------------- | ------------------------- |
|
|
1695
|
+
| **Execute** — run the task via the DRI agent only | `sky tasks dri-run <id>` |
|
|
1696
|
+
| **Plan** — DRI agent plans subtasks then runs the pipeline | `sky tasks dri-plan <id>` |
|
|
1697
|
+
|
|
1698
|
+
Both print the resulting `conversationId` + `sessionId`. Use the regular
|
|
1699
|
+
`sky tasks start` (with `--skill` if needed) when you want to run as the
|
|
1700
|
+
caller without invoking the space's DRI agent.
|
|
1701
|
+
|
|
1702
|
+
### `sky tasks forward <id> --to <group-chat-id>`
|
|
1703
|
+
|
|
1704
|
+
Forward a task as an embedded card into one or more group chats. Server
|
|
1705
|
+
returns 200 on partial success — failed targets are listed with a precise
|
|
1706
|
+
reason (`not_found`, `not_member`, `no_send_permission`, `error`). If
|
|
1707
|
+
_every_ target failed the CLI exits with code 6 so scripts notice.
|
|
1708
|
+
|
|
1709
|
+
```bash
|
|
1710
|
+
sky tasks forward <task-id> --to <group-chat-id>
|
|
1711
|
+
sky tasks forward <task-id> --to <gc-a> --to <gc-b> --note "FYI"
|
|
1712
|
+
```
|
|
1713
|
+
|
|
1714
|
+
### Scheduling: `schedule`, `unschedule`, `retry-schedule`, `pause-schedule`, `resume-schedule`
|
|
1715
|
+
|
|
1716
|
+
The web editor's TaskScheduleModal maps to five flat verbs:
|
|
1717
|
+
|
|
1718
|
+
```bash
|
|
1719
|
+
# One-shot
|
|
1720
|
+
sky tasks schedule <task-id> --at 2026-06-01T15:30:00Z
|
|
1721
|
+
|
|
1722
|
+
# Recurring (cron is interpreted in --timezone if provided, else UTC)
|
|
1723
|
+
sky tasks schedule <task-id> \
|
|
1724
|
+
--at 2026-06-01T09:00:00Z \
|
|
1725
|
+
--cron "0 9 * * 1-5" \
|
|
1726
|
+
--timezone America/Los_Angeles \
|
|
1727
|
+
--max-runs 20
|
|
1728
|
+
|
|
1729
|
+
# Clear schedule entirely
|
|
1730
|
+
sky tasks unschedule <task-id>
|
|
1731
|
+
|
|
1732
|
+
# Re-arm after a stale/failed fire — optionally pin a new first-fire time
|
|
1733
|
+
sky tasks retry-schedule <task-id>
|
|
1734
|
+
sky tasks retry-schedule <task-id> --at 2026-06-02T15:00:00Z
|
|
1735
|
+
|
|
1736
|
+
# Pause / resume a recurring schedule without losing its definition
|
|
1737
|
+
sky tasks pause-schedule <task-id>
|
|
1738
|
+
sky tasks resume-schedule <task-id>
|
|
1739
|
+
```
|
|
1740
|
+
|
|
1741
|
+
Pass `--from-json schedule.json` to `schedule` for fields not exposed as
|
|
1742
|
+
typed flags (matches the `TaskScheduleParams` shape).
|
|
1743
|
+
|
|
1744
|
+
### `sky tasks tags add` / `sky tasks tags remove`
|
|
1745
|
+
|
|
1746
|
+
Incremental tag mutation. (`sky tasks update --tag …` is a whole-list
|
|
1747
|
+
replacement — use these when you want to _add_ one without clobbering the
|
|
1748
|
+
rest.) Tags are lowercased + deduped to match the web editor's behavior.
|
|
1749
|
+
|
|
1750
|
+
```bash
|
|
1751
|
+
sky tasks tags add <task-id> --tag urgent --tag follow-up
|
|
1752
|
+
sky tasks tags remove <task-id> --tag follow-up
|
|
1753
|
+
```
|
|
1754
|
+
|
|
1755
|
+
### `sky tasks skills pin` / `sky tasks skills unpin`
|
|
1756
|
+
|
|
1757
|
+
Pin one or more space-curated skills onto a task (max 5 total — server
|
|
1758
|
+
enforces). The skill must already be pinned at the space level
|
|
1759
|
+
(`Space.skillIds`); the server rejects unknown ids with 4xx.
|
|
1760
|
+
|
|
1761
|
+
```bash
|
|
1762
|
+
sky tasks skills pin <task-id> <skill-id> [<skill-id-2> ...]
|
|
1763
|
+
sky tasks skills unpin <task-id> <skill-id> [<skill-id-2> ...]
|
|
1764
|
+
```
|
|
1765
|
+
|
|
1766
|
+
### `sky tasks actions attach` / `sky tasks actions detach`
|
|
1767
|
+
|
|
1768
|
+
Attach agent quick actions onto a task (`Task.attachedActionRefs`, max 50) so
|
|
1769
|
+
their prompts are injected as a task-specific playbook on every run. The task
|
|
1770
|
+
must belong to a space. Discover refs with
|
|
1771
|
+
`sky spaces actions available <space-id>`.
|
|
1772
|
+
|
|
1773
|
+
```bash
|
|
1774
|
+
sky tasks actions attach <task-id> <agentId>:<actionId> [<ref-2> ...]
|
|
1775
|
+
sky tasks actions detach <task-id> <agentId>:<actionId> [<actionId> ...]
|
|
1776
|
+
```
|
|
1777
|
+
|
|
1778
|
+
### `sky tasks move [id] --status <status>`
|
|
1779
|
+
|
|
1780
|
+
Change a task's status. This is the canonical status-transition endpoint —
|
|
1781
|
+
`tasks update` does NOT expose a status field (see
|
|
1782
|
+
`TaskUpdateParams` in the data-provider), so `tasks move` is how you
|
|
1783
|
+
transition between states like `todo`, `in_progress`, `blocked`, `failed`,
|
|
1784
|
+
and `done`.
|
|
1785
|
+
|
|
1786
|
+
```bash
|
|
1787
|
+
sky tasks move <task-id> --status in_progress
|
|
1788
|
+
sky tasks move --status in_progress
|
|
1789
|
+
sky tasks move --task <task-id> --status done --json
|
|
1790
|
+
sky tasks move <task-id> --status done
|
|
1791
|
+
sky tasks move <task-id> --status blocked --json
|
|
1792
|
+
```
|
|
1793
|
+
|
|
1794
|
+
The server validates the status string — invalid values return an error.
|
|
1795
|
+
|
|
1796
|
+
## The inspection loop
|
|
1797
|
+
|
|
1798
|
+
A useful tour of an OverSky workspace from the CLI:
|
|
1799
|
+
|
|
1800
|
+
```bash
|
|
1801
|
+
sky spaces list
|
|
1802
|
+
sky spaces show <space-id>
|
|
1803
|
+
sky goals list --space <space-id>
|
|
1804
|
+
sky tasks list --space <space-id> --status in_progress
|
|
1805
|
+
sky tasks show <task-id>
|
|
1806
|
+
sky tasks start <task-id> # kicks off execution
|
|
1807
|
+
sky convos show <convo-id> # the returned conversation
|
|
1808
|
+
sky messages list --convo <convo-id> # follow the transcript
|
|
1809
|
+
```
|
|
1810
|
+
|
|
1811
|
+
Pipe any step to `jq` with `--json` for scripting:
|
|
1812
|
+
|
|
1813
|
+
```bash
|
|
1814
|
+
sky tasks list --space <space-id> --json | jq '.data[] | select(.priority == "high")'
|
|
1815
|
+
```
|
|
1816
|
+
|
|
1817
|
+
## Task workflow quick-reference
|
|
1818
|
+
|
|
1819
|
+
The commands that move a task through its lifecycle, most to least common:
|
|
1820
|
+
|
|
1821
|
+
| Action | Command |
|
|
1822
|
+
| ------------------- | ------------------------------------------------------------------ |
|
|
1823
|
+
| Complete task | `sky tasks complete [id] --summary "..." --verdict approved` |
|
|
1824
|
+
| Change status | `sky tasks move [id] --status <new-status>` |
|
|
1825
|
+
| Start execution | `sky tasks start [id]` (optionally `--skill <id>`) |
|
|
1826
|
+
| Stop a running task | `sky tasks interrupt <id>` |
|
|
1827
|
+
| Run via DRI agent | `sky tasks dri-run <id>` / `sky tasks dri-plan <id>` |
|
|
1828
|
+
| Schedule a fire | `sky tasks schedule <id> --at <iso>` (`--cron …` for recurring) |
|
|
1829
|
+
| Pause / resume cron | `sky tasks pause-schedule <id>` / `sky tasks resume-schedule <id>` |
|
|
1830
|
+
| Forward to chats | `sky tasks forward <id> --to <group-chat-id>` |
|
|
1831
|
+
| Incremental tags | `sky tasks tags add/remove <id> --tag …` |
|
|
1832
|
+
| Pin/unpin skills | `sky tasks skills pin/unpin <id> <skill-id>` |
|
|
1833
|
+
| Delete | `sky tasks delete <id>` |
|
|
1834
|
+
|
|
1835
|
+
`tasks update` handles every other field (title, description, priority,
|
|
1836
|
+
assignees, due date, goal) but explicitly does NOT touch status — use
|
|
1837
|
+
`tasks move` for that.
|
|
1838
|
+
|
|
1839
|
+
## The `--from-json` pattern
|
|
1840
|
+
|
|
1841
|
+
Every `create` and `update` command accepts `--from-json <file-or-dash>` as a
|
|
1842
|
+
universal escape hatch for fields not exposed as typed flags. The body is a
|
|
1843
|
+
plain JSON object matching the data-provider's `*CreateParams` /
|
|
1844
|
+
`*UpdateParams` shape. Typed flags override fields in the JSON on conflict,
|
|
1845
|
+
so you can template a base body and tweak it per-invocation:
|
|
1846
|
+
|
|
1847
|
+
```bash
|
|
1848
|
+
# Template a reusable base
|
|
1849
|
+
cat > task-template.json <<'EOF'
|
|
1850
|
+
{
|
|
1851
|
+
"spaceId": "space-abc",
|
|
1852
|
+
"priority": "high",
|
|
1853
|
+
"tags": ["release"],
|
|
1854
|
+
"assigneeAgentIds": ["agent-qa"]
|
|
1855
|
+
}
|
|
1856
|
+
EOF
|
|
1857
|
+
|
|
1858
|
+
# Reuse with per-call overrides
|
|
1859
|
+
sky tasks create --from-json task-template.json --title "Ship 1.2.0"
|
|
1860
|
+
sky tasks create --from-json task-template.json --title "Ship 1.3.0"
|
|
1861
|
+
|
|
1862
|
+
# Or stream from another tool
|
|
1863
|
+
sky tasks list --json \
|
|
1864
|
+
| jq '.data[0] | {title: "Clone of \(.title)", spaceId, priority, goalId}' \
|
|
1865
|
+
| sky tasks create --from-json -
|
|
1866
|
+
```
|
|
1867
|
+
|
|
1868
|
+
When a typed flag AND a JSON field collide, the typed flag wins — so you can
|
|
1869
|
+
enforce invariants from the command line while the JSON supplies everything
|
|
1870
|
+
else.
|
|
1871
|
+
|
|
1872
|
+
## Deletion safety
|
|
1873
|
+
|
|
1874
|
+
`spaces delete`, `goals delete`, and `tasks delete` all prompt for
|
|
1875
|
+
confirmation by default. The prompt is suppressed by `--yes` (or `-y`). When
|
|
1876
|
+
stdin is not a TTY — typical for piped input, CI runners, or `nohup` — the
|
|
1877
|
+
delete commands refuse to prompt and exit with code 7 unless `--yes` is
|
|
1878
|
+
passed. This prevents the CLI from hanging forever waiting on input that
|
|
1879
|
+
will never arrive.
|
|
1880
|
+
|
|
1881
|
+
## Config file
|
|
1882
|
+
|
|
1883
|
+
Credentials and host state live at `~/.sky/config.json`. The directory is
|
|
1884
|
+
created with mode `0700` and the file with mode `0600`, so it's readable only
|
|
1885
|
+
by your user account.
|
|
1886
|
+
|
|
1887
|
+
| Field | Description |
|
|
1888
|
+
| -------------- | ------------------------------------------------------------ |
|
|
1889
|
+
| `baseURL` | API host (e.g. `https://oversky.ai`) |
|
|
1890
|
+
| `token` | JWT bearer token from `/api/auth/login` |
|
|
1891
|
+
| `refreshToken` | Refresh token for silent rotation (if the server issued one) |
|
|
1892
|
+
| `userId` | Signed-in user ID |
|
|
1893
|
+
| `email` | Signed-in user email, cached for display |
|
|
1894
|
+
|
|
1895
|
+
Delete the file to fully reset CLI state:
|
|
1896
|
+
|
|
1897
|
+
```bash
|
|
1898
|
+
rm ~/.sky/config.json
|
|
1899
|
+
```
|
|
1900
|
+
|
|
1901
|
+
## Architecture notes
|
|
1902
|
+
|
|
1903
|
+
The CLI is a thin oclif shell over `@skrr-ai/data-provider`. The only bridge
|
|
1904
|
+
code is a Node-native HttpAdapter that satisfies the `HttpAdapter` interface
|
|
1905
|
+
the data-provider exposes for non-browser consumers.
|
|
1906
|
+
|
|
1907
|
+
- **`src/base-command.ts`** — every command extends `BaseCommand`, which in
|
|
1908
|
+
`init()` loads `~/.sky/config.json`, calls `setBaseURL()` and
|
|
1909
|
+
`setHttpAdapter()` on the data-provider, and exposes `requireAuth()` and
|
|
1910
|
+
`handleApiError()` for subclasses.
|
|
1911
|
+
- **`src/lib/node-adapter.ts`** — implements `HttpAdapter` using Node 20's
|
|
1912
|
+
global `fetch`. Injects the bearer token from disk on every request,
|
|
1913
|
+
transparently handles 401 → refresh → retry (mirroring the browser
|
|
1914
|
+
interceptor minus the `window.location` redirect), and surfaces server
|
|
1915
|
+
errors as `Error` instances with `status` and `body` properties.
|
|
1916
|
+
- **`src/lib/config.ts`** — read/write the config file with enforced 0600
|
|
1917
|
+
permissions.
|
|
1918
|
+
- **`src/lib/format.ts`** — `pad` / `truncate` / `renderTable` helpers for
|
|
1919
|
+
the human-friendly output mode.
|
|
1920
|
+
- **`src/commands/**/\*.ts`** — one class per command, auto-discovered by
|
|
1921
|
+
oclif from `dist/commands/`(set via`"oclif.commands"`in`package.json`). The `topicSeparator: " "`option enables space-separated
|
|
1922
|
+
subcommands like`sky convos list`instead of`sky convos:list`.
|
|
1923
|
+
|
|
1924
|
+
### Why not `axios` or `undici`?
|
|
1925
|
+
|
|
1926
|
+
Node 20 ships a spec-compliant global `fetch`, so the adapter has zero runtime
|
|
1927
|
+
HTTP dependencies. The data-provider's default axios transport is still
|
|
1928
|
+
bundled — we just never reach it, because `setHttpAdapter()` in
|
|
1929
|
+
`BaseCommand.init()` replaces it on every command.
|
|
1930
|
+
|
|
1931
|
+
### Why oclif instead of Commander?
|
|
1932
|
+
|
|
1933
|
+
With ~100+ commands realistic, oclif's class-per-file convention, plugin
|
|
1934
|
+
system (useful for splitting admin-only commands into a separate package
|
|
1935
|
+
later), auto-generated help, shell completion, and auto-update outweigh its
|
|
1936
|
+
heavier footprint. Commander would be the right call for a 10–20 command
|
|
1937
|
+
internal tool.
|
|
1938
|
+
|
|
1939
|
+
## Adding a new command
|
|
1940
|
+
|
|
1941
|
+
1. Pick the data-provider function you want to wrap (see
|
|
1942
|
+
`packages/data-provider/src/data-service.ts`).
|
|
1943
|
+
2. Create `src/commands/<topic>/<action>.ts` extending `BaseCommand`.
|
|
1944
|
+
3. Add `static override flags = { ... }` using `@oclif/core`'s `Flags`.
|
|
1945
|
+
4. In `run()`, call `this.requireAuth()` (for authed commands), call the
|
|
1946
|
+
data-provider function inside a try/catch that delegates to
|
|
1947
|
+
`this.handleApiError()`, and emit output via `this.log()` — or
|
|
1948
|
+
`this.log(JSON.stringify(...))` when `--json` is passed.
|
|
1949
|
+
5. Run `npm run build` from `cli/`, then `./bin/run.js <topic> <action>`.
|
|
1950
|
+
|
|
1951
|
+
See `src/commands/whoami.ts` for the simplest possible template and
|
|
1952
|
+
`src/commands/convos/list.ts` for a paginated table renderer.
|