@kynetic-ai/spec 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +55 -455
- package/dist/agent-runtime/bootstrap.d.ts +31 -0
- package/dist/agent-runtime/bootstrap.d.ts.map +1 -0
- package/dist/agent-runtime/bootstrap.js +302 -0
- package/dist/agent-runtime/bootstrap.js.map +1 -0
- package/dist/agent-runtime/dispatch.d.ts +119 -10
- package/dist/agent-runtime/dispatch.d.ts.map +1 -1
- package/dist/agent-runtime/dispatch.js +1154 -219
- package/dist/agent-runtime/dispatch.js.map +1 -1
- package/dist/agent-runtime/invocation.d.ts +28 -1
- package/dist/agent-runtime/invocation.d.ts.map +1 -1
- package/dist/agent-runtime/invocation.js +171 -59
- package/dist/agent-runtime/invocation.js.map +1 -1
- package/dist/agent-runtime/prompts.d.ts +9 -0
- package/dist/agent-runtime/prompts.d.ts.map +1 -1
- package/dist/agent-runtime/prompts.js +42 -7
- package/dist/agent-runtime/prompts.js.map +1 -1
- package/dist/agent-runtime/session-event-accumulator.d.ts +83 -0
- package/dist/agent-runtime/session-event-accumulator.d.ts.map +1 -0
- package/dist/agent-runtime/session-event-accumulator.js +203 -0
- package/dist/agent-runtime/session-event-accumulator.js.map +1 -0
- package/dist/agent-runtime/session-event-types.d.ts +67 -0
- package/dist/agent-runtime/session-event-types.d.ts.map +1 -0
- package/dist/agent-runtime/session-event-types.js +13 -0
- package/dist/agent-runtime/session-event-types.js.map +1 -0
- package/dist/agent-runtime/workspace.d.ts +244 -0
- package/dist/agent-runtime/workspace.d.ts.map +1 -0
- package/dist/agent-runtime/workspace.js +2025 -0
- package/dist/agent-runtime/workspace.js.map +1 -0
- package/dist/agents/adapters.d.ts.map +1 -1
- package/dist/agents/adapters.js +58 -13
- package/dist/agents/adapters.js.map +1 -1
- package/dist/agents/spawner.d.ts +8 -0
- package/dist/agents/spawner.d.ts.map +1 -1
- package/dist/agents/spawner.js +25 -3
- package/dist/agents/spawner.js.map +1 -1
- package/dist/cli/batch-exec.js +1 -1
- package/dist/cli/batch-exec.js.map +1 -1
- package/dist/cli/command-annotations.d.ts +15 -3
- package/dist/cli/command-annotations.d.ts.map +1 -1
- package/dist/cli/command-annotations.js +23 -3
- package/dist/cli/command-annotations.js.map +1 -1
- package/dist/cli/commands/agent.d.ts +2 -0
- package/dist/cli/commands/agent.d.ts.map +1 -1
- package/dist/cli/commands/agent.js +144 -27
- package/dist/cli/commands/agent.js.map +1 -1
- package/dist/cli/commands/agents.d.ts.map +1 -1
- package/dist/cli/commands/agents.js +5 -5
- package/dist/cli/commands/agents.js.map +1 -1
- package/dist/cli/commands/derive.d.ts.map +1 -1
- package/dist/cli/commands/derive.js +118 -3
- package/dist/cli/commands/derive.js.map +1 -1
- package/dist/cli/commands/guard.d.ts.map +1 -1
- package/dist/cli/commands/guard.js +8 -6
- package/dist/cli/commands/guard.js.map +1 -1
- package/dist/cli/commands/index.d.ts +1 -0
- package/dist/cli/commands/index.d.ts.map +1 -1
- package/dist/cli/commands/index.js +1 -0
- package/dist/cli/commands/index.js.map +1 -1
- package/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +20 -0
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/item.d.ts.map +1 -1
- package/dist/cli/commands/item.js +205 -47
- package/dist/cli/commands/item.js.map +1 -1
- package/dist/cli/commands/log.d.ts.map +1 -1
- package/dist/cli/commands/log.js +24 -10
- package/dist/cli/commands/log.js.map +1 -1
- package/dist/cli/commands/plan-import.d.ts +3 -3
- package/dist/cli/commands/plan-import.d.ts.map +1 -1
- package/dist/cli/commands/plan-import.js +213 -528
- package/dist/cli/commands/plan-import.js.map +1 -1
- package/dist/cli/commands/plan.d.ts.map +1 -1
- package/dist/cli/commands/plan.js +533 -83
- package/dist/cli/commands/plan.js.map +1 -1
- package/dist/cli/commands/review.d.ts +14 -0
- package/dist/cli/commands/review.d.ts.map +1 -0
- package/dist/cli/commands/review.js +1142 -0
- package/dist/cli/commands/review.js.map +1 -0
- package/dist/cli/commands/serve.d.ts +1 -0
- package/dist/cli/commands/serve.d.ts.map +1 -1
- package/dist/cli/commands/serve.js +33 -10
- package/dist/cli/commands/serve.js.map +1 -1
- package/dist/cli/commands/session/checkpoint.d.ts +2 -4
- package/dist/cli/commands/session/checkpoint.d.ts.map +1 -1
- package/dist/cli/commands/session/checkpoint.js +6 -107
- package/dist/cli/commands/session/checkpoint.js.map +1 -1
- package/dist/cli/commands/session/commands.d.ts.map +1 -1
- package/dist/cli/commands/session/commands.js +33 -23
- package/dist/cli/commands/session/commands.js.map +1 -1
- package/dist/cli/commands/session/compact.js +4 -4
- package/dist/cli/commands/session/compact.js.map +1 -1
- package/dist/cli/commands/session/create.js +2 -2
- package/dist/cli/commands/session/create.js.map +1 -1
- package/dist/cli/commands/session/format.d.ts.map +1 -1
- package/dist/cli/commands/session/format.js +1 -6
- package/dist/cli/commands/session/format.js.map +1 -1
- package/dist/cli/commands/session/log.d.ts +32 -7
- package/dist/cli/commands/session/log.d.ts.map +1 -1
- package/dist/cli/commands/session/log.js +166 -60
- package/dist/cli/commands/session/log.js.map +1 -1
- package/dist/cli/commands/session/migrate.d.ts +9 -0
- package/dist/cli/commands/session/migrate.d.ts.map +1 -0
- package/dist/cli/commands/session/migrate.js +46 -0
- package/dist/cli/commands/session/migrate.js.map +1 -0
- package/dist/cli/commands/session/stale-close.d.ts.map +1 -1
- package/dist/cli/commands/session/stale-close.js +5 -8
- package/dist/cli/commands/session/stale-close.js.map +1 -1
- package/dist/cli/commands/session/types.d.ts +1 -1
- package/dist/cli/commands/session/types.d.ts.map +1 -1
- package/dist/cli/commands/setup.d.ts +2 -2
- package/dist/cli/commands/setup.d.ts.map +1 -1
- package/dist/cli/commands/setup.js +287 -257
- package/dist/cli/commands/setup.js.map +1 -1
- package/dist/cli/commands/shadow.d.ts.map +1 -1
- package/dist/cli/commands/shadow.js +147 -31
- package/dist/cli/commands/shadow.js.map +1 -1
- package/dist/cli/commands/skill-crud.d.ts +7 -0
- package/dist/cli/commands/skill-crud.d.ts.map +1 -1
- package/dist/cli/commands/skill-crud.js +41 -18
- package/dist/cli/commands/skill-crud.js.map +1 -1
- package/dist/cli/commands/skill-diff.d.ts.map +1 -1
- package/dist/cli/commands/skill-diff.js +29 -3
- package/dist/cli/commands/skill-diff.js.map +1 -1
- package/dist/cli/commands/skill-install.d.ts.map +1 -1
- package/dist/cli/commands/skill-install.js +5 -4
- package/dist/cli/commands/skill-install.js.map +1 -1
- package/dist/cli/commands/task.d.ts.map +1 -1
- package/dist/cli/commands/task.js +359 -49
- package/dist/cli/commands/task.js.map +1 -1
- package/dist/cli/commands/trait.d.ts.map +1 -1
- package/dist/cli/commands/trait.js +5 -27
- package/dist/cli/commands/trait.js.map +1 -1
- package/dist/cli/commands/validate.d.ts.map +1 -1
- package/dist/cli/commands/validate.js +113 -52
- package/dist/cli/commands/validate.js.map +1 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +69 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/output.d.ts +26 -0
- package/dist/cli/output.d.ts.map +1 -1
- package/dist/cli/output.js +108 -1
- package/dist/cli/output.js.map +1 -1
- package/dist/cli/sync-mode.d.ts +44 -0
- package/dist/cli/sync-mode.d.ts.map +1 -0
- package/dist/cli/sync-mode.js +64 -0
- package/dist/cli/sync-mode.js.map +1 -0
- package/dist/daemon/middleware/project-context.ts +25 -7
- package/dist/daemon/project-context.ts +18 -0
- package/dist/daemon/routes/agent-dispatch.ts +99 -22
- package/dist/daemon/routes/aggregation.ts +184 -0
- package/dist/daemon/routes/inbox.ts +5 -0
- package/dist/daemon/routes/items.ts +145 -0
- package/dist/daemon/routes/meta.ts +1 -1
- package/dist/daemon/routes/projects.ts +28 -6
- package/dist/daemon/routes/ref-resolution.ts +119 -0
- package/dist/daemon/routes/refs.ts +42 -0
- package/dist/daemon/routes/session-related.ts +140 -0
- package/dist/daemon/routes/sessions.ts +420 -19
- package/dist/daemon/routes/tasks.ts +62 -5
- package/dist/daemon/routes/triage.ts +40 -1
- package/dist/daemon/server.ts +143 -49
- package/dist/daemon/session-sync.ts +11 -0
- package/dist/daemon/shadow-sync.ts +11 -0
- package/dist/daemon/watcher.ts +56 -5
- package/dist/daemon/websocket/project-resolution.ts +77 -0
- package/dist/export/json.d.ts.map +1 -1
- package/dist/export/json.js +104 -1
- package/dist/export/json.js.map +1 -1
- package/dist/export/types.d.ts +52 -1
- package/dist/export/types.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/parser/agent-detection.d.ts +1 -1
- package/dist/parser/agent-detection.d.ts.map +1 -1
- package/dist/parser/agent-detection.js +10 -0
- package/dist/parser/agent-detection.js.map +1 -1
- package/dist/parser/config.d.ts +397 -2
- package/dist/parser/config.d.ts.map +1 -1
- package/dist/parser/config.js +125 -3
- package/dist/parser/config.js.map +1 -1
- package/dist/parser/dispatch-workspaces.d.ts +18 -0
- package/dist/parser/dispatch-workspaces.d.ts.map +1 -0
- package/dist/parser/dispatch-workspaces.js +209 -0
- package/dist/parser/dispatch-workspaces.js.map +1 -0
- package/dist/parser/doctor.d.ts.map +1 -1
- package/dist/parser/doctor.js +27 -8
- package/dist/parser/doctor.js.map +1 -1
- package/dist/parser/file-lock.d.ts.map +1 -1
- package/dist/parser/file-lock.js +9 -2
- package/dist/parser/file-lock.js.map +1 -1
- package/dist/parser/index.d.ts +6 -0
- package/dist/parser/index.d.ts.map +1 -1
- package/dist/parser/index.js +6 -0
- package/dist/parser/index.js.map +1 -1
- package/dist/parser/plans.d.ts.map +1 -1
- package/dist/parser/plans.js +1 -0
- package/dist/parser/plans.js.map +1 -1
- package/dist/parser/refs.d.ts +8 -1
- package/dist/parser/refs.d.ts.map +1 -1
- package/dist/parser/refs.js +27 -1
- package/dist/parser/refs.js.map +1 -1
- package/dist/parser/review-operations.d.ts +72 -0
- package/dist/parser/review-operations.d.ts.map +1 -0
- package/dist/parser/review-operations.js +185 -0
- package/dist/parser/review-operations.js.map +1 -0
- package/dist/parser/review-task-integration.d.ts +78 -0
- package/dist/parser/review-task-integration.d.ts.map +1 -0
- package/dist/parser/review-task-integration.js +173 -0
- package/dist/parser/review-task-integration.js.map +1 -0
- package/dist/parser/review-threads.d.ts +101 -0
- package/dist/parser/review-threads.d.ts.map +1 -0
- package/dist/parser/review-threads.js +222 -0
- package/dist/parser/review-threads.js.map +1 -0
- package/dist/parser/review-validation.d.ts +69 -0
- package/dist/parser/review-validation.d.ts.map +1 -0
- package/dist/parser/review-validation.js +207 -0
- package/dist/parser/review-validation.js.map +1 -0
- package/dist/parser/reviews.d.ts +58 -0
- package/dist/parser/reviews.d.ts.map +1 -0
- package/dist/parser/reviews.js +230 -0
- package/dist/parser/reviews.js.map +1 -0
- package/dist/parser/session-branch.d.ts +91 -0
- package/dist/parser/session-branch.d.ts.map +1 -0
- package/dist/parser/session-branch.js +565 -0
- package/dist/parser/session-branch.js.map +1 -0
- package/dist/parser/session-sync-scheduler.d.ts +53 -0
- package/dist/parser/session-sync-scheduler.d.ts.map +1 -0
- package/dist/parser/session-sync-scheduler.js +100 -0
- package/dist/parser/session-sync-scheduler.js.map +1 -0
- package/dist/parser/setup-status.d.ts +7 -1
- package/dist/parser/setup-status.d.ts.map +1 -1
- package/dist/parser/setup-status.js +104 -39
- package/dist/parser/setup-status.js.map +1 -1
- package/dist/parser/shadow-sync-scheduler.d.ts +71 -0
- package/dist/parser/shadow-sync-scheduler.d.ts.map +1 -0
- package/dist/parser/shadow-sync-scheduler.js +139 -0
- package/dist/parser/shadow-sync-scheduler.js.map +1 -0
- package/dist/parser/shadow.d.ts +121 -14
- package/dist/parser/shadow.d.ts.map +1 -1
- package/dist/parser/shadow.js +752 -27
- package/dist/parser/shadow.js.map +1 -1
- package/dist/parser/skill-render.d.ts +24 -0
- package/dist/parser/skill-render.d.ts.map +1 -1
- package/dist/parser/skill-render.js +98 -26
- package/dist/parser/skill-render.js.map +1 -1
- package/dist/parser/validate.d.ts +43 -3
- package/dist/parser/validate.d.ts.map +1 -1
- package/dist/parser/validate.js +204 -30
- package/dist/parser/validate.js.map +1 -1
- package/dist/parser/yaml.d.ts +47 -11
- package/dist/parser/yaml.d.ts.map +1 -1
- package/dist/parser/yaml.js +329 -149
- package/dist/parser/yaml.js.map +1 -1
- package/dist/review/checks.d.ts +97 -0
- package/dist/review/checks.d.ts.map +1 -0
- package/dist/review/checks.js +175 -0
- package/dist/review/checks.js.map +1 -0
- package/dist/review/index.d.ts +3 -0
- package/dist/review/index.d.ts.map +1 -0
- package/dist/review/index.js +3 -0
- package/dist/review/index.js.map +1 -0
- package/dist/review/subject-bindings.d.ts +83 -0
- package/dist/review/subject-bindings.d.ts.map +1 -0
- package/dist/review/subject-bindings.js +175 -0
- package/dist/review/subject-bindings.js.map +1 -0
- package/dist/schema/common.d.ts +26 -0
- package/dist/schema/common.d.ts.map +1 -1
- package/dist/schema/common.js +13 -0
- package/dist/schema/common.js.map +1 -1
- package/dist/schema/dispatch-workspace.d.ts +2643 -0
- package/dist/schema/dispatch-workspace.d.ts.map +1 -0
- package/dist/schema/dispatch-workspace.js +187 -0
- package/dist/schema/dispatch-workspace.js.map +1 -0
- package/dist/schema/inbox.d.ts +8 -8
- package/dist/schema/index.d.ts +2 -0
- package/dist/schema/index.d.ts.map +1 -1
- package/dist/schema/index.js +2 -0
- package/dist/schema/index.js.map +1 -1
- package/dist/schema/meta.d.ts +648 -116
- package/dist/schema/meta.d.ts.map +1 -1
- package/dist/schema/meta.js +27 -0
- package/dist/schema/meta.js.map +1 -1
- package/dist/schema/plan.d.ts +30 -19
- package/dist/schema/plan.d.ts.map +1 -1
- package/dist/schema/plan.js +3 -1
- package/dist/schema/plan.js.map +1 -1
- package/dist/schema/review-records.d.ts +2676 -0
- package/dist/schema/review-records.d.ts.map +1 -0
- package/dist/schema/review-records.js +232 -0
- package/dist/schema/review-records.js.map +1 -0
- package/dist/schema/spec.d.ts +32 -14
- package/dist/schema/spec.d.ts.map +1 -1
- package/dist/schema/spec.js +5 -0
- package/dist/schema/spec.js.map +1 -1
- package/dist/schema/task.d.ts +187 -29
- package/dist/schema/task.d.ts.map +1 -1
- package/dist/schema/task.js +12 -2
- package/dist/schema/task.js.map +1 -1
- package/dist/schema/triage.d.ts +22 -22
- package/dist/sessions/cache.d.ts +119 -0
- package/dist/sessions/cache.d.ts.map +1 -0
- package/dist/sessions/cache.js +284 -0
- package/dist/sessions/cache.js.map +1 -0
- package/dist/sessions/index.d.ts +1 -0
- package/dist/sessions/index.d.ts.map +1 -1
- package/dist/sessions/index.js +2 -0
- package/dist/sessions/index.js.map +1 -1
- package/dist/sessions/legacy.d.ts +77 -0
- package/dist/sessions/legacy.d.ts.map +1 -0
- package/dist/sessions/legacy.js +146 -0
- package/dist/sessions/legacy.js.map +1 -0
- package/dist/sessions/store.d.ts +103 -73
- package/dist/sessions/store.d.ts.map +1 -1
- package/dist/sessions/store.js +335 -186
- package/dist/sessions/store.js.map +1 -1
- package/dist/sessions/types.d.ts +44 -16
- package/dist/sessions/types.d.ts.map +1 -1
- package/dist/sessions/types.js +11 -2
- package/dist/sessions/types.js.map +1 -1
- package/dist/strings/errors.d.ts +32 -0
- package/dist/strings/errors.d.ts.map +1 -1
- package/dist/strings/errors.js +17 -0
- package/dist/strings/errors.js.map +1 -1
- package/dist/strings/labels.d.ts +1 -0
- package/dist/strings/labels.d.ts.map +1 -1
- package/dist/strings/labels.js +1 -0
- package/dist/strings/labels.js.map +1 -1
- package/dist/utils/activity.d.ts +101 -0
- package/dist/utils/activity.d.ts.map +1 -0
- package/dist/utils/activity.js +408 -0
- package/dist/utils/activity.js.map +1 -0
- package/dist/utils/git.d.ts +31 -0
- package/dist/utils/git.d.ts.map +1 -1
- package/dist/utils/git.js +87 -0
- package/dist/utils/git.js.map +1 -1
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +1 -0
- package/dist/utils/index.js.map +1 -1
- package/dist/web-ui/_app/immutable/assets/0.tmlwn-Ih.css +1 -0
- package/dist/web-ui/_app/immutable/assets/9.BwwJybWx.css +1 -0
- package/dist/web-ui/_app/immutable/chunks/2KqE8gtn.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/70-t_QvE.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/AiWQj974.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{CPPfDSei.js → B25nWFyA.js} +4 -4
- package/dist/web-ui/_app/immutable/chunks/{DBYE9jOd.js → B2bcA_Q_.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/B5e5HYyB.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/B7-5z6eA.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/B7bGmhK0.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{DzO4hlg9.js → B8tYZKAE.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/{B5LJFxqa.js → BFGAyJjD.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/BG0850zf.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{DAMmvwn4.js → BG8eSzAd.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/BIMxXS8I.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/BSzL1fpU.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/BYtjHfeq.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{DxCk-KHc.js → Bp5pFYXL.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/{B8a0xDxR.js → BsJFsuAT.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/BvpNHcD6.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/BypqA25-.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{BVA9Exy-.js → C0w6WDm5.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/C5_PAZ0y.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/CDRO15Iv.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/CF1CoqD5.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/CS2sa4_m.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{BJ0JX3ea.js → CWUQwB9H.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/CY5FDdSU.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/C_7MTDoj.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{D3vxvonu.js → CaAJD3dl.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/{BP352uRn.js → ChB5iyEL.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/{pE6cYWlS.js → ChQD-6N8.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/{Eo4gF7ih.js → CqbsoCwA.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/DCeJW50p.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{Cncwi6fQ.js → DJtZNgcs.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/DKIeaprD.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/DLd2uVIA.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{DjcCz-PU.js → DW_subyT.js} +2 -2
- package/dist/web-ui/_app/immutable/chunks/DbU6lVn0.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/Dc7ZCC5m.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/Dd5umPsk.js +2 -0
- package/dist/web-ui/_app/immutable/chunks/{BysXJlZb.js → Dg_zDpDS.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/Dgqu8Yuc.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/DmxsPZTB.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/DphTaFUB.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/DqK4iHp0.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{D9QNBZM2.js → DqT6OH_u.js} +2 -2
- package/dist/web-ui/_app/immutable/chunks/Ds9I9wQb.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/Du5ng3u4.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/DxJw79Wi.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/GFTX8GgV.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{C076q4JN.js → HNjs76Zz.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/HVMjDi4_.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{BkOJ8DkV.js → P0A_fJvS.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/T3vGWjIL.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/VTmrX9Qu.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{k_Qegko0.js → Xvwhx_F1.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/Yyz1XMQA.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{62JVKtnb.js → dh5HeqUr.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/fZMteyca.js +62 -0
- package/dist/web-ui/_app/immutable/chunks/{D82RulSH.js → gPrj-hqC.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/htcWMiYN.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{CwELQvbx.js → oTsvd9y4.js} +1 -1
- package/dist/web-ui/_app/immutable/chunks/qJfLUwU4.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/xCtiO_JE.js +1 -0
- package/dist/web-ui/_app/immutable/chunks/{DvA-KON-.js → y4GeEH6k.js} +1 -1
- package/dist/web-ui/_app/immutable/entry/app.C4h_eOn6.js +2 -0
- package/dist/web-ui/_app/immutable/entry/start.CQFTf9ep.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/0.Dh1xO970.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/1.l75D3Opx.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/10.DBidBPc-.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/11.Ab0gUKWe.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/12.CMsnoxfs.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/13.D8YKuknB.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/14.DZ0aan7y.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/15.CUIKreDL.js +2 -0
- package/dist/web-ui/_app/immutable/nodes/16.BWc8--BO.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/2.CDUonbuh.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/3.Ctg3M00i.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/4.Ci-JDwbA.js +2 -0
- package/dist/web-ui/_app/immutable/nodes/5.CTyEDAq0.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/6.BTZZqsAb.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/7.BI52g_Jo.js +137 -0
- package/dist/web-ui/_app/immutable/nodes/8.3hZPaB9x.js +1 -0
- package/dist/web-ui/_app/immutable/nodes/9.DS49kvwl.js +29 -0
- package/dist/web-ui/_app/version.json +1 -1
- package/dist/web-ui/favicon-192.png +0 -0
- package/dist/web-ui/favicon-32.png +0 -0
- package/dist/web-ui/favicon.ico +0 -0
- package/dist/web-ui/index.html +14 -14
- package/package.json +12 -6
- package/plugin/.claude-plugin/marketplace.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/plugins/kspec/skills/merge/SKILL.md +127 -0
- package/plugin/plugins/kspec/skills/plan/SKILL.md +55 -26
- package/plugin/plugins/kspec/skills/review/SKILL.md +350 -133
- package/plugin/plugins/kspec/skills/task-work/SKILL.md +96 -106
- package/templates/agents-sections/04-pr-workflow.md +15 -12
- package/templates/agents-sections/06-ralph-loop.md +15 -10
- package/templates/skills/manifest.yaml +25 -7
- package/templates/skills/merge/SKILL.md +120 -0
- package/templates/skills/plan/SKILL.md +55 -26
- package/templates/skills/review/SKILL.md +346 -130
- package/templates/skills/task-work/SKILL.md +93 -103
- package/dist/web-ui/_app/immutable/assets/0.BJaYkGW2.css +0 -1
- package/dist/web-ui/_app/immutable/assets/9.SzGLxi4x.css +0 -1
- package/dist/web-ui/_app/immutable/chunks/-lc0BifF.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/8RBjHMN1.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/B5wTVqxm.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/B6VSmczZ.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BEOQc37C.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BHtYorjv.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BMuCqDX8.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BUZujXJ2.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BWET-efb.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BXkNecpt.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BYzrIfX8.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BpuwufMc.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/BwMO4RrG.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/C33JaVbg.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/CGtqifKp.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/CHDZZ7OG.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/CUir3f4J.js +0 -60
- package/dist/web-ui/_app/immutable/chunks/CrCIbn0C.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/D6TVmR9T.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/D7LTux4W.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/DAh4Wfku.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/DAx07bEQ.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/DOno4cA2.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/DQA8NZIH.js +0 -2
- package/dist/web-ui/_app/immutable/chunks/DRfPm2bo.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/DhQhksaB.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/DjG7s6hm.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/DkltRNvh.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/DlaTnPKL.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/ExCq5swK.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/T3zZGv51.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/XZumBYeP.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/_ySfNjkF.js +0 -1
- package/dist/web-ui/_app/immutable/chunks/iEtR5cV6.js +0 -1
- package/dist/web-ui/_app/immutable/entry/app.Cgu6uKeS.js +0 -2
- package/dist/web-ui/_app/immutable/entry/start.9XifnLoB.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/0.DISwcKSK.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/1.Cx2Ufqp1.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/10.C3z8ijXL.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/11.DZdIjZmM.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/12.FsIGfAOa.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/13.DZoFwagf.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/14.DaIzDKbQ.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/15.BYyt4XWF.js +0 -2
- package/dist/web-ui/_app/immutable/nodes/16.CQkSqpOe.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/2.Bkf_j2UJ.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/3.kaMCurJG.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/4.BSsFPTHG.js +0 -2
- package/dist/web-ui/_app/immutable/nodes/5.CpPlcCEZ.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/6.BN4FqQmY.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/7.9kBYIZik.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/8.BuijtZ6B.js +0 -1
- package/dist/web-ui/_app/immutable/nodes/9.C-Weba8R.js +0 -1
package/dist/schema/meta.d.ts
CHANGED
|
@@ -79,14 +79,17 @@ export declare const AgentBudgetSchema: z.ZodObject<{
|
|
|
79
79
|
max_tasks: z.ZodOptional<z.ZodNumber>;
|
|
80
80
|
max_retries: z.ZodOptional<z.ZodNumber>;
|
|
81
81
|
timeout_minutes: z.ZodOptional<z.ZodNumber>;
|
|
82
|
+
initial_response_timeout_seconds: z.ZodOptional<z.ZodNumber>;
|
|
82
83
|
}, "strip", z.ZodTypeAny, {
|
|
83
84
|
max_tasks?: number | undefined;
|
|
84
85
|
max_retries?: number | undefined;
|
|
85
86
|
timeout_minutes?: number | undefined;
|
|
87
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
86
88
|
}, {
|
|
87
89
|
max_tasks?: number | undefined;
|
|
88
90
|
max_retries?: number | undefined;
|
|
89
91
|
timeout_minutes?: number | undefined;
|
|
92
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
90
93
|
}>;
|
|
91
94
|
/**
|
|
92
95
|
* Agent concurrency settings
|
|
@@ -99,6 +102,70 @@ export declare const AgentConcurrencySchema: z.ZodObject<{
|
|
|
99
102
|
}, {
|
|
100
103
|
max_concurrent?: number | undefined;
|
|
101
104
|
}>;
|
|
105
|
+
export declare const AgentBootstrapStepSchema: z.ZodObject<{
|
|
106
|
+
run: z.ZodString;
|
|
107
|
+
name: z.ZodOptional<z.ZodString>;
|
|
108
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["worker", "reviewer"]>, "many">>;
|
|
109
|
+
idempotent: z.ZodOptional<z.ZodBoolean>;
|
|
110
|
+
allow_tracked_changes: z.ZodOptional<z.ZodBoolean>;
|
|
111
|
+
reviewer_rerun_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
112
|
+
}, "strip", z.ZodTypeAny, {
|
|
113
|
+
run: string;
|
|
114
|
+
name?: string | undefined;
|
|
115
|
+
idempotent?: boolean | undefined;
|
|
116
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
117
|
+
allow_tracked_changes?: boolean | undefined;
|
|
118
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
119
|
+
}, {
|
|
120
|
+
run: string;
|
|
121
|
+
name?: string | undefined;
|
|
122
|
+
idempotent?: boolean | undefined;
|
|
123
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
124
|
+
allow_tracked_changes?: boolean | undefined;
|
|
125
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
126
|
+
}>;
|
|
127
|
+
export declare const AgentBootstrapSchema: z.ZodObject<{
|
|
128
|
+
steps: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
129
|
+
run: z.ZodString;
|
|
130
|
+
name: z.ZodOptional<z.ZodString>;
|
|
131
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["worker", "reviewer"]>, "many">>;
|
|
132
|
+
idempotent: z.ZodOptional<z.ZodBoolean>;
|
|
133
|
+
allow_tracked_changes: z.ZodOptional<z.ZodBoolean>;
|
|
134
|
+
reviewer_rerun_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
135
|
+
}, "strip", z.ZodTypeAny, {
|
|
136
|
+
run: string;
|
|
137
|
+
name?: string | undefined;
|
|
138
|
+
idempotent?: boolean | undefined;
|
|
139
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
140
|
+
allow_tracked_changes?: boolean | undefined;
|
|
141
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
142
|
+
}, {
|
|
143
|
+
run: string;
|
|
144
|
+
name?: string | undefined;
|
|
145
|
+
idempotent?: boolean | undefined;
|
|
146
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
147
|
+
allow_tracked_changes?: boolean | undefined;
|
|
148
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
149
|
+
}>, "many">>;
|
|
150
|
+
}, "strip", z.ZodTypeAny, {
|
|
151
|
+
steps: {
|
|
152
|
+
run: string;
|
|
153
|
+
name?: string | undefined;
|
|
154
|
+
idempotent?: boolean | undefined;
|
|
155
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
156
|
+
allow_tracked_changes?: boolean | undefined;
|
|
157
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
158
|
+
}[];
|
|
159
|
+
}, {
|
|
160
|
+
steps?: {
|
|
161
|
+
run: string;
|
|
162
|
+
name?: string | undefined;
|
|
163
|
+
idempotent?: boolean | undefined;
|
|
164
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
165
|
+
allow_tracked_changes?: boolean | undefined;
|
|
166
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
167
|
+
}[] | undefined;
|
|
168
|
+
}>;
|
|
102
169
|
/**
|
|
103
170
|
* Agent definition - describes an agent's role and capabilities
|
|
104
171
|
* AC: @agent-definition-schema ac-1 through ac-8
|
|
@@ -160,14 +227,17 @@ export declare const AgentSchema: z.ZodObject<{
|
|
|
160
227
|
max_tasks: z.ZodOptional<z.ZodNumber>;
|
|
161
228
|
max_retries: z.ZodOptional<z.ZodNumber>;
|
|
162
229
|
timeout_minutes: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
initial_response_timeout_seconds: z.ZodOptional<z.ZodNumber>;
|
|
163
231
|
}, "strip", z.ZodTypeAny, {
|
|
164
232
|
max_tasks?: number | undefined;
|
|
165
233
|
max_retries?: number | undefined;
|
|
166
234
|
timeout_minutes?: number | undefined;
|
|
235
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
167
236
|
}, {
|
|
168
237
|
max_tasks?: number | undefined;
|
|
169
238
|
max_retries?: number | undefined;
|
|
170
239
|
timeout_minutes?: number | undefined;
|
|
240
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
171
241
|
}>>;
|
|
172
242
|
concurrency: z.ZodDefault<z.ZodObject<{
|
|
173
243
|
max_concurrent: z.ZodDefault<z.ZodNumber>;
|
|
@@ -176,6 +246,48 @@ export declare const AgentSchema: z.ZodObject<{
|
|
|
176
246
|
}, {
|
|
177
247
|
max_concurrent?: number | undefined;
|
|
178
248
|
}>>;
|
|
249
|
+
bootstrap: z.ZodOptional<z.ZodObject<{
|
|
250
|
+
steps: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
251
|
+
run: z.ZodString;
|
|
252
|
+
name: z.ZodOptional<z.ZodString>;
|
|
253
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["worker", "reviewer"]>, "many">>;
|
|
254
|
+
idempotent: z.ZodOptional<z.ZodBoolean>;
|
|
255
|
+
allow_tracked_changes: z.ZodOptional<z.ZodBoolean>;
|
|
256
|
+
reviewer_rerun_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
257
|
+
}, "strip", z.ZodTypeAny, {
|
|
258
|
+
run: string;
|
|
259
|
+
name?: string | undefined;
|
|
260
|
+
idempotent?: boolean | undefined;
|
|
261
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
262
|
+
allow_tracked_changes?: boolean | undefined;
|
|
263
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
264
|
+
}, {
|
|
265
|
+
run: string;
|
|
266
|
+
name?: string | undefined;
|
|
267
|
+
idempotent?: boolean | undefined;
|
|
268
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
269
|
+
allow_tracked_changes?: boolean | undefined;
|
|
270
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
271
|
+
}>, "many">>;
|
|
272
|
+
}, "strip", z.ZodTypeAny, {
|
|
273
|
+
steps: {
|
|
274
|
+
run: string;
|
|
275
|
+
name?: string | undefined;
|
|
276
|
+
idempotent?: boolean | undefined;
|
|
277
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
278
|
+
allow_tracked_changes?: boolean | undefined;
|
|
279
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
280
|
+
}[];
|
|
281
|
+
}, {
|
|
282
|
+
steps?: {
|
|
283
|
+
run: string;
|
|
284
|
+
name?: string | undefined;
|
|
285
|
+
idempotent?: boolean | undefined;
|
|
286
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
287
|
+
allow_tracked_changes?: boolean | undefined;
|
|
288
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
289
|
+
}[] | undefined;
|
|
290
|
+
}>>;
|
|
179
291
|
auto_approve: z.ZodDefault<z.ZodBoolean>;
|
|
180
292
|
prompt_template: z.ZodOptional<z.ZodString>;
|
|
181
293
|
/** Automation eligibility for agent list filtering (eligible|ineligible) */
|
|
@@ -184,11 +296,6 @@ export declare const AgentSchema: z.ZodObject<{
|
|
|
184
296
|
tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
185
297
|
}, "strip", z.ZodTypeAny, {
|
|
186
298
|
name: string;
|
|
187
|
-
_ulid: string;
|
|
188
|
-
id: string;
|
|
189
|
-
capabilities: string[];
|
|
190
|
-
tools: string[];
|
|
191
|
-
conventions: string[];
|
|
192
299
|
dispatch: {
|
|
193
300
|
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
194
301
|
filter?: {
|
|
@@ -197,11 +304,26 @@ export declare const AgentSchema: z.ZodObject<{
|
|
|
197
304
|
priority?: number | undefined;
|
|
198
305
|
} | undefined;
|
|
199
306
|
}[];
|
|
307
|
+
_ulid: string;
|
|
308
|
+
id: string;
|
|
309
|
+
capabilities: string[];
|
|
310
|
+
tools: string[];
|
|
311
|
+
conventions: string[];
|
|
200
312
|
skills: string[];
|
|
201
313
|
concurrency: {
|
|
202
314
|
max_concurrent: number;
|
|
203
315
|
};
|
|
204
316
|
auto_approve: boolean;
|
|
317
|
+
bootstrap?: {
|
|
318
|
+
steps: {
|
|
319
|
+
run: string;
|
|
320
|
+
name?: string | undefined;
|
|
321
|
+
idempotent?: boolean | undefined;
|
|
322
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
323
|
+
allow_tracked_changes?: boolean | undefined;
|
|
324
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
325
|
+
}[];
|
|
326
|
+
} | undefined;
|
|
205
327
|
tags?: string[] | undefined;
|
|
206
328
|
automation?: "eligible" | "ineligible" | undefined;
|
|
207
329
|
description?: string | undefined;
|
|
@@ -215,12 +337,31 @@ export declare const AgentSchema: z.ZodObject<{
|
|
|
215
337
|
max_tasks?: number | undefined;
|
|
216
338
|
max_retries?: number | undefined;
|
|
217
339
|
timeout_minutes?: number | undefined;
|
|
340
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
218
341
|
} | undefined;
|
|
219
342
|
prompt_template?: string | undefined;
|
|
220
343
|
}, {
|
|
221
344
|
name: string;
|
|
222
345
|
_ulid: string;
|
|
223
346
|
id: string;
|
|
347
|
+
dispatch?: {
|
|
348
|
+
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
349
|
+
filter?: {
|
|
350
|
+
tags?: string[] | undefined;
|
|
351
|
+
automation?: "eligible" | "ineligible" | undefined;
|
|
352
|
+
priority?: number | undefined;
|
|
353
|
+
} | undefined;
|
|
354
|
+
}[] | undefined;
|
|
355
|
+
bootstrap?: {
|
|
356
|
+
steps?: {
|
|
357
|
+
run: string;
|
|
358
|
+
name?: string | undefined;
|
|
359
|
+
idempotent?: boolean | undefined;
|
|
360
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
361
|
+
allow_tracked_changes?: boolean | undefined;
|
|
362
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
363
|
+
}[] | undefined;
|
|
364
|
+
} | undefined;
|
|
224
365
|
tags?: string[] | undefined;
|
|
225
366
|
automation?: "eligible" | "ineligible" | undefined;
|
|
226
367
|
description?: string | undefined;
|
|
@@ -233,19 +374,12 @@ export declare const AgentSchema: z.ZodObject<{
|
|
|
233
374
|
} | undefined;
|
|
234
375
|
conventions?: string[] | undefined;
|
|
235
376
|
adapter?: string | undefined;
|
|
236
|
-
dispatch?: {
|
|
237
|
-
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
238
|
-
filter?: {
|
|
239
|
-
tags?: string[] | undefined;
|
|
240
|
-
automation?: "eligible" | "ineligible" | undefined;
|
|
241
|
-
priority?: number | undefined;
|
|
242
|
-
} | undefined;
|
|
243
|
-
}[] | undefined;
|
|
244
377
|
skills?: string[] | undefined;
|
|
245
378
|
budget?: {
|
|
246
379
|
max_tasks?: number | undefined;
|
|
247
380
|
max_retries?: number | undefined;
|
|
248
381
|
timeout_minutes?: number | undefined;
|
|
382
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
249
383
|
} | undefined;
|
|
250
384
|
concurrency?: {
|
|
251
385
|
max_concurrent?: number | undefined;
|
|
@@ -445,9 +579,6 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
445
579
|
based_on: z.ZodOptional<z.ZodString>;
|
|
446
580
|
tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
447
581
|
}, "strip", z.ZodTypeAny, {
|
|
448
|
-
_ulid: string;
|
|
449
|
-
id: string;
|
|
450
|
-
trigger: string;
|
|
451
582
|
steps: {
|
|
452
583
|
content: string;
|
|
453
584
|
type: "decision" | "check" | "action";
|
|
@@ -466,6 +597,9 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
466
597
|
required?: boolean | undefined;
|
|
467
598
|
}[] | undefined;
|
|
468
599
|
}[];
|
|
600
|
+
_ulid: string;
|
|
601
|
+
id: string;
|
|
602
|
+
trigger: string;
|
|
469
603
|
tags?: string[] | undefined;
|
|
470
604
|
description?: string | undefined;
|
|
471
605
|
mode?: "interactive" | "loop" | undefined;
|
|
@@ -475,9 +609,6 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
475
609
|
_ulid: string;
|
|
476
610
|
id: string;
|
|
477
611
|
trigger: string;
|
|
478
|
-
tags?: string[] | undefined;
|
|
479
|
-
description?: string | undefined;
|
|
480
|
-
mode?: "interactive" | "loop" | undefined;
|
|
481
612
|
steps?: {
|
|
482
613
|
content: string;
|
|
483
614
|
type: "decision" | "check" | "action";
|
|
@@ -496,6 +627,9 @@ export declare const WorkflowSchema: z.ZodObject<{
|
|
|
496
627
|
required?: boolean | undefined;
|
|
497
628
|
}[] | undefined;
|
|
498
629
|
}[] | undefined;
|
|
630
|
+
tags?: string[] | undefined;
|
|
631
|
+
description?: string | undefined;
|
|
632
|
+
mode?: "interactive" | "loop" | undefined;
|
|
499
633
|
enforcement?: "advisory" | "strict" | undefined;
|
|
500
634
|
based_on?: string | undefined;
|
|
501
635
|
}>;
|
|
@@ -639,8 +773,8 @@ export declare const ObservationSchema: z.ZodObject<{
|
|
|
639
773
|
}, "strip", z.ZodTypeAny, {
|
|
640
774
|
content: string;
|
|
641
775
|
type: "friction" | "success" | "question" | "idea";
|
|
642
|
-
_ulid: string;
|
|
643
776
|
created_at: string;
|
|
777
|
+
_ulid: string;
|
|
644
778
|
resolved: boolean;
|
|
645
779
|
workflow_ref?: string | undefined;
|
|
646
780
|
author?: string | undefined;
|
|
@@ -651,8 +785,8 @@ export declare const ObservationSchema: z.ZodObject<{
|
|
|
651
785
|
}, {
|
|
652
786
|
content: string;
|
|
653
787
|
type: "friction" | "success" | "question" | "idea";
|
|
654
|
-
_ulid: string;
|
|
655
788
|
created_at: string;
|
|
789
|
+
_ulid: string;
|
|
656
790
|
workflow_ref?: string | undefined;
|
|
657
791
|
author?: string | undefined;
|
|
658
792
|
resolved?: boolean | undefined;
|
|
@@ -676,17 +810,17 @@ export declare const ClaudeCodeConfigSchema: z.ZodObject<{
|
|
|
676
810
|
model: z.ZodOptional<z.ZodString>;
|
|
677
811
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
678
812
|
}, "strict", z.ZodTypeAny, {
|
|
813
|
+
agent?: string | undefined;
|
|
679
814
|
disable_model_invocation?: boolean | undefined;
|
|
680
815
|
user_invocable?: boolean | undefined;
|
|
681
816
|
context?: string | undefined;
|
|
682
|
-
agent?: string | undefined;
|
|
683
817
|
model?: string | undefined;
|
|
684
818
|
argument_hint?: string | undefined;
|
|
685
819
|
}, {
|
|
820
|
+
agent?: string | undefined;
|
|
686
821
|
disable_model_invocation?: boolean | undefined;
|
|
687
822
|
user_invocable?: boolean | undefined;
|
|
688
823
|
context?: string | undefined;
|
|
689
|
-
agent?: string | undefined;
|
|
690
824
|
model?: string | undefined;
|
|
691
825
|
argument_hint?: string | undefined;
|
|
692
826
|
}>;
|
|
@@ -718,6 +852,29 @@ export declare const CodexConfigSchema: z.ZodObject<{
|
|
|
718
852
|
brand_color?: string | undefined;
|
|
719
853
|
default_prompt?: string | undefined;
|
|
720
854
|
}>;
|
|
855
|
+
/**
|
|
856
|
+
* Droid platform config - same portable frontmatter shape as Claude Code
|
|
857
|
+
* without the Claude-specific agent field.
|
|
858
|
+
*/
|
|
859
|
+
export declare const DroidConfigSchema: z.ZodObject<{
|
|
860
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
861
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
862
|
+
context: z.ZodOptional<z.ZodString>;
|
|
863
|
+
model: z.ZodOptional<z.ZodString>;
|
|
864
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
865
|
+
}, "strict", z.ZodTypeAny, {
|
|
866
|
+
disable_model_invocation?: boolean | undefined;
|
|
867
|
+
user_invocable?: boolean | undefined;
|
|
868
|
+
context?: string | undefined;
|
|
869
|
+
model?: string | undefined;
|
|
870
|
+
argument_hint?: string | undefined;
|
|
871
|
+
}, {
|
|
872
|
+
disable_model_invocation?: boolean | undefined;
|
|
873
|
+
user_invocable?: boolean | undefined;
|
|
874
|
+
context?: string | undefined;
|
|
875
|
+
model?: string | undefined;
|
|
876
|
+
argument_hint?: string | undefined;
|
|
877
|
+
}>;
|
|
721
878
|
/**
|
|
722
879
|
* Platform config - container for platform-specific settings
|
|
723
880
|
* Uses passthrough for unknown platforms to support future extensibility
|
|
@@ -731,17 +888,17 @@ export declare const PlatformConfigSchema: z.ZodObject<{
|
|
|
731
888
|
model: z.ZodOptional<z.ZodString>;
|
|
732
889
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
733
890
|
}, "strict", z.ZodTypeAny, {
|
|
891
|
+
agent?: string | undefined;
|
|
734
892
|
disable_model_invocation?: boolean | undefined;
|
|
735
893
|
user_invocable?: boolean | undefined;
|
|
736
894
|
context?: string | undefined;
|
|
737
|
-
agent?: string | undefined;
|
|
738
895
|
model?: string | undefined;
|
|
739
896
|
argument_hint?: string | undefined;
|
|
740
897
|
}, {
|
|
898
|
+
agent?: string | undefined;
|
|
741
899
|
disable_model_invocation?: boolean | undefined;
|
|
742
900
|
user_invocable?: boolean | undefined;
|
|
743
901
|
context?: string | undefined;
|
|
744
|
-
agent?: string | undefined;
|
|
745
902
|
model?: string | undefined;
|
|
746
903
|
argument_hint?: string | undefined;
|
|
747
904
|
}>>;
|
|
@@ -770,6 +927,25 @@ export declare const PlatformConfigSchema: z.ZodObject<{
|
|
|
770
927
|
brand_color?: string | undefined;
|
|
771
928
|
default_prompt?: string | undefined;
|
|
772
929
|
}>>;
|
|
930
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
931
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
932
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
933
|
+
context: z.ZodOptional<z.ZodString>;
|
|
934
|
+
model: z.ZodOptional<z.ZodString>;
|
|
935
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
936
|
+
}, "strict", z.ZodTypeAny, {
|
|
937
|
+
disable_model_invocation?: boolean | undefined;
|
|
938
|
+
user_invocable?: boolean | undefined;
|
|
939
|
+
context?: string | undefined;
|
|
940
|
+
model?: string | undefined;
|
|
941
|
+
argument_hint?: string | undefined;
|
|
942
|
+
}, {
|
|
943
|
+
disable_model_invocation?: boolean | undefined;
|
|
944
|
+
user_invocable?: boolean | undefined;
|
|
945
|
+
context?: string | undefined;
|
|
946
|
+
model?: string | undefined;
|
|
947
|
+
argument_hint?: string | undefined;
|
|
948
|
+
}>>;
|
|
773
949
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
774
950
|
claude_code: z.ZodOptional<z.ZodObject<{
|
|
775
951
|
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -779,17 +955,17 @@ export declare const PlatformConfigSchema: z.ZodObject<{
|
|
|
779
955
|
model: z.ZodOptional<z.ZodString>;
|
|
780
956
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
781
957
|
}, "strict", z.ZodTypeAny, {
|
|
958
|
+
agent?: string | undefined;
|
|
782
959
|
disable_model_invocation?: boolean | undefined;
|
|
783
960
|
user_invocable?: boolean | undefined;
|
|
784
961
|
context?: string | undefined;
|
|
785
|
-
agent?: string | undefined;
|
|
786
962
|
model?: string | undefined;
|
|
787
963
|
argument_hint?: string | undefined;
|
|
788
964
|
}, {
|
|
965
|
+
agent?: string | undefined;
|
|
789
966
|
disable_model_invocation?: boolean | undefined;
|
|
790
967
|
user_invocable?: boolean | undefined;
|
|
791
968
|
context?: string | undefined;
|
|
792
|
-
agent?: string | undefined;
|
|
793
969
|
model?: string | undefined;
|
|
794
970
|
argument_hint?: string | undefined;
|
|
795
971
|
}>>;
|
|
@@ -818,6 +994,25 @@ export declare const PlatformConfigSchema: z.ZodObject<{
|
|
|
818
994
|
brand_color?: string | undefined;
|
|
819
995
|
default_prompt?: string | undefined;
|
|
820
996
|
}>>;
|
|
997
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
998
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
999
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
1000
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1001
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1002
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
}, "strict", z.ZodTypeAny, {
|
|
1004
|
+
disable_model_invocation?: boolean | undefined;
|
|
1005
|
+
user_invocable?: boolean | undefined;
|
|
1006
|
+
context?: string | undefined;
|
|
1007
|
+
model?: string | undefined;
|
|
1008
|
+
argument_hint?: string | undefined;
|
|
1009
|
+
}, {
|
|
1010
|
+
disable_model_invocation?: boolean | undefined;
|
|
1011
|
+
user_invocable?: boolean | undefined;
|
|
1012
|
+
context?: string | undefined;
|
|
1013
|
+
model?: string | undefined;
|
|
1014
|
+
argument_hint?: string | undefined;
|
|
1015
|
+
}>>;
|
|
821
1016
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
822
1017
|
claude_code: z.ZodOptional<z.ZodObject<{
|
|
823
1018
|
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -827,17 +1022,17 @@ export declare const PlatformConfigSchema: z.ZodObject<{
|
|
|
827
1022
|
model: z.ZodOptional<z.ZodString>;
|
|
828
1023
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
829
1024
|
}, "strict", z.ZodTypeAny, {
|
|
1025
|
+
agent?: string | undefined;
|
|
830
1026
|
disable_model_invocation?: boolean | undefined;
|
|
831
1027
|
user_invocable?: boolean | undefined;
|
|
832
1028
|
context?: string | undefined;
|
|
833
|
-
agent?: string | undefined;
|
|
834
1029
|
model?: string | undefined;
|
|
835
1030
|
argument_hint?: string | undefined;
|
|
836
1031
|
}, {
|
|
1032
|
+
agent?: string | undefined;
|
|
837
1033
|
disable_model_invocation?: boolean | undefined;
|
|
838
1034
|
user_invocable?: boolean | undefined;
|
|
839
1035
|
context?: string | undefined;
|
|
840
|
-
agent?: string | undefined;
|
|
841
1036
|
model?: string | undefined;
|
|
842
1037
|
argument_hint?: string | undefined;
|
|
843
1038
|
}>>;
|
|
@@ -866,6 +1061,25 @@ export declare const PlatformConfigSchema: z.ZodObject<{
|
|
|
866
1061
|
brand_color?: string | undefined;
|
|
867
1062
|
default_prompt?: string | undefined;
|
|
868
1063
|
}>>;
|
|
1064
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
1065
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
1066
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
1067
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1068
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1069
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1070
|
+
}, "strict", z.ZodTypeAny, {
|
|
1071
|
+
disable_model_invocation?: boolean | undefined;
|
|
1072
|
+
user_invocable?: boolean | undefined;
|
|
1073
|
+
context?: string | undefined;
|
|
1074
|
+
model?: string | undefined;
|
|
1075
|
+
argument_hint?: string | undefined;
|
|
1076
|
+
}, {
|
|
1077
|
+
disable_model_invocation?: boolean | undefined;
|
|
1078
|
+
user_invocable?: boolean | undefined;
|
|
1079
|
+
context?: string | undefined;
|
|
1080
|
+
model?: string | undefined;
|
|
1081
|
+
argument_hint?: string | undefined;
|
|
1082
|
+
}>>;
|
|
869
1083
|
}, z.ZodTypeAny, "passthrough">>;
|
|
870
1084
|
/**
|
|
871
1085
|
* Skill definition - reusable agent capabilities stored in files
|
|
@@ -900,17 +1114,17 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
900
1114
|
model: z.ZodOptional<z.ZodString>;
|
|
901
1115
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
902
1116
|
}, "strict", z.ZodTypeAny, {
|
|
1117
|
+
agent?: string | undefined;
|
|
903
1118
|
disable_model_invocation?: boolean | undefined;
|
|
904
1119
|
user_invocable?: boolean | undefined;
|
|
905
1120
|
context?: string | undefined;
|
|
906
|
-
agent?: string | undefined;
|
|
907
1121
|
model?: string | undefined;
|
|
908
1122
|
argument_hint?: string | undefined;
|
|
909
1123
|
}, {
|
|
1124
|
+
agent?: string | undefined;
|
|
910
1125
|
disable_model_invocation?: boolean | undefined;
|
|
911
1126
|
user_invocable?: boolean | undefined;
|
|
912
1127
|
context?: string | undefined;
|
|
913
|
-
agent?: string | undefined;
|
|
914
1128
|
model?: string | undefined;
|
|
915
1129
|
argument_hint?: string | undefined;
|
|
916
1130
|
}>>;
|
|
@@ -939,6 +1153,25 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
939
1153
|
brand_color?: string | undefined;
|
|
940
1154
|
default_prompt?: string | undefined;
|
|
941
1155
|
}>>;
|
|
1156
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
1157
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
1158
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
1159
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1160
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1161
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1162
|
+
}, "strict", z.ZodTypeAny, {
|
|
1163
|
+
disable_model_invocation?: boolean | undefined;
|
|
1164
|
+
user_invocable?: boolean | undefined;
|
|
1165
|
+
context?: string | undefined;
|
|
1166
|
+
model?: string | undefined;
|
|
1167
|
+
argument_hint?: string | undefined;
|
|
1168
|
+
}, {
|
|
1169
|
+
disable_model_invocation?: boolean | undefined;
|
|
1170
|
+
user_invocable?: boolean | undefined;
|
|
1171
|
+
context?: string | undefined;
|
|
1172
|
+
model?: string | undefined;
|
|
1173
|
+
argument_hint?: string | undefined;
|
|
1174
|
+
}>>;
|
|
942
1175
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
943
1176
|
claude_code: z.ZodOptional<z.ZodObject<{
|
|
944
1177
|
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -948,17 +1181,17 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
948
1181
|
model: z.ZodOptional<z.ZodString>;
|
|
949
1182
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
950
1183
|
}, "strict", z.ZodTypeAny, {
|
|
1184
|
+
agent?: string | undefined;
|
|
951
1185
|
disable_model_invocation?: boolean | undefined;
|
|
952
1186
|
user_invocable?: boolean | undefined;
|
|
953
1187
|
context?: string | undefined;
|
|
954
|
-
agent?: string | undefined;
|
|
955
1188
|
model?: string | undefined;
|
|
956
1189
|
argument_hint?: string | undefined;
|
|
957
1190
|
}, {
|
|
1191
|
+
agent?: string | undefined;
|
|
958
1192
|
disable_model_invocation?: boolean | undefined;
|
|
959
1193
|
user_invocable?: boolean | undefined;
|
|
960
1194
|
context?: string | undefined;
|
|
961
|
-
agent?: string | undefined;
|
|
962
1195
|
model?: string | undefined;
|
|
963
1196
|
argument_hint?: string | undefined;
|
|
964
1197
|
}>>;
|
|
@@ -987,6 +1220,25 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
987
1220
|
brand_color?: string | undefined;
|
|
988
1221
|
default_prompt?: string | undefined;
|
|
989
1222
|
}>>;
|
|
1223
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
1224
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
1225
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
1226
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1227
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1229
|
+
}, "strict", z.ZodTypeAny, {
|
|
1230
|
+
disable_model_invocation?: boolean | undefined;
|
|
1231
|
+
user_invocable?: boolean | undefined;
|
|
1232
|
+
context?: string | undefined;
|
|
1233
|
+
model?: string | undefined;
|
|
1234
|
+
argument_hint?: string | undefined;
|
|
1235
|
+
}, {
|
|
1236
|
+
disable_model_invocation?: boolean | undefined;
|
|
1237
|
+
user_invocable?: boolean | undefined;
|
|
1238
|
+
context?: string | undefined;
|
|
1239
|
+
model?: string | undefined;
|
|
1240
|
+
argument_hint?: string | undefined;
|
|
1241
|
+
}>>;
|
|
990
1242
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
991
1243
|
claude_code: z.ZodOptional<z.ZodObject<{
|
|
992
1244
|
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -996,17 +1248,17 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
996
1248
|
model: z.ZodOptional<z.ZodString>;
|
|
997
1249
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
998
1250
|
}, "strict", z.ZodTypeAny, {
|
|
1251
|
+
agent?: string | undefined;
|
|
999
1252
|
disable_model_invocation?: boolean | undefined;
|
|
1000
1253
|
user_invocable?: boolean | undefined;
|
|
1001
1254
|
context?: string | undefined;
|
|
1002
|
-
agent?: string | undefined;
|
|
1003
1255
|
model?: string | undefined;
|
|
1004
1256
|
argument_hint?: string | undefined;
|
|
1005
1257
|
}, {
|
|
1258
|
+
agent?: string | undefined;
|
|
1006
1259
|
disable_model_invocation?: boolean | undefined;
|
|
1007
1260
|
user_invocable?: boolean | undefined;
|
|
1008
1261
|
context?: string | undefined;
|
|
1009
|
-
agent?: string | undefined;
|
|
1010
1262
|
model?: string | undefined;
|
|
1011
1263
|
argument_hint?: string | undefined;
|
|
1012
1264
|
}>>;
|
|
@@ -1035,6 +1287,25 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
1035
1287
|
brand_color?: string | undefined;
|
|
1036
1288
|
default_prompt?: string | undefined;
|
|
1037
1289
|
}>>;
|
|
1290
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
1291
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
1292
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
1293
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1295
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1296
|
+
}, "strict", z.ZodTypeAny, {
|
|
1297
|
+
disable_model_invocation?: boolean | undefined;
|
|
1298
|
+
user_invocable?: boolean | undefined;
|
|
1299
|
+
context?: string | undefined;
|
|
1300
|
+
model?: string | undefined;
|
|
1301
|
+
argument_hint?: string | undefined;
|
|
1302
|
+
}, {
|
|
1303
|
+
disable_model_invocation?: boolean | undefined;
|
|
1304
|
+
user_invocable?: boolean | undefined;
|
|
1305
|
+
context?: string | undefined;
|
|
1306
|
+
model?: string | undefined;
|
|
1307
|
+
argument_hint?: string | undefined;
|
|
1308
|
+
}>>;
|
|
1038
1309
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1039
1310
|
}, "strip", z.ZodTypeAny, {
|
|
1040
1311
|
name: string;
|
|
@@ -1060,17 +1331,17 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
1060
1331
|
model: z.ZodOptional<z.ZodString>;
|
|
1061
1332
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1062
1333
|
}, "strict", z.ZodTypeAny, {
|
|
1334
|
+
agent?: string | undefined;
|
|
1063
1335
|
disable_model_invocation?: boolean | undefined;
|
|
1064
1336
|
user_invocable?: boolean | undefined;
|
|
1065
1337
|
context?: string | undefined;
|
|
1066
|
-
agent?: string | undefined;
|
|
1067
1338
|
model?: string | undefined;
|
|
1068
1339
|
argument_hint?: string | undefined;
|
|
1069
1340
|
}, {
|
|
1341
|
+
agent?: string | undefined;
|
|
1070
1342
|
disable_model_invocation?: boolean | undefined;
|
|
1071
1343
|
user_invocable?: boolean | undefined;
|
|
1072
1344
|
context?: string | undefined;
|
|
1073
|
-
agent?: string | undefined;
|
|
1074
1345
|
model?: string | undefined;
|
|
1075
1346
|
argument_hint?: string | undefined;
|
|
1076
1347
|
}>>;
|
|
@@ -1099,6 +1370,25 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
1099
1370
|
brand_color?: string | undefined;
|
|
1100
1371
|
default_prompt?: string | undefined;
|
|
1101
1372
|
}>>;
|
|
1373
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
1374
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
1375
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
1376
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1377
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1378
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1379
|
+
}, "strict", z.ZodTypeAny, {
|
|
1380
|
+
disable_model_invocation?: boolean | undefined;
|
|
1381
|
+
user_invocable?: boolean | undefined;
|
|
1382
|
+
context?: string | undefined;
|
|
1383
|
+
model?: string | undefined;
|
|
1384
|
+
argument_hint?: string | undefined;
|
|
1385
|
+
}, {
|
|
1386
|
+
disable_model_invocation?: boolean | undefined;
|
|
1387
|
+
user_invocable?: boolean | undefined;
|
|
1388
|
+
context?: string | undefined;
|
|
1389
|
+
model?: string | undefined;
|
|
1390
|
+
argument_hint?: string | undefined;
|
|
1391
|
+
}>>;
|
|
1102
1392
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1103
1393
|
}, {
|
|
1104
1394
|
name: string;
|
|
@@ -1124,17 +1414,17 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
1124
1414
|
model: z.ZodOptional<z.ZodString>;
|
|
1125
1415
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1126
1416
|
}, "strict", z.ZodTypeAny, {
|
|
1417
|
+
agent?: string | undefined;
|
|
1127
1418
|
disable_model_invocation?: boolean | undefined;
|
|
1128
1419
|
user_invocable?: boolean | undefined;
|
|
1129
1420
|
context?: string | undefined;
|
|
1130
|
-
agent?: string | undefined;
|
|
1131
1421
|
model?: string | undefined;
|
|
1132
1422
|
argument_hint?: string | undefined;
|
|
1133
1423
|
}, {
|
|
1424
|
+
agent?: string | undefined;
|
|
1134
1425
|
disable_model_invocation?: boolean | undefined;
|
|
1135
1426
|
user_invocable?: boolean | undefined;
|
|
1136
1427
|
context?: string | undefined;
|
|
1137
|
-
agent?: string | undefined;
|
|
1138
1428
|
model?: string | undefined;
|
|
1139
1429
|
argument_hint?: string | undefined;
|
|
1140
1430
|
}>>;
|
|
@@ -1163,7 +1453,26 @@ export declare const SkillSchema: z.ZodObject<{
|
|
|
1163
1453
|
brand_color?: string | undefined;
|
|
1164
1454
|
default_prompt?: string | undefined;
|
|
1165
1455
|
}>>;
|
|
1166
|
-
|
|
1456
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
1457
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
1458
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
1459
|
+
context: z.ZodOptional<z.ZodString>;
|
|
1460
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1461
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1462
|
+
}, "strict", z.ZodTypeAny, {
|
|
1463
|
+
disable_model_invocation?: boolean | undefined;
|
|
1464
|
+
user_invocable?: boolean | undefined;
|
|
1465
|
+
context?: string | undefined;
|
|
1466
|
+
model?: string | undefined;
|
|
1467
|
+
argument_hint?: string | undefined;
|
|
1468
|
+
}, {
|
|
1469
|
+
disable_model_invocation?: boolean | undefined;
|
|
1470
|
+
user_invocable?: boolean | undefined;
|
|
1471
|
+
context?: string | undefined;
|
|
1472
|
+
model?: string | undefined;
|
|
1473
|
+
argument_hint?: string | undefined;
|
|
1474
|
+
}>>;
|
|
1475
|
+
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1167
1476
|
}>;
|
|
1168
1477
|
/**
|
|
1169
1478
|
* Session context schema - ephemeral session state
|
|
@@ -1174,13 +1483,13 @@ export declare const SessionContextSchema: z.ZodObject<{
|
|
|
1174
1483
|
open_questions: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
1175
1484
|
updated_at: z.ZodUnion<[z.ZodString, z.ZodString]>;
|
|
1176
1485
|
}, "strip", z.ZodTypeAny, {
|
|
1486
|
+
updated_at: string;
|
|
1177
1487
|
focus: string | null;
|
|
1178
1488
|
threads: string[];
|
|
1179
1489
|
open_questions: string[];
|
|
1180
|
-
updated_at: string;
|
|
1181
1490
|
}, {
|
|
1182
|
-
focus: string | null;
|
|
1183
1491
|
updated_at: string;
|
|
1492
|
+
focus: string | null;
|
|
1184
1493
|
threads?: string[] | undefined;
|
|
1185
1494
|
open_questions?: string[] | undefined;
|
|
1186
1495
|
}>;
|
|
@@ -1201,7 +1510,7 @@ export declare const StepResultSchema: z.ZodObject<{
|
|
|
1201
1510
|
notes: z.ZodOptional<z.ZodString>;
|
|
1202
1511
|
inputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1203
1512
|
}, "strip", z.ZodTypeAny, {
|
|
1204
|
-
status: "completed" | "
|
|
1513
|
+
status: "completed" | "failed" | "skipped";
|
|
1205
1514
|
step_index: number;
|
|
1206
1515
|
started_at: string;
|
|
1207
1516
|
completed_at: string;
|
|
@@ -1210,7 +1519,7 @@ export declare const StepResultSchema: z.ZodObject<{
|
|
|
1210
1519
|
exit_confirmed?: boolean | undefined;
|
|
1211
1520
|
notes?: string | undefined;
|
|
1212
1521
|
}, {
|
|
1213
|
-
status: "completed" | "
|
|
1522
|
+
status: "completed" | "failed" | "skipped";
|
|
1214
1523
|
step_index: number;
|
|
1215
1524
|
started_at: string;
|
|
1216
1525
|
completed_at: string;
|
|
@@ -1249,7 +1558,7 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
1249
1558
|
notes: z.ZodOptional<z.ZodString>;
|
|
1250
1559
|
inputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1251
1560
|
}, "strip", z.ZodTypeAny, {
|
|
1252
|
-
status: "completed" | "
|
|
1561
|
+
status: "completed" | "failed" | "skipped";
|
|
1253
1562
|
step_index: number;
|
|
1254
1563
|
started_at: string;
|
|
1255
1564
|
completed_at: string;
|
|
@@ -1258,7 +1567,7 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
1258
1567
|
exit_confirmed?: boolean | undefined;
|
|
1259
1568
|
notes?: string | undefined;
|
|
1260
1569
|
}, {
|
|
1261
|
-
status: "completed" | "
|
|
1570
|
+
status: "completed" | "failed" | "skipped";
|
|
1262
1571
|
step_index: number;
|
|
1263
1572
|
started_at: string;
|
|
1264
1573
|
completed_at: string;
|
|
@@ -1279,7 +1588,7 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
1279
1588
|
current_step: number;
|
|
1280
1589
|
total_steps: number;
|
|
1281
1590
|
step_results: {
|
|
1282
|
-
status: "completed" | "
|
|
1591
|
+
status: "completed" | "failed" | "skipped";
|
|
1283
1592
|
step_index: number;
|
|
1284
1593
|
started_at: string;
|
|
1285
1594
|
completed_at: string;
|
|
@@ -1288,11 +1597,11 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
1288
1597
|
exit_confirmed?: boolean | undefined;
|
|
1289
1598
|
notes?: string | undefined;
|
|
1290
1599
|
}[];
|
|
1600
|
+
task_ref?: string | undefined;
|
|
1291
1601
|
completed_at?: string | undefined;
|
|
1292
1602
|
paused_at?: string | undefined;
|
|
1293
1603
|
initiated_by?: string | undefined;
|
|
1294
1604
|
abort_reason?: string | undefined;
|
|
1295
|
-
task_ref?: string | undefined;
|
|
1296
1605
|
result?: "success" | "no_work_available" | "early_exit" | undefined;
|
|
1297
1606
|
}, {
|
|
1298
1607
|
status: "aborted" | "completed" | "active" | "paused";
|
|
@@ -1301,10 +1610,11 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
1301
1610
|
started_at: string;
|
|
1302
1611
|
current_step: number;
|
|
1303
1612
|
total_steps: number;
|
|
1613
|
+
task_ref?: string | undefined;
|
|
1304
1614
|
completed_at?: string | undefined;
|
|
1305
1615
|
paused_at?: string | undefined;
|
|
1306
1616
|
step_results?: {
|
|
1307
|
-
status: "completed" | "
|
|
1617
|
+
status: "completed" | "failed" | "skipped";
|
|
1308
1618
|
step_index: number;
|
|
1309
1619
|
started_at: string;
|
|
1310
1620
|
completed_at: string;
|
|
@@ -1315,7 +1625,6 @@ export declare const WorkflowRunSchema: z.ZodObject<{
|
|
|
1315
1625
|
}[] | undefined;
|
|
1316
1626
|
initiated_by?: string | undefined;
|
|
1317
1627
|
abort_reason?: string | undefined;
|
|
1318
|
-
task_ref?: string | undefined;
|
|
1319
1628
|
result?: "success" | "no_work_available" | "early_exit" | undefined;
|
|
1320
1629
|
}>;
|
|
1321
1630
|
/**
|
|
@@ -1342,7 +1651,7 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1342
1651
|
notes: z.ZodOptional<z.ZodString>;
|
|
1343
1652
|
inputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1344
1653
|
}, "strip", z.ZodTypeAny, {
|
|
1345
|
-
status: "completed" | "
|
|
1654
|
+
status: "completed" | "failed" | "skipped";
|
|
1346
1655
|
step_index: number;
|
|
1347
1656
|
started_at: string;
|
|
1348
1657
|
completed_at: string;
|
|
@@ -1351,7 +1660,7 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1351
1660
|
exit_confirmed?: boolean | undefined;
|
|
1352
1661
|
notes?: string | undefined;
|
|
1353
1662
|
}, {
|
|
1354
|
-
status: "completed" | "
|
|
1663
|
+
status: "completed" | "failed" | "skipped";
|
|
1355
1664
|
step_index: number;
|
|
1356
1665
|
started_at: string;
|
|
1357
1666
|
completed_at: string;
|
|
@@ -1372,7 +1681,7 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1372
1681
|
current_step: number;
|
|
1373
1682
|
total_steps: number;
|
|
1374
1683
|
step_results: {
|
|
1375
|
-
status: "completed" | "
|
|
1684
|
+
status: "completed" | "failed" | "skipped";
|
|
1376
1685
|
step_index: number;
|
|
1377
1686
|
started_at: string;
|
|
1378
1687
|
completed_at: string;
|
|
@@ -1381,11 +1690,11 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1381
1690
|
exit_confirmed?: boolean | undefined;
|
|
1382
1691
|
notes?: string | undefined;
|
|
1383
1692
|
}[];
|
|
1693
|
+
task_ref?: string | undefined;
|
|
1384
1694
|
completed_at?: string | undefined;
|
|
1385
1695
|
paused_at?: string | undefined;
|
|
1386
1696
|
initiated_by?: string | undefined;
|
|
1387
1697
|
abort_reason?: string | undefined;
|
|
1388
|
-
task_ref?: string | undefined;
|
|
1389
1698
|
result?: "success" | "no_work_available" | "early_exit" | undefined;
|
|
1390
1699
|
}, {
|
|
1391
1700
|
status: "aborted" | "completed" | "active" | "paused";
|
|
@@ -1394,10 +1703,11 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1394
1703
|
started_at: string;
|
|
1395
1704
|
current_step: number;
|
|
1396
1705
|
total_steps: number;
|
|
1706
|
+
task_ref?: string | undefined;
|
|
1397
1707
|
completed_at?: string | undefined;
|
|
1398
1708
|
paused_at?: string | undefined;
|
|
1399
1709
|
step_results?: {
|
|
1400
|
-
status: "completed" | "
|
|
1710
|
+
status: "completed" | "failed" | "skipped";
|
|
1401
1711
|
step_index: number;
|
|
1402
1712
|
started_at: string;
|
|
1403
1713
|
completed_at: string;
|
|
@@ -1408,7 +1718,6 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1408
1718
|
}[] | undefined;
|
|
1409
1719
|
initiated_by?: string | undefined;
|
|
1410
1720
|
abort_reason?: string | undefined;
|
|
1411
|
-
task_ref?: string | undefined;
|
|
1412
1721
|
result?: "success" | "no_work_available" | "early_exit" | undefined;
|
|
1413
1722
|
}>, "many">>;
|
|
1414
1723
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1421,7 +1730,7 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1421
1730
|
current_step: number;
|
|
1422
1731
|
total_steps: number;
|
|
1423
1732
|
step_results: {
|
|
1424
|
-
status: "completed" | "
|
|
1733
|
+
status: "completed" | "failed" | "skipped";
|
|
1425
1734
|
step_index: number;
|
|
1426
1735
|
started_at: string;
|
|
1427
1736
|
completed_at: string;
|
|
@@ -1430,11 +1739,11 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1430
1739
|
exit_confirmed?: boolean | undefined;
|
|
1431
1740
|
notes?: string | undefined;
|
|
1432
1741
|
}[];
|
|
1742
|
+
task_ref?: string | undefined;
|
|
1433
1743
|
completed_at?: string | undefined;
|
|
1434
1744
|
paused_at?: string | undefined;
|
|
1435
1745
|
initiated_by?: string | undefined;
|
|
1436
1746
|
abort_reason?: string | undefined;
|
|
1437
|
-
task_ref?: string | undefined;
|
|
1438
1747
|
result?: "success" | "no_work_available" | "early_exit" | undefined;
|
|
1439
1748
|
}[];
|
|
1440
1749
|
}, {
|
|
@@ -1446,10 +1755,11 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1446
1755
|
started_at: string;
|
|
1447
1756
|
current_step: number;
|
|
1448
1757
|
total_steps: number;
|
|
1758
|
+
task_ref?: string | undefined;
|
|
1449
1759
|
completed_at?: string | undefined;
|
|
1450
1760
|
paused_at?: string | undefined;
|
|
1451
1761
|
step_results?: {
|
|
1452
|
-
status: "completed" | "
|
|
1762
|
+
status: "completed" | "failed" | "skipped";
|
|
1453
1763
|
step_index: number;
|
|
1454
1764
|
started_at: string;
|
|
1455
1765
|
completed_at: string;
|
|
@@ -1460,7 +1770,6 @@ export declare const WorkflowRunsFileSchema: z.ZodObject<{
|
|
|
1460
1770
|
}[] | undefined;
|
|
1461
1771
|
initiated_by?: string | undefined;
|
|
1462
1772
|
abort_reason?: string | undefined;
|
|
1463
|
-
task_ref?: string | undefined;
|
|
1464
1773
|
result?: "success" | "no_work_available" | "early_exit" | undefined;
|
|
1465
1774
|
}[] | undefined;
|
|
1466
1775
|
}>;
|
|
@@ -1526,14 +1835,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1526
1835
|
max_tasks: z.ZodOptional<z.ZodNumber>;
|
|
1527
1836
|
max_retries: z.ZodOptional<z.ZodNumber>;
|
|
1528
1837
|
timeout_minutes: z.ZodOptional<z.ZodNumber>;
|
|
1838
|
+
initial_response_timeout_seconds: z.ZodOptional<z.ZodNumber>;
|
|
1529
1839
|
}, "strip", z.ZodTypeAny, {
|
|
1530
1840
|
max_tasks?: number | undefined;
|
|
1531
1841
|
max_retries?: number | undefined;
|
|
1532
1842
|
timeout_minutes?: number | undefined;
|
|
1843
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
1533
1844
|
}, {
|
|
1534
1845
|
max_tasks?: number | undefined;
|
|
1535
1846
|
max_retries?: number | undefined;
|
|
1536
1847
|
timeout_minutes?: number | undefined;
|
|
1848
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
1537
1849
|
}>>;
|
|
1538
1850
|
concurrency: z.ZodDefault<z.ZodObject<{
|
|
1539
1851
|
max_concurrent: z.ZodDefault<z.ZodNumber>;
|
|
@@ -1542,6 +1854,48 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1542
1854
|
}, {
|
|
1543
1855
|
max_concurrent?: number | undefined;
|
|
1544
1856
|
}>>;
|
|
1857
|
+
bootstrap: z.ZodOptional<z.ZodObject<{
|
|
1858
|
+
steps: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1859
|
+
run: z.ZodString;
|
|
1860
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1861
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["worker", "reviewer"]>, "many">>;
|
|
1862
|
+
idempotent: z.ZodOptional<z.ZodBoolean>;
|
|
1863
|
+
allow_tracked_changes: z.ZodOptional<z.ZodBoolean>;
|
|
1864
|
+
reviewer_rerun_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1865
|
+
}, "strip", z.ZodTypeAny, {
|
|
1866
|
+
run: string;
|
|
1867
|
+
name?: string | undefined;
|
|
1868
|
+
idempotent?: boolean | undefined;
|
|
1869
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
1870
|
+
allow_tracked_changes?: boolean | undefined;
|
|
1871
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
1872
|
+
}, {
|
|
1873
|
+
run: string;
|
|
1874
|
+
name?: string | undefined;
|
|
1875
|
+
idempotent?: boolean | undefined;
|
|
1876
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
1877
|
+
allow_tracked_changes?: boolean | undefined;
|
|
1878
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
1879
|
+
}>, "many">>;
|
|
1880
|
+
}, "strip", z.ZodTypeAny, {
|
|
1881
|
+
steps: {
|
|
1882
|
+
run: string;
|
|
1883
|
+
name?: string | undefined;
|
|
1884
|
+
idempotent?: boolean | undefined;
|
|
1885
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
1886
|
+
allow_tracked_changes?: boolean | undefined;
|
|
1887
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
1888
|
+
}[];
|
|
1889
|
+
}, {
|
|
1890
|
+
steps?: {
|
|
1891
|
+
run: string;
|
|
1892
|
+
name?: string | undefined;
|
|
1893
|
+
idempotent?: boolean | undefined;
|
|
1894
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
1895
|
+
allow_tracked_changes?: boolean | undefined;
|
|
1896
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
1897
|
+
}[] | undefined;
|
|
1898
|
+
}>>;
|
|
1545
1899
|
auto_approve: z.ZodDefault<z.ZodBoolean>;
|
|
1546
1900
|
prompt_template: z.ZodOptional<z.ZodString>;
|
|
1547
1901
|
/** Automation eligibility for agent list filtering (eligible|ineligible) */
|
|
@@ -1550,11 +1904,6 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1550
1904
|
tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1551
1905
|
}, "strip", z.ZodTypeAny, {
|
|
1552
1906
|
name: string;
|
|
1553
|
-
_ulid: string;
|
|
1554
|
-
id: string;
|
|
1555
|
-
capabilities: string[];
|
|
1556
|
-
tools: string[];
|
|
1557
|
-
conventions: string[];
|
|
1558
1907
|
dispatch: {
|
|
1559
1908
|
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
1560
1909
|
filter?: {
|
|
@@ -1563,11 +1912,26 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1563
1912
|
priority?: number | undefined;
|
|
1564
1913
|
} | undefined;
|
|
1565
1914
|
}[];
|
|
1915
|
+
_ulid: string;
|
|
1916
|
+
id: string;
|
|
1917
|
+
capabilities: string[];
|
|
1918
|
+
tools: string[];
|
|
1919
|
+
conventions: string[];
|
|
1566
1920
|
skills: string[];
|
|
1567
1921
|
concurrency: {
|
|
1568
1922
|
max_concurrent: number;
|
|
1569
1923
|
};
|
|
1570
1924
|
auto_approve: boolean;
|
|
1925
|
+
bootstrap?: {
|
|
1926
|
+
steps: {
|
|
1927
|
+
run: string;
|
|
1928
|
+
name?: string | undefined;
|
|
1929
|
+
idempotent?: boolean | undefined;
|
|
1930
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
1931
|
+
allow_tracked_changes?: boolean | undefined;
|
|
1932
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
1933
|
+
}[];
|
|
1934
|
+
} | undefined;
|
|
1571
1935
|
tags?: string[] | undefined;
|
|
1572
1936
|
automation?: "eligible" | "ineligible" | undefined;
|
|
1573
1937
|
description?: string | undefined;
|
|
@@ -1581,12 +1945,31 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1581
1945
|
max_tasks?: number | undefined;
|
|
1582
1946
|
max_retries?: number | undefined;
|
|
1583
1947
|
timeout_minutes?: number | undefined;
|
|
1948
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
1584
1949
|
} | undefined;
|
|
1585
1950
|
prompt_template?: string | undefined;
|
|
1586
1951
|
}, {
|
|
1587
1952
|
name: string;
|
|
1588
1953
|
_ulid: string;
|
|
1589
1954
|
id: string;
|
|
1955
|
+
dispatch?: {
|
|
1956
|
+
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
1957
|
+
filter?: {
|
|
1958
|
+
tags?: string[] | undefined;
|
|
1959
|
+
automation?: "eligible" | "ineligible" | undefined;
|
|
1960
|
+
priority?: number | undefined;
|
|
1961
|
+
} | undefined;
|
|
1962
|
+
}[] | undefined;
|
|
1963
|
+
bootstrap?: {
|
|
1964
|
+
steps?: {
|
|
1965
|
+
run: string;
|
|
1966
|
+
name?: string | undefined;
|
|
1967
|
+
idempotent?: boolean | undefined;
|
|
1968
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
1969
|
+
allow_tracked_changes?: boolean | undefined;
|
|
1970
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
1971
|
+
}[] | undefined;
|
|
1972
|
+
} | undefined;
|
|
1590
1973
|
tags?: string[] | undefined;
|
|
1591
1974
|
automation?: "eligible" | "ineligible" | undefined;
|
|
1592
1975
|
description?: string | undefined;
|
|
@@ -1599,19 +1982,12 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1599
1982
|
} | undefined;
|
|
1600
1983
|
conventions?: string[] | undefined;
|
|
1601
1984
|
adapter?: string | undefined;
|
|
1602
|
-
dispatch?: {
|
|
1603
|
-
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
1604
|
-
filter?: {
|
|
1605
|
-
tags?: string[] | undefined;
|
|
1606
|
-
automation?: "eligible" | "ineligible" | undefined;
|
|
1607
|
-
priority?: number | undefined;
|
|
1608
|
-
} | undefined;
|
|
1609
|
-
}[] | undefined;
|
|
1610
1985
|
skills?: string[] | undefined;
|
|
1611
1986
|
budget?: {
|
|
1612
1987
|
max_tasks?: number | undefined;
|
|
1613
1988
|
max_retries?: number | undefined;
|
|
1614
1989
|
timeout_minutes?: number | undefined;
|
|
1990
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
1615
1991
|
} | undefined;
|
|
1616
1992
|
concurrency?: {
|
|
1617
1993
|
max_concurrent?: number | undefined;
|
|
@@ -1697,9 +2073,6 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1697
2073
|
based_on: z.ZodOptional<z.ZodString>;
|
|
1698
2074
|
tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1699
2075
|
}, "strip", z.ZodTypeAny, {
|
|
1700
|
-
_ulid: string;
|
|
1701
|
-
id: string;
|
|
1702
|
-
trigger: string;
|
|
1703
2076
|
steps: {
|
|
1704
2077
|
content: string;
|
|
1705
2078
|
type: "decision" | "check" | "action";
|
|
@@ -1718,6 +2091,9 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1718
2091
|
required?: boolean | undefined;
|
|
1719
2092
|
}[] | undefined;
|
|
1720
2093
|
}[];
|
|
2094
|
+
_ulid: string;
|
|
2095
|
+
id: string;
|
|
2096
|
+
trigger: string;
|
|
1721
2097
|
tags?: string[] | undefined;
|
|
1722
2098
|
description?: string | undefined;
|
|
1723
2099
|
mode?: "interactive" | "loop" | undefined;
|
|
@@ -1727,9 +2103,6 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1727
2103
|
_ulid: string;
|
|
1728
2104
|
id: string;
|
|
1729
2105
|
trigger: string;
|
|
1730
|
-
tags?: string[] | undefined;
|
|
1731
|
-
description?: string | undefined;
|
|
1732
|
-
mode?: "interactive" | "loop" | undefined;
|
|
1733
2106
|
steps?: {
|
|
1734
2107
|
content: string;
|
|
1735
2108
|
type: "decision" | "check" | "action";
|
|
@@ -1748,6 +2121,9 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1748
2121
|
required?: boolean | undefined;
|
|
1749
2122
|
}[] | undefined;
|
|
1750
2123
|
}[] | undefined;
|
|
2124
|
+
tags?: string[] | undefined;
|
|
2125
|
+
description?: string | undefined;
|
|
2126
|
+
mode?: "interactive" | "loop" | undefined;
|
|
1751
2127
|
enforcement?: "advisory" | "strict" | undefined;
|
|
1752
2128
|
based_on?: string | undefined;
|
|
1753
2129
|
}>, "many">>;
|
|
@@ -1840,8 +2216,8 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1840
2216
|
}, "strip", z.ZodTypeAny, {
|
|
1841
2217
|
content: string;
|
|
1842
2218
|
type: "friction" | "success" | "question" | "idea";
|
|
1843
|
-
_ulid: string;
|
|
1844
2219
|
created_at: string;
|
|
2220
|
+
_ulid: string;
|
|
1845
2221
|
resolved: boolean;
|
|
1846
2222
|
workflow_ref?: string | undefined;
|
|
1847
2223
|
author?: string | undefined;
|
|
@@ -1852,8 +2228,8 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1852
2228
|
}, {
|
|
1853
2229
|
content: string;
|
|
1854
2230
|
type: "friction" | "success" | "question" | "idea";
|
|
1855
|
-
_ulid: string;
|
|
1856
2231
|
created_at: string;
|
|
2232
|
+
_ulid: string;
|
|
1857
2233
|
workflow_ref?: string | undefined;
|
|
1858
2234
|
author?: string | undefined;
|
|
1859
2235
|
resolved?: boolean | undefined;
|
|
@@ -1886,17 +2262,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1886
2262
|
model: z.ZodOptional<z.ZodString>;
|
|
1887
2263
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1888
2264
|
}, "strict", z.ZodTypeAny, {
|
|
2265
|
+
agent?: string | undefined;
|
|
1889
2266
|
disable_model_invocation?: boolean | undefined;
|
|
1890
2267
|
user_invocable?: boolean | undefined;
|
|
1891
2268
|
context?: string | undefined;
|
|
1892
|
-
agent?: string | undefined;
|
|
1893
2269
|
model?: string | undefined;
|
|
1894
2270
|
argument_hint?: string | undefined;
|
|
1895
2271
|
}, {
|
|
2272
|
+
agent?: string | undefined;
|
|
1896
2273
|
disable_model_invocation?: boolean | undefined;
|
|
1897
2274
|
user_invocable?: boolean | undefined;
|
|
1898
2275
|
context?: string | undefined;
|
|
1899
|
-
agent?: string | undefined;
|
|
1900
2276
|
model?: string | undefined;
|
|
1901
2277
|
argument_hint?: string | undefined;
|
|
1902
2278
|
}>>;
|
|
@@ -1925,6 +2301,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1925
2301
|
brand_color?: string | undefined;
|
|
1926
2302
|
default_prompt?: string | undefined;
|
|
1927
2303
|
}>>;
|
|
2304
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
2305
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
2306
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
2307
|
+
context: z.ZodOptional<z.ZodString>;
|
|
2308
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2309
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2310
|
+
}, "strict", z.ZodTypeAny, {
|
|
2311
|
+
disable_model_invocation?: boolean | undefined;
|
|
2312
|
+
user_invocable?: boolean | undefined;
|
|
2313
|
+
context?: string | undefined;
|
|
2314
|
+
model?: string | undefined;
|
|
2315
|
+
argument_hint?: string | undefined;
|
|
2316
|
+
}, {
|
|
2317
|
+
disable_model_invocation?: boolean | undefined;
|
|
2318
|
+
user_invocable?: boolean | undefined;
|
|
2319
|
+
context?: string | undefined;
|
|
2320
|
+
model?: string | undefined;
|
|
2321
|
+
argument_hint?: string | undefined;
|
|
2322
|
+
}>>;
|
|
1928
2323
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1929
2324
|
claude_code: z.ZodOptional<z.ZodObject<{
|
|
1930
2325
|
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1934,17 +2329,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1934
2329
|
model: z.ZodOptional<z.ZodString>;
|
|
1935
2330
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1936
2331
|
}, "strict", z.ZodTypeAny, {
|
|
2332
|
+
agent?: string | undefined;
|
|
1937
2333
|
disable_model_invocation?: boolean | undefined;
|
|
1938
2334
|
user_invocable?: boolean | undefined;
|
|
1939
2335
|
context?: string | undefined;
|
|
1940
|
-
agent?: string | undefined;
|
|
1941
2336
|
model?: string | undefined;
|
|
1942
2337
|
argument_hint?: string | undefined;
|
|
1943
2338
|
}, {
|
|
2339
|
+
agent?: string | undefined;
|
|
1944
2340
|
disable_model_invocation?: boolean | undefined;
|
|
1945
2341
|
user_invocable?: boolean | undefined;
|
|
1946
2342
|
context?: string | undefined;
|
|
1947
|
-
agent?: string | undefined;
|
|
1948
2343
|
model?: string | undefined;
|
|
1949
2344
|
argument_hint?: string | undefined;
|
|
1950
2345
|
}>>;
|
|
@@ -1973,6 +2368,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1973
2368
|
brand_color?: string | undefined;
|
|
1974
2369
|
default_prompt?: string | undefined;
|
|
1975
2370
|
}>>;
|
|
2371
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
2372
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
2373
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
2374
|
+
context: z.ZodOptional<z.ZodString>;
|
|
2375
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2376
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2377
|
+
}, "strict", z.ZodTypeAny, {
|
|
2378
|
+
disable_model_invocation?: boolean | undefined;
|
|
2379
|
+
user_invocable?: boolean | undefined;
|
|
2380
|
+
context?: string | undefined;
|
|
2381
|
+
model?: string | undefined;
|
|
2382
|
+
argument_hint?: string | undefined;
|
|
2383
|
+
}, {
|
|
2384
|
+
disable_model_invocation?: boolean | undefined;
|
|
2385
|
+
user_invocable?: boolean | undefined;
|
|
2386
|
+
context?: string | undefined;
|
|
2387
|
+
model?: string | undefined;
|
|
2388
|
+
argument_hint?: string | undefined;
|
|
2389
|
+
}>>;
|
|
1976
2390
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1977
2391
|
claude_code: z.ZodOptional<z.ZodObject<{
|
|
1978
2392
|
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1982,17 +2396,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
1982
2396
|
model: z.ZodOptional<z.ZodString>;
|
|
1983
2397
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
1984
2398
|
}, "strict", z.ZodTypeAny, {
|
|
2399
|
+
agent?: string | undefined;
|
|
1985
2400
|
disable_model_invocation?: boolean | undefined;
|
|
1986
2401
|
user_invocable?: boolean | undefined;
|
|
1987
2402
|
context?: string | undefined;
|
|
1988
|
-
agent?: string | undefined;
|
|
1989
2403
|
model?: string | undefined;
|
|
1990
2404
|
argument_hint?: string | undefined;
|
|
1991
2405
|
}, {
|
|
2406
|
+
agent?: string | undefined;
|
|
1992
2407
|
disable_model_invocation?: boolean | undefined;
|
|
1993
2408
|
user_invocable?: boolean | undefined;
|
|
1994
2409
|
context?: string | undefined;
|
|
1995
|
-
agent?: string | undefined;
|
|
1996
2410
|
model?: string | undefined;
|
|
1997
2411
|
argument_hint?: string | undefined;
|
|
1998
2412
|
}>>;
|
|
@@ -2021,6 +2435,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2021
2435
|
brand_color?: string | undefined;
|
|
2022
2436
|
default_prompt?: string | undefined;
|
|
2023
2437
|
}>>;
|
|
2438
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
2439
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
2440
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
2441
|
+
context: z.ZodOptional<z.ZodString>;
|
|
2442
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2443
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2444
|
+
}, "strict", z.ZodTypeAny, {
|
|
2445
|
+
disable_model_invocation?: boolean | undefined;
|
|
2446
|
+
user_invocable?: boolean | undefined;
|
|
2447
|
+
context?: string | undefined;
|
|
2448
|
+
model?: string | undefined;
|
|
2449
|
+
argument_hint?: string | undefined;
|
|
2450
|
+
}, {
|
|
2451
|
+
disable_model_invocation?: boolean | undefined;
|
|
2452
|
+
user_invocable?: boolean | undefined;
|
|
2453
|
+
context?: string | undefined;
|
|
2454
|
+
model?: string | undefined;
|
|
2455
|
+
argument_hint?: string | undefined;
|
|
2456
|
+
}>>;
|
|
2024
2457
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2025
2458
|
}, "strip", z.ZodTypeAny, {
|
|
2026
2459
|
name: string;
|
|
@@ -2046,17 +2479,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2046
2479
|
model: z.ZodOptional<z.ZodString>;
|
|
2047
2480
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2048
2481
|
}, "strict", z.ZodTypeAny, {
|
|
2482
|
+
agent?: string | undefined;
|
|
2049
2483
|
disable_model_invocation?: boolean | undefined;
|
|
2050
2484
|
user_invocable?: boolean | undefined;
|
|
2051
2485
|
context?: string | undefined;
|
|
2052
|
-
agent?: string | undefined;
|
|
2053
2486
|
model?: string | undefined;
|
|
2054
2487
|
argument_hint?: string | undefined;
|
|
2055
2488
|
}, {
|
|
2489
|
+
agent?: string | undefined;
|
|
2056
2490
|
disable_model_invocation?: boolean | undefined;
|
|
2057
2491
|
user_invocable?: boolean | undefined;
|
|
2058
2492
|
context?: string | undefined;
|
|
2059
|
-
agent?: string | undefined;
|
|
2060
2493
|
model?: string | undefined;
|
|
2061
2494
|
argument_hint?: string | undefined;
|
|
2062
2495
|
}>>;
|
|
@@ -2085,6 +2518,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2085
2518
|
brand_color?: string | undefined;
|
|
2086
2519
|
default_prompt?: string | undefined;
|
|
2087
2520
|
}>>;
|
|
2521
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
2522
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
2523
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
2524
|
+
context: z.ZodOptional<z.ZodString>;
|
|
2525
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2526
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2527
|
+
}, "strict", z.ZodTypeAny, {
|
|
2528
|
+
disable_model_invocation?: boolean | undefined;
|
|
2529
|
+
user_invocable?: boolean | undefined;
|
|
2530
|
+
context?: string | undefined;
|
|
2531
|
+
model?: string | undefined;
|
|
2532
|
+
argument_hint?: string | undefined;
|
|
2533
|
+
}, {
|
|
2534
|
+
disable_model_invocation?: boolean | undefined;
|
|
2535
|
+
user_invocable?: boolean | undefined;
|
|
2536
|
+
context?: string | undefined;
|
|
2537
|
+
model?: string | undefined;
|
|
2538
|
+
argument_hint?: string | undefined;
|
|
2539
|
+
}>>;
|
|
2088
2540
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2089
2541
|
}, {
|
|
2090
2542
|
name: string;
|
|
@@ -2110,17 +2562,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2110
2562
|
model: z.ZodOptional<z.ZodString>;
|
|
2111
2563
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2112
2564
|
}, "strict", z.ZodTypeAny, {
|
|
2565
|
+
agent?: string | undefined;
|
|
2113
2566
|
disable_model_invocation?: boolean | undefined;
|
|
2114
2567
|
user_invocable?: boolean | undefined;
|
|
2115
2568
|
context?: string | undefined;
|
|
2116
|
-
agent?: string | undefined;
|
|
2117
2569
|
model?: string | undefined;
|
|
2118
2570
|
argument_hint?: string | undefined;
|
|
2119
2571
|
}, {
|
|
2572
|
+
agent?: string | undefined;
|
|
2120
2573
|
disable_model_invocation?: boolean | undefined;
|
|
2121
2574
|
user_invocable?: boolean | undefined;
|
|
2122
2575
|
context?: string | undefined;
|
|
2123
|
-
agent?: string | undefined;
|
|
2124
2576
|
model?: string | undefined;
|
|
2125
2577
|
argument_hint?: string | undefined;
|
|
2126
2578
|
}>>;
|
|
@@ -2149,6 +2601,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2149
2601
|
brand_color?: string | undefined;
|
|
2150
2602
|
default_prompt?: string | undefined;
|
|
2151
2603
|
}>>;
|
|
2604
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
2605
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
2606
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
2607
|
+
context: z.ZodOptional<z.ZodString>;
|
|
2608
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2609
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2610
|
+
}, "strict", z.ZodTypeAny, {
|
|
2611
|
+
disable_model_invocation?: boolean | undefined;
|
|
2612
|
+
user_invocable?: boolean | undefined;
|
|
2613
|
+
context?: string | undefined;
|
|
2614
|
+
model?: string | undefined;
|
|
2615
|
+
argument_hint?: string | undefined;
|
|
2616
|
+
}, {
|
|
2617
|
+
disable_model_invocation?: boolean | undefined;
|
|
2618
|
+
user_invocable?: boolean | undefined;
|
|
2619
|
+
context?: string | undefined;
|
|
2620
|
+
model?: string | undefined;
|
|
2621
|
+
argument_hint?: string | undefined;
|
|
2622
|
+
}>>;
|
|
2152
2623
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2153
2624
|
}>, "many">>;
|
|
2154
2625
|
includes: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2196,17 +2667,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2196
2667
|
model: z.ZodOptional<z.ZodString>;
|
|
2197
2668
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2198
2669
|
}, "strict", z.ZodTypeAny, {
|
|
2670
|
+
agent?: string | undefined;
|
|
2199
2671
|
disable_model_invocation?: boolean | undefined;
|
|
2200
2672
|
user_invocable?: boolean | undefined;
|
|
2201
2673
|
context?: string | undefined;
|
|
2202
|
-
agent?: string | undefined;
|
|
2203
2674
|
model?: string | undefined;
|
|
2204
2675
|
argument_hint?: string | undefined;
|
|
2205
2676
|
}, {
|
|
2677
|
+
agent?: string | undefined;
|
|
2206
2678
|
disable_model_invocation?: boolean | undefined;
|
|
2207
2679
|
user_invocable?: boolean | undefined;
|
|
2208
2680
|
context?: string | undefined;
|
|
2209
|
-
agent?: string | undefined;
|
|
2210
2681
|
model?: string | undefined;
|
|
2211
2682
|
argument_hint?: string | undefined;
|
|
2212
2683
|
}>>;
|
|
@@ -2235,16 +2706,30 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2235
2706
|
brand_color?: string | undefined;
|
|
2236
2707
|
default_prompt?: string | undefined;
|
|
2237
2708
|
}>>;
|
|
2709
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
2710
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
2711
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
2712
|
+
context: z.ZodOptional<z.ZodString>;
|
|
2713
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2714
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2715
|
+
}, "strict", z.ZodTypeAny, {
|
|
2716
|
+
disable_model_invocation?: boolean | undefined;
|
|
2717
|
+
user_invocable?: boolean | undefined;
|
|
2718
|
+
context?: string | undefined;
|
|
2719
|
+
model?: string | undefined;
|
|
2720
|
+
argument_hint?: string | undefined;
|
|
2721
|
+
}, {
|
|
2722
|
+
disable_model_invocation?: boolean | undefined;
|
|
2723
|
+
user_invocable?: boolean | undefined;
|
|
2724
|
+
context?: string | undefined;
|
|
2725
|
+
model?: string | undefined;
|
|
2726
|
+
argument_hint?: string | undefined;
|
|
2727
|
+
}>>;
|
|
2238
2728
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2239
2729
|
}[];
|
|
2240
2730
|
kynetic_meta: string;
|
|
2241
2731
|
agents: {
|
|
2242
2732
|
name: string;
|
|
2243
|
-
_ulid: string;
|
|
2244
|
-
id: string;
|
|
2245
|
-
capabilities: string[];
|
|
2246
|
-
tools: string[];
|
|
2247
|
-
conventions: string[];
|
|
2248
2733
|
dispatch: {
|
|
2249
2734
|
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
2250
2735
|
filter?: {
|
|
@@ -2253,11 +2738,26 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2253
2738
|
priority?: number | undefined;
|
|
2254
2739
|
} | undefined;
|
|
2255
2740
|
}[];
|
|
2741
|
+
_ulid: string;
|
|
2742
|
+
id: string;
|
|
2743
|
+
capabilities: string[];
|
|
2744
|
+
tools: string[];
|
|
2745
|
+
conventions: string[];
|
|
2256
2746
|
skills: string[];
|
|
2257
2747
|
concurrency: {
|
|
2258
2748
|
max_concurrent: number;
|
|
2259
2749
|
};
|
|
2260
2750
|
auto_approve: boolean;
|
|
2751
|
+
bootstrap?: {
|
|
2752
|
+
steps: {
|
|
2753
|
+
run: string;
|
|
2754
|
+
name?: string | undefined;
|
|
2755
|
+
idempotent?: boolean | undefined;
|
|
2756
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
2757
|
+
allow_tracked_changes?: boolean | undefined;
|
|
2758
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
2759
|
+
}[];
|
|
2760
|
+
} | undefined;
|
|
2261
2761
|
tags?: string[] | undefined;
|
|
2262
2762
|
automation?: "eligible" | "ineligible" | undefined;
|
|
2263
2763
|
description?: string | undefined;
|
|
@@ -2271,13 +2771,11 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2271
2771
|
max_tasks?: number | undefined;
|
|
2272
2772
|
max_retries?: number | undefined;
|
|
2273
2773
|
timeout_minutes?: number | undefined;
|
|
2774
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
2274
2775
|
} | undefined;
|
|
2275
2776
|
prompt_template?: string | undefined;
|
|
2276
2777
|
}[];
|
|
2277
2778
|
workflows: {
|
|
2278
|
-
_ulid: string;
|
|
2279
|
-
id: string;
|
|
2280
|
-
trigger: string;
|
|
2281
2779
|
steps: {
|
|
2282
2780
|
content: string;
|
|
2283
2781
|
type: "decision" | "check" | "action";
|
|
@@ -2296,6 +2794,9 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2296
2794
|
required?: boolean | undefined;
|
|
2297
2795
|
}[] | undefined;
|
|
2298
2796
|
}[];
|
|
2797
|
+
_ulid: string;
|
|
2798
|
+
id: string;
|
|
2799
|
+
trigger: string;
|
|
2299
2800
|
tags?: string[] | undefined;
|
|
2300
2801
|
description?: string | undefined;
|
|
2301
2802
|
mode?: "interactive" | "loop" | undefined;
|
|
@@ -2305,8 +2806,8 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2305
2806
|
observations: {
|
|
2306
2807
|
content: string;
|
|
2307
2808
|
type: "friction" | "success" | "question" | "idea";
|
|
2308
|
-
_ulid: string;
|
|
2309
2809
|
created_at: string;
|
|
2810
|
+
_ulid: string;
|
|
2310
2811
|
resolved: boolean;
|
|
2311
2812
|
workflow_ref?: string | undefined;
|
|
2312
2813
|
author?: string | undefined;
|
|
@@ -2359,17 +2860,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2359
2860
|
model: z.ZodOptional<z.ZodString>;
|
|
2360
2861
|
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2361
2862
|
}, "strict", z.ZodTypeAny, {
|
|
2863
|
+
agent?: string | undefined;
|
|
2362
2864
|
disable_model_invocation?: boolean | undefined;
|
|
2363
2865
|
user_invocable?: boolean | undefined;
|
|
2364
2866
|
context?: string | undefined;
|
|
2365
|
-
agent?: string | undefined;
|
|
2366
2867
|
model?: string | undefined;
|
|
2367
2868
|
argument_hint?: string | undefined;
|
|
2368
2869
|
}, {
|
|
2870
|
+
agent?: string | undefined;
|
|
2369
2871
|
disable_model_invocation?: boolean | undefined;
|
|
2370
2872
|
user_invocable?: boolean | undefined;
|
|
2371
2873
|
context?: string | undefined;
|
|
2372
|
-
agent?: string | undefined;
|
|
2373
2874
|
model?: string | undefined;
|
|
2374
2875
|
argument_hint?: string | undefined;
|
|
2375
2876
|
}>>;
|
|
@@ -2398,6 +2899,25 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2398
2899
|
brand_color?: string | undefined;
|
|
2399
2900
|
default_prompt?: string | undefined;
|
|
2400
2901
|
}>>;
|
|
2902
|
+
droid: z.ZodOptional<z.ZodObject<{
|
|
2903
|
+
disable_model_invocation: z.ZodOptional<z.ZodBoolean>;
|
|
2904
|
+
user_invocable: z.ZodOptional<z.ZodBoolean>;
|
|
2905
|
+
context: z.ZodOptional<z.ZodString>;
|
|
2906
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2907
|
+
argument_hint: z.ZodOptional<z.ZodString>;
|
|
2908
|
+
}, "strict", z.ZodTypeAny, {
|
|
2909
|
+
disable_model_invocation?: boolean | undefined;
|
|
2910
|
+
user_invocable?: boolean | undefined;
|
|
2911
|
+
context?: string | undefined;
|
|
2912
|
+
model?: string | undefined;
|
|
2913
|
+
argument_hint?: string | undefined;
|
|
2914
|
+
}, {
|
|
2915
|
+
disable_model_invocation?: boolean | undefined;
|
|
2916
|
+
user_invocable?: boolean | undefined;
|
|
2917
|
+
context?: string | undefined;
|
|
2918
|
+
model?: string | undefined;
|
|
2919
|
+
argument_hint?: string | undefined;
|
|
2920
|
+
}>>;
|
|
2401
2921
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2402
2922
|
}[] | undefined;
|
|
2403
2923
|
kynetic_meta?: string | undefined;
|
|
@@ -2405,6 +2925,24 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2405
2925
|
name: string;
|
|
2406
2926
|
_ulid: string;
|
|
2407
2927
|
id: string;
|
|
2928
|
+
dispatch?: {
|
|
2929
|
+
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
2930
|
+
filter?: {
|
|
2931
|
+
tags?: string[] | undefined;
|
|
2932
|
+
automation?: "eligible" | "ineligible" | undefined;
|
|
2933
|
+
priority?: number | undefined;
|
|
2934
|
+
} | undefined;
|
|
2935
|
+
}[] | undefined;
|
|
2936
|
+
bootstrap?: {
|
|
2937
|
+
steps?: {
|
|
2938
|
+
run: string;
|
|
2939
|
+
name?: string | undefined;
|
|
2940
|
+
idempotent?: boolean | undefined;
|
|
2941
|
+
roles?: ("worker" | "reviewer")[] | undefined;
|
|
2942
|
+
allow_tracked_changes?: boolean | undefined;
|
|
2943
|
+
reviewer_rerun_allowed?: boolean | undefined;
|
|
2944
|
+
}[] | undefined;
|
|
2945
|
+
} | undefined;
|
|
2408
2946
|
tags?: string[] | undefined;
|
|
2409
2947
|
automation?: "eligible" | "ineligible" | undefined;
|
|
2410
2948
|
description?: string | undefined;
|
|
@@ -2417,19 +2955,12 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2417
2955
|
} | undefined;
|
|
2418
2956
|
conventions?: string[] | undefined;
|
|
2419
2957
|
adapter?: string | undefined;
|
|
2420
|
-
dispatch?: {
|
|
2421
|
-
on: "task.in_progress" | "task.ready" | "task.needs_work" | "task.pending_review";
|
|
2422
|
-
filter?: {
|
|
2423
|
-
tags?: string[] | undefined;
|
|
2424
|
-
automation?: "eligible" | "ineligible" | undefined;
|
|
2425
|
-
priority?: number | undefined;
|
|
2426
|
-
} | undefined;
|
|
2427
|
-
}[] | undefined;
|
|
2428
2958
|
skills?: string[] | undefined;
|
|
2429
2959
|
budget?: {
|
|
2430
2960
|
max_tasks?: number | undefined;
|
|
2431
2961
|
max_retries?: number | undefined;
|
|
2432
2962
|
timeout_minutes?: number | undefined;
|
|
2963
|
+
initial_response_timeout_seconds?: number | undefined;
|
|
2433
2964
|
} | undefined;
|
|
2434
2965
|
concurrency?: {
|
|
2435
2966
|
max_concurrent?: number | undefined;
|
|
@@ -2441,9 +2972,6 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2441
2972
|
_ulid: string;
|
|
2442
2973
|
id: string;
|
|
2443
2974
|
trigger: string;
|
|
2444
|
-
tags?: string[] | undefined;
|
|
2445
|
-
description?: string | undefined;
|
|
2446
|
-
mode?: "interactive" | "loop" | undefined;
|
|
2447
2975
|
steps?: {
|
|
2448
2976
|
content: string;
|
|
2449
2977
|
type: "decision" | "check" | "action";
|
|
@@ -2462,14 +2990,17 @@ export declare const MetaManifestSchema: z.ZodObject<{
|
|
|
2462
2990
|
required?: boolean | undefined;
|
|
2463
2991
|
}[] | undefined;
|
|
2464
2992
|
}[] | undefined;
|
|
2993
|
+
tags?: string[] | undefined;
|
|
2994
|
+
description?: string | undefined;
|
|
2995
|
+
mode?: "interactive" | "loop" | undefined;
|
|
2465
2996
|
enforcement?: "advisory" | "strict" | undefined;
|
|
2466
2997
|
based_on?: string | undefined;
|
|
2467
2998
|
}[] | undefined;
|
|
2468
2999
|
observations?: {
|
|
2469
3000
|
content: string;
|
|
2470
3001
|
type: "friction" | "success" | "question" | "idea";
|
|
2471
|
-
_ulid: string;
|
|
2472
3002
|
created_at: string;
|
|
3003
|
+
_ulid: string;
|
|
2473
3004
|
workflow_ref?: string | undefined;
|
|
2474
3005
|
author?: string | undefined;
|
|
2475
3006
|
resolved?: boolean | undefined;
|
|
@@ -2500,6 +3031,7 @@ export type Observation = z.infer<typeof ObservationSchema>;
|
|
|
2500
3031
|
export type SkillOrigin = z.infer<typeof SkillOriginSchema>;
|
|
2501
3032
|
export type ClaudeCodeConfig = z.infer<typeof ClaudeCodeConfigSchema>;
|
|
2502
3033
|
export type CodexConfig = z.infer<typeof CodexConfigSchema>;
|
|
3034
|
+
export type DroidConfig = z.infer<typeof DroidConfigSchema>;
|
|
2503
3035
|
export type PlatformConfig = z.infer<typeof PlatformConfigSchema>;
|
|
2504
3036
|
export type Skill = z.infer<typeof SkillSchema>;
|
|
2505
3037
|
export type SessionContext = z.infer<typeof SessionContextSchema>;
|