agentplane 0.3.14 → 0.3.16
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/assets/policy/incidents.md +7 -0
- package/bin/agentplane.js +1 -1
- package/bin/framework-dev-contract.js +1 -0
- package/dist/.build-manifest.json +508 -323
- package/dist/backends/task-backend/load.d.ts.map +1 -1
- package/dist/backends/task-backend/load.js +32 -19
- package/dist/backends/task-backend/local-backend-doc.d.ts.map +1 -1
- package/dist/backends/task-backend/local-backend-doc.js +1 -1
- package/dist/backends/task-backend/redmine/backend-runtime.d.ts +147 -0
- package/dist/backends/task-backend/redmine/backend-runtime.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-runtime.js +258 -0
- package/dist/backends/task-backend/redmine/backend-sync/context.d.ts +44 -0
- package/dist/backends/task-backend/redmine/backend-sync/context.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/context.js +8 -0
- package/dist/backends/task-backend/redmine/backend-sync/ids.d.ts +6 -0
- package/dist/backends/task-backend/redmine/backend-sync/ids.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/ids.js +21 -0
- package/dist/backends/task-backend/redmine/backend-sync/migration.d.ts +4 -0
- package/dist/backends/task-backend/redmine/backend-sync/migration.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/migration.js +87 -0
- package/dist/backends/task-backend/redmine/backend-sync/status.d.ts +10 -0
- package/dist/backends/task-backend/redmine/backend-sync/status.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/status.js +78 -0
- package/dist/backends/task-backend/redmine/backend-sync/sync.d.ts +12 -0
- package/dist/backends/task-backend/redmine/backend-sync/sync.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/sync.js +82 -0
- package/dist/backends/task-backend/redmine/backend-sync/write.d.ts +5 -0
- package/dist/backends/task-backend/redmine/backend-sync/write.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/write.js +100 -0
- package/dist/backends/task-backend/redmine/backend-sync.d.ts +6 -66
- package/dist/backends/task-backend/redmine/backend-sync.d.ts.map +1 -1
- package/dist/backends/task-backend/redmine/backend-sync.js +5 -367
- package/dist/backends/task-backend/redmine-backend.d.ts +2 -33
- package/dist/backends/task-backend/redmine-backend.d.ts.map +1 -1
- package/dist/backends/task-backend/redmine-backend.js +26 -241
- package/dist/backends/task-backend/shared/errors.d.ts +12 -0
- package/dist/backends/task-backend/shared/errors.d.ts.map +1 -1
- package/dist/backends/task-backend/shared/errors.js +12 -0
- package/dist/cli/archive.d.ts.map +1 -1
- package/dist/cli/archive.js +3 -5
- package/dist/cli/error-map.d.ts +7 -1
- package/dist/cli/error-map.d.ts.map +1 -1
- package/dist/cli/error-map.js +231 -19
- package/dist/cli/exit-codes.d.ts +14 -2
- package/dist/cli/exit-codes.d.ts.map +1 -1
- package/dist/cli/exit-codes.js +24 -11
- package/dist/cli/output.d.ts +3 -0
- package/dist/cli/output.d.ts.map +1 -1
- package/dist/cli/output.js +25 -14
- package/dist/cli/prompts.d.ts.map +1 -1
- package/dist/cli/prompts.js +44 -0
- package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/core.js +34 -76
- package/dist/cli/run-cli/command-catalog/lifecycle.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/lifecycle.js +23 -26
- package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/project.js +39 -54
- package/dist/cli/run-cli/command-catalog/shared.d.ts +15 -3
- package/dist/cli/run-cli/command-catalog/shared.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/shared.js +19 -6
- package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/task.js +63 -57
- package/dist/cli/run-cli/command-loaders.d.ts +174 -0
- package/dist/cli/run-cli/command-loaders.d.ts.map +1 -0
- package/dist/cli/run-cli/command-loaders.js +128 -0
- package/dist/cli/run-cli/commands/init/model.d.ts +42 -0
- package/dist/cli/run-cli/commands/init/model.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/orchestrate.d.ts +9 -0
- package/dist/cli/run-cli/commands/init/orchestrate.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/orchestrate.js +321 -0
- package/dist/cli/run-cli/commands/init/parsers.d.ts +5 -0
- package/dist/cli/run-cli/commands/init/parsers.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/parsers.js +36 -0
- package/dist/cli/run-cli/commands/init/presets.d.ts +15 -0
- package/dist/cli/run-cli/commands/init/presets.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/presets.js +63 -0
- package/dist/cli/run-cli/commands/init/spec.d.ts +5 -0
- package/dist/cli/run-cli/commands/init/spec.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/spec.js +212 -0
- package/dist/cli/run-cli/commands/init/write-config.d.ts +1 -0
- package/dist/cli/run-cli/commands/init/write-config.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init/write-config.js +1 -0
- package/dist/cli/run-cli/commands/init/write-gitignore.js +1 -1
- package/dist/cli/run-cli/commands/init.d.ts +1 -28
- package/dist/cli/run-cli/commands/init.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init.js +1 -596
- package/dist/cli/run-cli/update-warning.d.ts +1 -0
- package/dist/cli/run-cli/update-warning.d.ts.map +1 -1
- package/dist/cli/run-cli/update-warning.js +10 -2
- package/dist/cli/run-cli.d.ts.map +1 -1
- package/dist/cli/run-cli.js +1 -2
- package/dist/cli/spec/errors.d.ts +13 -1
- package/dist/cli/spec/errors.d.ts.map +1 -1
- package/dist/cli/spec/errors.js +14 -4
- package/dist/commands/backend.d.ts.map +1 -1
- package/dist/commands/backend.js +66 -118
- package/dist/commands/block.spec.js +1 -1
- package/dist/commands/branch/work-start.js +1 -1
- package/dist/commands/commit.spec.js +1 -1
- package/dist/commands/doctor/branch-pr.js +1 -1
- package/dist/commands/doctor/fixes.js +1 -1
- package/dist/commands/doctor/runtime.d.ts.map +1 -1
- package/dist/commands/doctor/runtime.js +2 -2
- package/dist/commands/doctor/workspace.js +1 -1
- package/dist/commands/finish.spec.js +1 -1
- package/dist/commands/guard/commit.command.js +1 -1
- package/dist/commands/guard/impl/clean.d.ts +6 -0
- package/dist/commands/guard/impl/clean.d.ts.map +1 -0
- package/dist/commands/guard/impl/clean.js +29 -0
- package/dist/commands/guard/impl/close-dirt.d.ts +6 -0
- package/dist/commands/guard/impl/close-dirt.d.ts.map +1 -0
- package/dist/commands/guard/impl/close-dirt.js +56 -0
- package/dist/commands/guard/impl/commands.d.ts +4 -36
- package/dist/commands/guard/impl/commands.d.ts.map +1 -1
- package/dist/commands/guard/impl/commands.js +4 -549
- package/dist/commands/guard/impl/comment-commit.js +1 -1
- package/dist/commands/guard/impl/commit-diagnostics.d.ts +4 -0
- package/dist/commands/guard/impl/commit-diagnostics.d.ts.map +1 -0
- package/dist/commands/guard/impl/commit-diagnostics.js +150 -0
- package/dist/commands/guard/impl/commit.d.ts +25 -0
- package/dist/commands/guard/impl/commit.d.ts.map +1 -0
- package/dist/commands/guard/impl/commit.js +366 -0
- package/dist/commands/guard/impl/guard-commit.d.ts +3 -0
- package/dist/commands/guard/impl/guard-commit.d.ts.map +1 -0
- package/dist/commands/guard/impl/guard-commit.js +21 -0
- package/dist/commands/guard/impl/policy.d.ts +1 -0
- package/dist/commands/guard/impl/policy.d.ts.map +1 -1
- package/dist/commands/guard/impl/policy.js +9 -2
- package/dist/commands/guard/impl/suggest.d.ts +6 -0
- package/dist/commands/guard/impl/suggest.d.ts.map +1 -0
- package/dist/commands/guard/impl/suggest.js +33 -0
- package/dist/commands/hooks/index.d.ts +3 -0
- package/dist/commands/hooks/index.d.ts.map +1 -1
- package/dist/commands/hooks/index.js +27 -10
- package/dist/commands/pr/integrate/cmd.js +1 -1
- package/dist/commands/pr/integrate/internal/prepare.js +1 -1
- package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -1
- package/dist/commands/pr/internal/auto-commit.js +2 -5
- package/dist/commands/pr/internal/gh-api.d.ts.map +1 -1
- package/dist/commands/pr/internal/gh-api.js +15 -8
- package/dist/commands/pr/internal/sync-branch.d.ts +0 -1
- package/dist/commands/pr/internal/sync-branch.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync-branch.js +2 -5
- package/dist/commands/pr/internal/sync.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync.js +30 -0
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +98 -8
- package/dist/commands/recipes/impl/resolver.js +1 -1
- package/dist/commands/recipes/impl/version.js +1 -1
- package/dist/commands/release/apply.command.js +1 -1
- package/dist/commands/release/apply.mutation.d.ts +1 -0
- package/dist/commands/release/apply.mutation.d.ts.map +1 -1
- package/dist/commands/release/apply.mutation.js +5 -1
- package/dist/commands/release/apply.pipeline/finalize.d.ts +21 -0
- package/dist/commands/release/apply.pipeline/finalize.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/finalize.js +80 -0
- package/dist/commands/release/apply.pipeline/mutation.d.ts +18 -0
- package/dist/commands/release/apply.pipeline/mutation.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/mutation.js +78 -0
- package/dist/commands/release/apply.pipeline/preflight.d.ts +25 -0
- package/dist/commands/release/apply.pipeline/preflight.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/preflight.js +69 -0
- package/dist/commands/release/apply.pipeline/shared.d.ts +2 -0
- package/dist/commands/release/apply.pipeline/shared.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/shared.js +5 -0
- package/dist/commands/release/apply.pipeline/state.d.ts +25 -0
- package/dist/commands/release/apply.pipeline/state.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/state.js +129 -0
- package/dist/commands/release/apply.pipeline.d.ts +1 -1
- package/dist/commands/release/apply.pipeline.d.ts.map +1 -1
- package/dist/commands/release/apply.pipeline.js +4 -347
- package/dist/commands/release/apply.preflight.d.ts +9 -6
- package/dist/commands/release/apply.preflight.d.ts.map +1 -1
- package/dist/commands/release/apply.preflight.js +71 -51
- package/dist/commands/runtime.command.d.ts +2 -2
- package/dist/commands/runtime.command.d.ts.map +1 -1
- package/dist/commands/runtime.command.js +2 -2
- package/dist/commands/scenario/impl/commands.d.ts.map +1 -1
- package/dist/commands/scenario/impl/commands.js +52 -39
- package/dist/commands/scenario/impl/report.d.ts.map +1 -1
- package/dist/commands/scenario/impl/report.js +4 -7
- package/dist/commands/shared/allow-prefix-policy.d.ts.map +1 -0
- package/dist/{shared → commands/shared}/allow-prefix-policy.js +1 -1
- package/dist/commands/shared/comment-format.d.ts.map +1 -0
- package/dist/commands/shared/diagnostics.d.ts.map +1 -0
- package/dist/commands/shared/git-context.d.ts +1 -27
- package/dist/commands/shared/git-context.d.ts.map +1 -1
- package/dist/commands/shared/git-context.js +1 -156
- package/dist/commands/shared/git-diff.d.ts +1 -10
- package/dist/commands/shared/git-diff.d.ts.map +1 -1
- package/dist/commands/shared/git-diff.js +1 -49
- package/dist/commands/shared/git-ops.d.ts +1 -14
- package/dist/commands/shared/git-ops.d.ts.map +1 -1
- package/dist/commands/shared/git-ops.js +20 -150
- package/dist/commands/shared/git-worktree.d.ts +1 -9
- package/dist/commands/shared/git-worktree.d.ts.map +1 -1
- package/dist/commands/shared/git-worktree.js +1 -68
- package/dist/commands/shared/git.d.ts +1 -3
- package/dist/commands/shared/git.d.ts.map +1 -1
- package/dist/commands/shared/git.js +1 -14
- package/dist/commands/shared/policy-deny.d.ts +1 -1
- package/dist/commands/shared/reconcile-check.js +1 -1
- package/dist/commands/shared/task-backend.d.ts.map +1 -1
- package/dist/commands/shared/task-backend.js +24 -2
- package/dist/commands/shared/task-store/intents.d.ts.map +1 -1
- package/dist/commands/shared/task-store/intents.js +1 -1
- package/dist/commands/start.spec.js +1 -1
- package/dist/commands/task/close-tail-state.d.ts +7 -0
- package/dist/commands/task/close-tail-state.d.ts.map +1 -0
- package/dist/commands/task/close-tail-state.js +18 -0
- package/dist/commands/task/derive.js +1 -1
- package/dist/commands/task/finish-close.d.ts +22 -0
- package/dist/commands/task/finish-close.d.ts.map +1 -0
- package/dist/commands/task/finish-close.js +119 -0
- package/dist/commands/task/finish-command.d.ts +3 -0
- package/dist/commands/task/finish-command.d.ts.map +1 -0
- package/dist/commands/task/finish-command.js +56 -0
- package/dist/commands/task/finish-execute.d.ts +8 -0
- package/dist/commands/task/finish-execute.d.ts.map +1 -0
- package/dist/commands/task/finish-execute.js +272 -0
- package/dist/commands/task/finish-findings.d.ts +20 -0
- package/dist/commands/task/finish-findings.d.ts.map +1 -0
- package/dist/commands/task/finish-findings.js +27 -0
- package/dist/commands/task/finish-plan.d.ts +7 -0
- package/dist/commands/task/finish-plan.d.ts.map +1 -0
- package/dist/commands/task/finish-plan.js +157 -0
- package/dist/commands/task/finish-types.d.ts +69 -0
- package/dist/commands/task/finish-types.d.ts.map +1 -0
- package/dist/commands/task/finish.d.ts +1 -42
- package/dist/commands/task/finish.d.ts.map +1 -1
- package/dist/commands/task/finish.js +1 -527
- package/dist/commands/task/hosted-close-pr.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close-pr.command.js +29 -4
- package/dist/commands/task/hosted-close.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close.command.js +23 -2
- package/dist/commands/task/hosted-merge-sync/builders.d.ts +35 -0
- package/dist/commands/task/hosted-merge-sync/builders.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/builders.js +148 -0
- package/dist/commands/task/hosted-merge-sync/github.d.ts +10 -0
- package/dist/commands/task/hosted-merge-sync/github.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/github.js +113 -0
- package/dist/commands/task/hosted-merge-sync/local-branch.d.ts +12 -0
- package/dist/commands/task/hosted-merge-sync/local-branch.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/local-branch.js +143 -0
- package/dist/commands/task/hosted-merge-sync/model.d.ts +47 -0
- package/dist/commands/task/hosted-merge-sync/model.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/pr-meta.d.ts +12 -0
- package/dist/commands/task/hosted-merge-sync/pr-meta.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/pr-meta.js +26 -0
- package/dist/commands/task/hosted-merge-sync.d.ts +5 -63
- package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
- package/dist/commands/task/hosted-merge-sync.js +10 -444
- package/dist/commands/task/new.js +1 -1
- package/dist/commands/task/set-status.command.js +1 -1
- package/dist/commands/task/shared/direct-work-lock.d.ts.map +1 -0
- package/dist/commands/task/shared/git-log.d.ts.map +1 -0
- package/dist/commands/task/shared/transitions.d.ts +1 -1
- package/dist/commands/task/shared/transitions.d.ts.map +1 -1
- package/dist/commands/task/shared/transitions.js +4 -6
- package/dist/commands/upgrade/apply.js +1 -1
- package/dist/commands/workflow-playbook.command.d.ts.map +1 -1
- package/dist/commands/workflow-playbook.command.js +8 -7
- package/dist/harness/hooks-lifecycle.d.ts.map +1 -1
- package/dist/harness/hooks-lifecycle.js +11 -7
- package/dist/meta/release.d.ts.map +1 -1
- package/dist/meta/release.js +8 -4
- package/dist/policy/engine.d.ts +1 -1
- package/dist/policy/evaluate.d.ts +1 -1
- package/dist/policy/{types.d.ts → model.d.ts} +1 -1
- package/dist/policy/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/policy/result.d.ts +1 -1
- package/dist/policy/rules/allowlist.d.ts +1 -1
- package/dist/policy/rules/branch-pr-base.d.ts +1 -1
- package/dist/policy/rules/clean-tree.d.ts +1 -1
- package/dist/policy/rules/commit-subject.d.ts +1 -1
- package/dist/policy/rules/protected-paths.d.ts +1 -1
- package/dist/runner/adapters/base.d.ts +42 -0
- package/dist/runner/adapters/base.d.ts.map +1 -0
- package/dist/runner/adapters/base.js +107 -0
- package/dist/runner/adapters/codex-preparation.d.ts +7 -0
- package/dist/runner/adapters/codex-preparation.d.ts.map +1 -0
- package/dist/runner/adapters/codex-preparation.js +86 -0
- package/dist/runner/adapters/codex.d.ts.map +1 -1
- package/dist/runner/adapters/codex.js +30 -175
- package/dist/runner/adapters/custom-preparation.d.ts +9 -0
- package/dist/runner/adapters/custom-preparation.d.ts.map +1 -0
- package/dist/runner/adapters/custom-preparation.js +191 -0
- package/dist/runner/adapters/custom.d.ts.map +1 -1
- package/dist/runner/adapters/custom.js +26 -279
- package/dist/runner/process-supervision/run.d.ts +30 -0
- package/dist/runner/process-supervision/run.d.ts.map +1 -0
- package/dist/runner/process-supervision/run.js +349 -0
- package/dist/runner/process-supervision/signals.d.ts +16 -0
- package/dist/runner/process-supervision/signals.d.ts.map +1 -0
- package/dist/runner/process-supervision/signals.js +85 -0
- package/dist/runner/process-supervision/state.d.ts +10 -0
- package/dist/runner/process-supervision/state.d.ts.map +1 -0
- package/dist/runner/process-supervision/state.js +42 -0
- package/dist/runner/process-supervision/streams.d.ts +6 -0
- package/dist/runner/process-supervision/streams.d.ts.map +1 -0
- package/dist/runner/process-supervision/streams.js +23 -0
- package/dist/runner/process-supervision.d.ts +5 -47
- package/dist/runner/process-supervision.d.ts.map +1 -1
- package/dist/runner/process-supervision.js +3 -490
- package/dist/runner/usecases/scenario-materialize-task.js +1 -1
- package/dist/runtime/approvals/index.d.ts +1 -1
- package/dist/runtime/approvals/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/approvals/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/approvals/runtime.d.ts +1 -1
- package/dist/runtime/behavior/index.d.ts +1 -1
- package/dist/runtime/behavior/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/behavior/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/behavior/resolve.d.ts +1 -1
- package/dist/runtime/capabilities/backend.d.ts +1 -1
- package/dist/runtime/capabilities/index.d.ts +1 -1
- package/dist/runtime/capabilities/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/capabilities/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/capabilities/model.js +1 -0
- package/dist/runtime/capabilities/recipe.d.ts +1 -1
- package/dist/runtime/capabilities/registry.d.ts +1 -1
- package/dist/runtime/capabilities/runner.d.ts +1 -1
- package/dist/runtime/execution-context.d.ts.map +1 -1
- package/dist/runtime/execution-context.js +16 -0
- package/dist/runtime/execution-profile/index.d.ts +1 -1
- package/dist/runtime/execution-profile/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/execution-profile/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/execution-profile/model.js +1 -0
- package/dist/runtime/execution-profile/resolve.d.ts +1 -1
- package/dist/runtime/explain/index.d.ts +1 -1
- package/dist/runtime/explain/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/explain/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/explain/model.js +1 -0
- package/dist/runtime/explain/resolve.d.ts +1 -1
- package/dist/runtime/protocol/index.d.ts +1 -1
- package/dist/runtime/protocol/index.js +1 -1
- package/dist/runtime/protocol/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/protocol/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/protocol/resolve.d.ts +1 -1
- package/dist/runtime/protocol/resolve.js +1 -1
- package/dist/runtime/shared/repo-cli-version.d.ts.map +1 -0
- package/dist/{shared → runtime/shared}/repo-cli-version.js +1 -1
- package/dist/runtime/shared/runtime-artifacts.d.ts.map +1 -0
- package/dist/{shared → runtime/shared}/runtime-source.d.ts +1 -1
- package/dist/runtime/shared/runtime-source.d.ts.map +1 -0
- package/dist/{shared → runtime/shared}/runtime-source.js +1 -1
- package/dist/runtime/shared/version-compare.d.ts.map +1 -0
- package/dist/runtime/task-intake/resolve.js +1 -1
- package/dist/shared/errors.d.ts +52 -2
- package/dist/shared/errors.d.ts.map +1 -1
- package/dist/shared/errors.js +66 -4
- package/dist/shared/trace-events.d.ts +13 -0
- package/dist/shared/trace-events.d.ts.map +1 -0
- package/dist/shared/trace-events.js +17 -0
- package/dist/{shared/task-doc-conflicts.d.ts → task-doc/conflicts.d.ts} +1 -1
- package/dist/task-doc/conflicts.d.ts.map +1 -0
- package/dist/{shared/task-doc-conflicts.js → task-doc/conflicts.js} +1 -1
- package/dist/{shared/task-doc-state.d.ts → task-doc/state.d.ts} +1 -1
- package/dist/task-doc/state.d.ts.map +1 -0
- package/package.json +8 -8
- package/dist/cli/run-cli/error-guidance.d.ts +0 -9
- package/dist/cli/run-cli/error-guidance.d.ts.map +0 -1
- package/dist/cli/run-cli/error-guidance.js +0 -210
- package/dist/cli/run-cli.test-helpers.d.ts +0 -2
- package/dist/cli/run-cli.test-helpers.d.ts.map +0 -1
- package/dist/cli/run-cli.test-helpers.js +0 -1
- package/dist/commands/recipes.test-helpers.d.ts +0 -202
- package/dist/commands/recipes.test-helpers.d.ts.map +0 -1
- package/dist/commands/recipes.test-helpers.js +0 -483
- package/dist/commands/release.test-helpers.d.ts +0 -38
- package/dist/commands/release.test-helpers.d.ts.map +0 -1
- package/dist/commands/release.test-helpers.js +0 -55
- package/dist/commands/task.test-helpers.d.ts +0 -13
- package/dist/commands/task.test-helpers.d.ts.map +0 -1
- package/dist/commands/task.test-helpers.js +0 -65
- package/dist/runner/test-helpers.d.ts +0 -30
- package/dist/runner/test-helpers.d.ts.map +0 -1
- package/dist/runner/test-helpers.js +0 -97
- package/dist/shared/agent-emoji.d.ts +0 -5
- package/dist/shared/agent-emoji.d.ts.map +0 -1
- package/dist/shared/agent-emoji.js +0 -51
- package/dist/shared/allow-prefix-policy.d.ts.map +0 -1
- package/dist/shared/comment-format.d.ts.map +0 -1
- package/dist/shared/diagnostics.d.ts.map +0 -1
- package/dist/shared/direct-work-lock.d.ts.map +0 -1
- package/dist/shared/git-log.d.ts.map +0 -1
- package/dist/shared/repo-cli-version.d.ts.map +0 -1
- package/dist/shared/runtime-artifacts.d.ts.map +0 -1
- package/dist/shared/runtime-source.d.ts.map +0 -1
- package/dist/shared/task-doc-conflicts.d.ts.map +0 -1
- package/dist/shared/task-doc-state.d.ts.map +0 -1
- package/dist/shared/version-compare.d.ts.map +0 -1
- package/dist/testing/cli-harness/recipe-archives.d.ts +0 -28
- package/dist/testing/cli-harness/recipe-archives.d.ts.map +0 -1
- package/dist/testing/cli-harness/recipe-archives.js +0 -374
- package/dist/testing/cli-harness/stdio.d.ts +0 -26
- package/dist/testing/cli-harness/stdio.d.ts.map +0 -1
- package/dist/testing/cli-harness/stdio.js +0 -84
- package/dist/testing/cli-harness.d.ts +0 -25
- package/dist/testing/cli-harness.d.ts.map +0 -1
- package/dist/testing/cli-harness.js +0 -313
- package/dist/testing/index.d.ts +0 -2
- package/dist/testing/index.d.ts.map +0 -1
- package/dist/testing/index.js +0 -1
- /package/dist/{policy/types.js → cli/run-cli/commands/init/model.js} +0 -0
- /package/dist/{shared → commands/shared}/allow-prefix-policy.d.ts +0 -0
- /package/dist/{shared → commands/shared}/comment-format.d.ts +0 -0
- /package/dist/{shared → commands/shared}/comment-format.js +0 -0
- /package/dist/{shared → commands/shared}/diagnostics.d.ts +0 -0
- /package/dist/{shared → commands/shared}/diagnostics.js +0 -0
- /package/dist/{runtime/approvals/types.js → commands/task/finish-types.js} +0 -0
- /package/dist/{runtime/behavior/types.js → commands/task/hosted-merge-sync/model.js} +0 -0
- /package/dist/{shared → commands/task/shared}/direct-work-lock.d.ts +0 -0
- /package/dist/{shared → commands/task/shared}/direct-work-lock.js +0 -0
- /package/dist/{shared → commands/task/shared}/git-log.d.ts +0 -0
- /package/dist/{shared → commands/task/shared}/git-log.js +0 -0
- /package/dist/{runtime/capabilities/types.js → policy/model.js} +0 -0
- /package/dist/runtime/{execution-profile/types.js → approvals/model.js} +0 -0
- /package/dist/runtime/{explain/types.js → behavior/model.js} +0 -0
- /package/dist/runtime/protocol/{types.js → model.js} +0 -0
- /package/dist/{shared → runtime/shared}/repo-cli-version.d.ts +0 -0
- /package/dist/{shared → runtime/shared}/runtime-artifacts.d.ts +0 -0
- /package/dist/{shared → runtime/shared}/runtime-artifacts.js +0 -0
- /package/dist/{shared → runtime/shared}/version-compare.d.ts +0 -0
- /package/dist/{shared → runtime/shared}/version-compare.js +0 -0
- /package/dist/{shared/task-doc-state.js → task-doc/state.js} +0 -0
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { type RunDeps } from "./command-catalog/shared.js";
|
|
2
|
+
export declare const fromCommandsInit: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "initSpec" | "runInit", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
3
|
+
export declare const fromCommandsUpgradeCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "upgradeSpec" | "runUpgrade", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
4
|
+
export declare const fromCommandsReleaseReleaseCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "releaseSpec" | "runRelease", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
5
|
+
export declare const fromCommandsReleasePlanCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "releasePlanSpec" | "runReleasePlan", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
6
|
+
export declare const fromCommandsReleaseApplyCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "releaseApplySpec" | "releaseCandidateSpec" | "runReleaseApply" | "runReleaseCandidate" | "pushReleaseCandidateBranch" | "pushReleaseRefs", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
7
|
+
export declare const fromCommandsCoreQuickstart: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "quickstartSpec" | "runQuickstart", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
8
|
+
export declare const fromCommandsCorePreflight: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "preflightSpec" | "runPreflight", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
9
|
+
export declare const fromCommandsCodex: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "makeRunCodexPluginInstallHandler" | "codexSpec" | "codexPluginSpec" | "codexPluginInstallSpec" | "runCodex" | "runCodexPlugin", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
10
|
+
export declare const fromCommandsRuntimeCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "buildFrameworkDevWorkflow" | "renderRuntimeExplainText" | "runtimeSpec" | "runtimeExplainSpec" | "runRuntime" | "runRuntimeExplain", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
11
|
+
export declare const fromCommandsIncidentsIncidentsCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "incidentsSpec" | "runIncidents", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
12
|
+
export declare const fromCommandsCoreRole: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "roleSpec" | "runRole", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
13
|
+
export declare const fromCommandsDoctorRun: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "runDoctor", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
14
|
+
export declare const fromCommandsWorkflowCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "workflowSpec" | "runWorkflow", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
15
|
+
export declare const fromCommandsWorkflowBuildCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "workflowBuildSpec" | "runWorkflowBuild", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
16
|
+
export declare const fromCommandsWorkflowRestoreCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "workflowRestoreSpec" | "runWorkflowRestore", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
17
|
+
export declare const fromCommandsWorkflowPlaybookCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "workflowDebugSpec" | "workflowSyncSpec" | "workflowLandSpec" | "runWorkflowDebug" | "runWorkflowSync" | "runWorkflowLand", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
18
|
+
export declare const loadCodexPluginInstallSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<import("./commands/codex.js").CodexPluginInstallParsed>>;
|
|
19
|
+
export declare const loadIncidentsCollectSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: {
|
|
20
|
+
taskId: string;
|
|
21
|
+
check: boolean;
|
|
22
|
+
json: boolean;
|
|
23
|
+
}) => Promise<number>>;
|
|
24
|
+
export declare const loadIncidentsAdviseSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: {
|
|
25
|
+
taskId: string | null;
|
|
26
|
+
scope: string | null;
|
|
27
|
+
title: string | null;
|
|
28
|
+
description: string | null;
|
|
29
|
+
tags: string[];
|
|
30
|
+
limit: number;
|
|
31
|
+
json: boolean;
|
|
32
|
+
}) => Promise<number>>;
|
|
33
|
+
export declare const loadAgentsSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<{
|
|
34
|
+
[x: string]: never;
|
|
35
|
+
}>>;
|
|
36
|
+
export declare const loadConfigShowSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<{
|
|
37
|
+
[x: string]: never;
|
|
38
|
+
}>>;
|
|
39
|
+
export declare const loadConfigSetSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<{
|
|
40
|
+
key: string;
|
|
41
|
+
value: string;
|
|
42
|
+
}>>;
|
|
43
|
+
export declare const loadModeGetSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<{
|
|
44
|
+
[x: string]: never;
|
|
45
|
+
}>>;
|
|
46
|
+
export declare const loadModeSetSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<{
|
|
47
|
+
mode: string;
|
|
48
|
+
}>>;
|
|
49
|
+
export declare const loadProfileSetSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<{
|
|
50
|
+
profile: string;
|
|
51
|
+
}>>;
|
|
52
|
+
export declare const loadIdeSyncSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<{
|
|
53
|
+
ide?: "cursor" | "windsurf";
|
|
54
|
+
}>>;
|
|
55
|
+
export declare const fromCommandsTaskTaskCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskSpec" | "runTask", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
56
|
+
export declare const fromCommandsTaskHandoffCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "runTaskHandoff" | "taskHandoffSpec", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
57
|
+
export declare const fromCommandsTaskHandoffRecordCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskHandoffRecordSpec" | "runTaskHandoffRecord", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
58
|
+
export declare const fromCommandsTaskRunShowCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskRunShowSpec" | "runTaskRunShow", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
59
|
+
export declare const fromCommandsTaskRunTailCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskRunTailSpec" | "runTaskRunTail", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
60
|
+
export declare const fromCommandsTaskRunCancelCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskRunCancelSpec" | "runTaskRunCancel", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
61
|
+
export declare const fromCommandsTaskRunRetryCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskRunRetrySpec" | "runTaskRunRetry", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
62
|
+
export declare const fromCommandsTaskFindingsCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "runTaskFindings" | "taskFindingsSpec", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
63
|
+
export declare const fromCommandsTaskDocCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "runTaskDoc" | "taskDocSpec", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
64
|
+
export declare const fromCommandsTaskLintCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "runTaskLint" | "taskLintSpec", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
65
|
+
export declare const fromCommandsTaskMigrateDocCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "runTaskMigrateDoc" | "taskMigrateDocSpec", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
66
|
+
export declare const fromCommandsTaskVerifyCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "runTaskVerify" | "taskVerifySpec", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
67
|
+
export declare const fromCommandsTaskResumeContextCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskResumeContextSpec" | "runTaskResumeContext", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
68
|
+
export declare const fromTaskHandoffShowSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskHandoffShowSpec" | "runTaskHandoffShow", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
69
|
+
export declare const loadTaskHostedCloseSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, parsed: import("../../commands/task/hosted-close.command.js").TaskHostedCloseParsed) => Promise<number>>;
|
|
70
|
+
export declare const loadTaskHostedClosePrSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: {
|
|
71
|
+
taskIds: string[];
|
|
72
|
+
branch: string | null;
|
|
73
|
+
repo: string | null;
|
|
74
|
+
}) => Promise<number>>;
|
|
75
|
+
export declare const loadTaskListSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/list.spec.js").TaskListParsed) => Promise<number>>;
|
|
76
|
+
export declare const loadTaskNextSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/next.spec.js").TaskNextParsed) => Promise<number>>;
|
|
77
|
+
export declare const loadTaskSearchSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/search.spec.js").TaskSearchParsed) => Promise<number>>;
|
|
78
|
+
export declare const loadTaskShowSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/show.spec.js").TaskShowParsed) => Promise<number>>;
|
|
79
|
+
export declare const fromTaskRunTraceSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskRunTraceSpec" | "runTaskRunTrace", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
80
|
+
export declare const fromTaskRunSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskRunSpec" | "runTaskRun", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
81
|
+
export declare const fromTaskRunResumeSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskRunResumeSpec" | "runTaskRunResume", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
82
|
+
export declare const loadTaskNewSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<import("../../commands/task/new.js").TaskNewParsed>>;
|
|
83
|
+
export declare const loadTaskDeriveSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/derive.command.js").TaskDeriveParsed) => Promise<number>>;
|
|
84
|
+
export declare const loadTaskCloseDuplicateSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/close-duplicate.command.js").TaskCloseDuplicateParsed) => Promise<number>>;
|
|
85
|
+
export declare const loadTaskStartReadySpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: {
|
|
86
|
+
taskId: string;
|
|
87
|
+
author: string;
|
|
88
|
+
body: string;
|
|
89
|
+
force: boolean;
|
|
90
|
+
yes: boolean;
|
|
91
|
+
quiet: boolean;
|
|
92
|
+
}) => Promise<number>>;
|
|
93
|
+
export declare const loadTaskCloseNoopSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: {
|
|
94
|
+
taskId: string;
|
|
95
|
+
author: string;
|
|
96
|
+
note?: string;
|
|
97
|
+
force: boolean;
|
|
98
|
+
yes: boolean;
|
|
99
|
+
quiet: boolean;
|
|
100
|
+
}) => Promise<number>>;
|
|
101
|
+
export declare const loadTaskAddSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/add.command.js").TaskAddParsed) => Promise<number>>;
|
|
102
|
+
export declare const loadTaskUpdateSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/update.command.js").TaskUpdateParsed) => Promise<number>>;
|
|
103
|
+
export declare const loadTaskCommentSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/comment.command.js").TaskCommentParsed) => Promise<number>>;
|
|
104
|
+
export declare const loadTaskSetStatusSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/set-status.command.js").TaskSetStatusParsed) => Promise<number>>;
|
|
105
|
+
export declare const loadTaskFindingsAddSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/findings-add.command.js").TaskFindingsAddParsed) => Promise<number>>;
|
|
106
|
+
export declare const loadTaskDocShowSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/doc-show.command.js").TaskDocShowParsed) => Promise<number>>;
|
|
107
|
+
export declare const loadTaskDocSetSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/doc-set.command.js").TaskDocSetParsed) => Promise<number>>;
|
|
108
|
+
export declare const loadTaskScrubSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/scrub.command.js").TaskScrubParsed) => Promise<number>>;
|
|
109
|
+
export declare const loadTaskScaffoldSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/scaffold.command.js").TaskScaffoldParsed) => Promise<number>>;
|
|
110
|
+
export declare const loadTaskNormalizeSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/normalize.command.js").TaskNormalizeParsed) => Promise<number>>;
|
|
111
|
+
export declare const loadTaskExportSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx) => Promise<number>>;
|
|
112
|
+
export declare const loadTaskMigrateSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/migrate.command.js").TaskMigrateParsed) => Promise<number>>;
|
|
113
|
+
export declare const fromTaskPlanSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskPlanSpec" | "runTaskPlan", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
114
|
+
export declare const loadTaskPlanSetSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/plan-set.command.js").TaskPlanSetParsed) => Promise<number>>;
|
|
115
|
+
export declare const loadTaskPlanApproveSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/plan-approve.command.js").TaskPlanApproveParsed) => Promise<number>>;
|
|
116
|
+
export declare const loadTaskPlanRejectSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/plan-reject.command.js").TaskPlanRejectParsed) => Promise<number>>;
|
|
117
|
+
export declare const loadTaskVerifyOkSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/verify-ok.command.js").TaskVerifyOkParsed) => Promise<number>>;
|
|
118
|
+
export declare const loadTaskVerifyReworkSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/verify-rework.command.js").TaskVerifyReworkParsed) => Promise<number>>;
|
|
119
|
+
export declare const loadTaskVerifyShowSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/task/verify-show.command.js").TaskVerifyShowParsed) => Promise<number>>;
|
|
120
|
+
export declare const loadTaskRebuildIndexSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<import("../../commands/task/rebuild-index.command.js").TaskRebuildIndexParsed>>;
|
|
121
|
+
export declare const fromTaskReclaimSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "taskReclaimSpec" | "runTaskReclaim", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
122
|
+
export declare const fromCommandsRecipesRecipesCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesSpec" | "runRecipes", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
123
|
+
export declare const fromCommandsRecipesCacheCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesCacheSpec" | "runRecipesCache", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
124
|
+
export declare const fromCommandsRecipesAddCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesAddSpec" | "runRecipesAdd", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
125
|
+
export declare const fromCommandsRecipesListCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesListSpec" | "runRecipesList", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
126
|
+
export declare const fromCommandsRecipesListRemoteCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesListRemoteSpec" | "runRecipesListRemote", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
127
|
+
export declare const fromCommandsRecipesExplainCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesExplainSpec" | "runRecipesExplain", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
128
|
+
export declare const fromCommandsRecipesEnableCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesEnableSpec" | "runRecipesEnable", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
129
|
+
export declare const fromCommandsRecipesRemoveCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesRemoveSpec" | "runRecipesRemove", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
130
|
+
export declare const fromCommandsRecipesDetachCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesDetachSpec" | "runRecipesDetach", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
131
|
+
export declare const fromCommandsRecipesInstallRun: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "runRecipesInstall", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
132
|
+
export declare const fromCommandsBranchBaseCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "branchBaseSpec" | "branchBaseGetSpec" | "branchBaseClearSpec" | "branchBaseExplainSpec" | "branchBaseSetSpec" | "runBranchBase" | "runBranchBaseGet" | "runBranchBaseClear" | "runBranchBaseExplain" | "runBranchBaseSet", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
133
|
+
export declare const fromCommandsBranchStatusCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "branchStatusSpec" | "runBranchStatus", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
134
|
+
export declare const loadWorkStartSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<import("../../commands/branch/work-start.command.js").WorkStartParsed>>;
|
|
135
|
+
export declare const fromRecipesActiveSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesActiveSpec" | "runRecipesActive", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
136
|
+
export declare const fromRecipesInfoSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesInfoSpec" | "runRecipesInfo", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
137
|
+
export declare const loadRecipesExplainActiveSpec: () => Promise<import("../spec/spec.js").CommandHandler<import("../../commands/recipes/explain-active.command.js").RecipesExplainActiveParsed>>;
|
|
138
|
+
export declare const fromRecipesDisableSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesDisableSpec" | "runRecipesDisable", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
139
|
+
export declare const fromRecipesUpdateSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesUpdateSpec" | "runRecipesUpdate", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
140
|
+
export declare const fromRecipesCachePruneSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "recipesCachePruneSpec" | "runRecipesCachePrune", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
141
|
+
export declare const fromBranchBaseSetSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "branchBaseSpec" | "branchBaseGetSpec" | "branchBaseClearSpec" | "branchBaseExplainSpec" | "branchBaseSetSpec" | "runBranchBase" | "runBranchBaseGet" | "runBranchBaseClear" | "runBranchBaseExplain" | "runBranchBaseSet", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
142
|
+
export declare const fromBranchBaseExplainSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "branchBaseSpec" | "branchBaseGetSpec" | "branchBaseClearSpec" | "branchBaseExplainSpec" | "branchBaseSetSpec" | "runBranchBase" | "runBranchBaseGet" | "runBranchBaseClear" | "runBranchBaseExplain" | "runBranchBaseSet", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
143
|
+
export declare const fromBranchRemoveSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "branchRemoveSpec" | "runBranchRemove", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
144
|
+
export declare const loadBackendSpec: (deps: RunDeps) => Promise<(_ctx: import("../spec/spec.js").CommandCtx, p: import("../group-command.js").GroupCommandParsed) => Promise<number>>;
|
|
145
|
+
export declare const loadBackendSyncSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/backend.js").BackendSyncParsed) => Promise<number>>;
|
|
146
|
+
export declare const loadBackendInspectSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/backend.js").BackendInspectParsed) => Promise<number>>;
|
|
147
|
+
export declare const loadBackendMigrateCanonicalStateSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/backend.js").BackendMigrateCanonicalStateParsed) => Promise<number>>;
|
|
148
|
+
export declare const loadSyncSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/backend.js").SyncParsed) => Promise<number>>;
|
|
149
|
+
export declare const loadPrSpec: (deps: RunDeps) => Promise<import("../spec/spec.js").CommandHandler<import("../group-command.js").GroupCommandParsed>>;
|
|
150
|
+
export declare const loadPrOpenSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/pr/pr.command.js").PrOpenParsed) => Promise<number>>;
|
|
151
|
+
export declare const loadPrUpdateSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/pr/pr.command.js").PrUpdateParsed) => Promise<number>>;
|
|
152
|
+
export declare const loadPrCheckSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/pr/pr.command.js").PrCheckParsed) => Promise<number>>;
|
|
153
|
+
export declare const loadPrCloseSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/pr/pr.command.js").PrCloseParsed) => Promise<number>>;
|
|
154
|
+
export declare const loadPrCloseSupersededSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/pr/pr.command.js").PrCloseSupersededParsed) => Promise<number>>;
|
|
155
|
+
export declare const loadPrNoteSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/pr/pr.command.js").PrNoteParsed) => Promise<number>>;
|
|
156
|
+
export declare const loadIntegrateSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/integrate.command.js").IntegrateParsed) => Promise<number>>;
|
|
157
|
+
export declare const fromCommandsHooksHooksCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "hooksSpec" | "runHooks", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
158
|
+
export declare const fromCommandsHooksInstallCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "hooksInstallSpec" | "runHooksInstall", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
159
|
+
export declare const fromCommandsHooksRunCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "hooksRunSpec" | "runHooksRun", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
160
|
+
export declare const fromCommandsGuardGuardCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "guardSpec" | "runGuard", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
161
|
+
export declare const fromCommandsGuardCleanCommand: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "guardCleanSpec" | "runGuardClean", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
162
|
+
export declare const loadCommitSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/commit.spec.js").CommitParsed) => Promise<number>>;
|
|
163
|
+
export declare const loadStartSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/start.spec.js").StartParsed) => Promise<number>>;
|
|
164
|
+
export declare const loadBlockSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/block.spec.js").BlockParsed) => Promise<number>>;
|
|
165
|
+
export declare const loadVerifySpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/verify.spec.js").VerifyParsed) => Promise<number>>;
|
|
166
|
+
export declare const loadFinishSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/finish.spec.js").FinishParsed) => Promise<number>>;
|
|
167
|
+
export declare const loadReadySpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/ready.command.js").ReadyParsed) => Promise<number>>;
|
|
168
|
+
export declare const loadDocsCliSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/docs/cli.command.js").DocsCliParsed) => Promise<number>>;
|
|
169
|
+
export declare const fromHooksUninstallSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "hooksUninstallSpec" | "runHooksUninstall", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
170
|
+
export declare const fromCleanupSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "makeRunCleanupMergedHandler" | "cleanupSpec" | "cleanupMergedSpec" | "runCleanup", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
171
|
+
export declare const loadCleanupMergedSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/cleanup/merged.command.js").CleanupMergedParsed) => Promise<number>>;
|
|
172
|
+
export declare const fromGuardSuggestAllowSpec: <TParsed>(spec: import("../spec/spec.js").CommandSpec<TParsed>, runExport: "guardSuggestAllowSpec" | "runGuardSuggestAllow", meta?: import("./command-catalog/shared.js").CommandMeta) => import("./command-catalog/shared.js").CommandEntry;
|
|
173
|
+
export declare const loadGuardCommitSpec: (deps: RunDeps) => Promise<(ctx: import("../spec/spec.js").CommandCtx, p: import("../../commands/guard/commit.command.js").GuardCommitParsed) => Promise<number>>;
|
|
174
|
+
//# sourceMappingURL=command-loaders.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"command-loaders.d.ts","sourceRoot":"","sources":["../../../src/cli/run-cli/command-loaders.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { commandModule } from "./command-catalog/shared.js";
|
|
2
|
+
export const fromCommandsInit = commandModule(() => import("./commands/init.js"));
|
|
3
|
+
export const fromCommandsUpgradeCommand = commandModule(() => import("../../commands/upgrade.command.js"));
|
|
4
|
+
export const fromCommandsReleaseReleaseCommand = commandModule(() => import("../../commands/release/release.command.js"));
|
|
5
|
+
export const fromCommandsReleasePlanCommand = commandModule(() => import("../../commands/release/plan.command.js"));
|
|
6
|
+
export const fromCommandsReleaseApplyCommand = commandModule(() => import("../../commands/release/apply.command.js"));
|
|
7
|
+
export const fromCommandsCoreQuickstart = commandModule(() => import("./commands/core/quickstart.js"));
|
|
8
|
+
export const fromCommandsCorePreflight = commandModule(() => import("./commands/core/preflight.js"));
|
|
9
|
+
export const fromCommandsCodex = commandModule(() => import("./commands/codex.js"));
|
|
10
|
+
export const fromCommandsRuntimeCommand = commandModule(() => import("../../commands/runtime.command.js"));
|
|
11
|
+
export const fromCommandsIncidentsIncidentsCommand = commandModule(() => import("../../commands/incidents/incidents.command.js"));
|
|
12
|
+
export const fromCommandsCoreRole = commandModule(() => import("./commands/core/role.js"));
|
|
13
|
+
export const fromCommandsDoctorRun = commandModule(() => import("../../commands/doctor.run.js"));
|
|
14
|
+
export const fromCommandsWorkflowCommand = commandModule(() => import("../../commands/workflow.command.js"));
|
|
15
|
+
export const fromCommandsWorkflowBuildCommand = commandModule(() => import("../../commands/workflow-build.command.js"));
|
|
16
|
+
export const fromCommandsWorkflowRestoreCommand = commandModule(() => import("../../commands/workflow-restore.command.js"));
|
|
17
|
+
export const fromCommandsWorkflowPlaybookCommand = commandModule(() => import("../../commands/workflow-playbook.command.js"));
|
|
18
|
+
export const loadCodexPluginInstallSpec = (deps) => import("./commands/codex.js").then((m) => m.makeRunCodexPluginInstallHandler(deps));
|
|
19
|
+
export const loadIncidentsCollectSpec = (deps) => import("../../commands/incidents/collect.command.js").then((m) => m.makeRunIncidentsCollectHandler(deps.getCtx));
|
|
20
|
+
export const loadIncidentsAdviseSpec = (deps) => import("../../commands/incidents/advise.command.js").then((m) => m.makeRunIncidentsAdviseHandler(deps.getCtx));
|
|
21
|
+
export const loadAgentsSpec = (deps) => import("./commands/core/agents.js").then((m) => m.makeRunAgentsHandler(deps));
|
|
22
|
+
export const loadConfigShowSpec = (deps) => import("./commands/config.js").then((m) => m.makeRunConfigShowHandler(deps));
|
|
23
|
+
export const loadConfigSetSpec = (deps) => import("./commands/config.js").then((m) => m.makeRunConfigSetHandler(deps));
|
|
24
|
+
export const loadModeGetSpec = (deps) => import("./commands/config.js").then((m) => m.makeRunModeGetHandler(deps));
|
|
25
|
+
export const loadModeSetSpec = (deps) => import("./commands/config.js").then((m) => m.makeRunModeSetHandler(deps));
|
|
26
|
+
export const loadProfileSetSpec = (deps) => import("./commands/config.js").then((m) => m.makeRunProfileSetHandler(deps));
|
|
27
|
+
export const loadIdeSyncSpec = (deps) => import("./commands/ide.js").then((m) => m.makeRunIdeSyncHandler(deps));
|
|
28
|
+
export const fromCommandsTaskTaskCommand = commandModule(() => import("../../commands/task/task.command.js"));
|
|
29
|
+
export const fromCommandsTaskHandoffCommand = commandModule(() => import("../../commands/task/handoff.command.js"));
|
|
30
|
+
export const fromCommandsTaskHandoffRecordCommand = commandModule(() => import("../../commands/task/handoff-record.command.js"));
|
|
31
|
+
export const fromCommandsTaskRunShowCommand = commandModule(() => import("../../commands/task/run-show.command.js"));
|
|
32
|
+
export const fromCommandsTaskRunTailCommand = commandModule(() => import("../../commands/task/run-tail.command.js"));
|
|
33
|
+
export const fromCommandsTaskRunCancelCommand = commandModule(() => import("../../commands/task/run-cancel.command.js"));
|
|
34
|
+
export const fromCommandsTaskRunRetryCommand = commandModule(() => import("../../commands/task/run-retry.command.js"));
|
|
35
|
+
export const fromCommandsTaskFindingsCommand = commandModule(() => import("../../commands/task/findings.command.js"));
|
|
36
|
+
export const fromCommandsTaskDocCommand = commandModule(() => import("../../commands/task/doc.command.js"));
|
|
37
|
+
export const fromCommandsTaskLintCommand = commandModule(() => import("../../commands/task/lint.command.js"));
|
|
38
|
+
export const fromCommandsTaskMigrateDocCommand = commandModule(() => import("../../commands/task/migrate-doc.command.js"));
|
|
39
|
+
export const fromCommandsTaskVerifyCommand = commandModule(() => import("../../commands/task/verify.command.js"));
|
|
40
|
+
export const fromCommandsTaskResumeContextCommand = commandModule(() => import("../../commands/task/resume-context.command.js"));
|
|
41
|
+
export const fromTaskHandoffShowSpec = commandModule(() => import("../../commands/task/handoff-show.command.js"));
|
|
42
|
+
export const loadTaskHostedCloseSpec = (deps) => import("../../commands/task/hosted-close.command.js").then((m) => m.makeRunTaskHostedCloseHandler(deps.getCtx));
|
|
43
|
+
export const loadTaskHostedClosePrSpec = (deps) => import("../../commands/task/hosted-close-pr.command.js").then((m) => m.makeRunTaskHostedClosePrHandler(deps.getCtx));
|
|
44
|
+
export const loadTaskListSpec = (deps) => import("../../commands/task/list.run.js").then((m) => m.makeRunTaskListHandler(deps.getCtx));
|
|
45
|
+
export const loadTaskNextSpec = (deps) => import("../../commands/task/next.run.js").then((m) => m.makeRunTaskNextHandler(deps.getCtx));
|
|
46
|
+
export const loadTaskSearchSpec = (deps) => import("../../commands/task/search.run.js").then((m) => m.makeRunTaskSearchHandler(deps.getCtx));
|
|
47
|
+
export const loadTaskShowSpec = (deps) => import("../../commands/task/show.run.js").then((m) => m.makeRunTaskShowHandler(deps.getCtx));
|
|
48
|
+
export const fromTaskRunTraceSpec = commandModule(() => import("../../commands/task/run-trace.command.js"));
|
|
49
|
+
export const fromTaskRunSpec = commandModule(() => import("../../commands/task/run.command.js"));
|
|
50
|
+
export const fromTaskRunResumeSpec = commandModule(() => import("../../commands/task/run-resume.command.js"));
|
|
51
|
+
export const loadTaskNewSpec = (deps) => import("../../commands/task/new.command.js").then((m) => m.makeRunTaskNewHandler(deps.getCtx));
|
|
52
|
+
export const loadTaskDeriveSpec = (deps) => import("../../commands/task/derive.command.js").then((m) => m.makeRunTaskDeriveHandler(deps.getCtx));
|
|
53
|
+
export const loadTaskCloseDuplicateSpec = (deps) => import("../../commands/task/close-duplicate.command.js").then((m) => m.makeRunTaskCloseDuplicateHandler(deps.getCtx));
|
|
54
|
+
export const loadTaskStartReadySpec = (deps) => import("../../commands/task/start-ready.command.js").then((m) => m.makeRunTaskStartReadyHandler(deps.getCtx));
|
|
55
|
+
export const loadTaskCloseNoopSpec = (deps) => import("../../commands/task/close-noop.command.js").then((m) => m.makeRunTaskCloseNoopHandler(deps.getCtx));
|
|
56
|
+
export const loadTaskAddSpec = (deps) => import("../../commands/task/add.command.js").then((m) => m.makeRunTaskAddHandler(deps.getCtx));
|
|
57
|
+
export const loadTaskUpdateSpec = (deps) => import("../../commands/task/update.command.js").then((m) => m.makeRunTaskUpdateHandler(deps.getCtx));
|
|
58
|
+
export const loadTaskCommentSpec = (deps) => import("../../commands/task/comment.command.js").then((m) => m.makeRunTaskCommentHandler(deps.getCtx));
|
|
59
|
+
export const loadTaskSetStatusSpec = (deps) => import("../../commands/task/set-status.command.js").then((m) => m.makeRunTaskSetStatusHandler(deps.getCtx));
|
|
60
|
+
export const loadTaskFindingsAddSpec = (deps) => import("../../commands/task/findings-add.command.js").then((m) => m.makeRunTaskFindingsAddHandler(deps.getCtx));
|
|
61
|
+
export const loadTaskDocShowSpec = (deps) => import("../../commands/task/doc-show.command.js").then((m) => m.makeRunTaskDocShowHandler(deps.getCtx));
|
|
62
|
+
export const loadTaskDocSetSpec = (deps) => import("../../commands/task/doc-set.command.js").then((m) => m.makeRunTaskDocSetHandler(deps.getCtx));
|
|
63
|
+
export const loadTaskScrubSpec = (deps) => import("../../commands/task/scrub.command.js").then((m) => m.makeRunTaskScrubHandler(deps.getCtx));
|
|
64
|
+
export const loadTaskScaffoldSpec = (deps) => import("../../commands/task/scaffold.command.js").then((m) => m.makeRunTaskScaffoldHandler(deps.getCtx));
|
|
65
|
+
export const loadTaskNormalizeSpec = (deps) => import("../../commands/task/normalize.command.js").then((m) => m.makeRunTaskNormalizeHandler(deps.getCtx));
|
|
66
|
+
export const loadTaskExportSpec = (deps) => import("../../commands/task/export.command.js").then((m) => m.makeRunTaskExportHandler(deps.getCtx));
|
|
67
|
+
export const loadTaskMigrateSpec = (deps) => import("../../commands/task/migrate.command.js").then((m) => m.makeRunTaskMigrateHandler(deps.getCtx));
|
|
68
|
+
export const fromTaskPlanSpec = commandModule(() => import("../../commands/task/plan.command.js"));
|
|
69
|
+
export const loadTaskPlanSetSpec = (deps) => import("../../commands/task/plan-set.command.js").then((m) => m.makeRunTaskPlanSetHandler(deps.getCtx));
|
|
70
|
+
export const loadTaskPlanApproveSpec = (deps) => import("../../commands/task/plan-approve.command.js").then((m) => m.makeRunTaskPlanApproveHandler(deps.getCtx));
|
|
71
|
+
export const loadTaskPlanRejectSpec = (deps) => import("../../commands/task/plan-reject.command.js").then((m) => m.makeRunTaskPlanRejectHandler(deps.getCtx));
|
|
72
|
+
export const loadTaskVerifyOkSpec = (deps) => import("../../commands/task/verify-ok.command.js").then((m) => m.makeRunTaskVerifyOkHandler(deps.getCtx));
|
|
73
|
+
export const loadTaskVerifyReworkSpec = (deps) => import("../../commands/task/verify-rework.command.js").then((m) => m.makeRunTaskVerifyReworkHandler(deps.getCtx));
|
|
74
|
+
export const loadTaskVerifyShowSpec = (deps) => import("../../commands/task/verify-show.command.js").then((m) => m.makeRunTaskVerifyShowHandler(deps.getCtx));
|
|
75
|
+
export const loadTaskRebuildIndexSpec = (deps) => import("../../commands/task/rebuild-index.command.js").then((m) => m.makeRunTaskRebuildIndexHandler(deps.getCtx));
|
|
76
|
+
export const fromTaskReclaimSpec = commandModule(() => import("../../commands/task/reclaim.command.js"));
|
|
77
|
+
export const fromCommandsRecipesRecipesCommand = commandModule(() => import("../../commands/recipes/recipes.command.js"));
|
|
78
|
+
export const fromCommandsRecipesCacheCommand = commandModule(() => import("../../commands/recipes/cache.command.js"));
|
|
79
|
+
export const fromCommandsRecipesAddCommand = commandModule(() => import("../../commands/recipes/add.command.js"));
|
|
80
|
+
export const fromCommandsRecipesListCommand = commandModule(() => import("../../commands/recipes/list.command.js"));
|
|
81
|
+
export const fromCommandsRecipesListRemoteCommand = commandModule(() => import("../../commands/recipes/list-remote.command.js"));
|
|
82
|
+
export const fromCommandsRecipesExplainCommand = commandModule(() => import("../../commands/recipes/explain.command.js"));
|
|
83
|
+
export const fromCommandsRecipesEnableCommand = commandModule(() => import("../../commands/recipes/enable.command.js"));
|
|
84
|
+
export const fromCommandsRecipesRemoveCommand = commandModule(() => import("../../commands/recipes/remove.command.js"));
|
|
85
|
+
export const fromCommandsRecipesDetachCommand = commandModule(() => import("../../commands/recipes/detach.command.js"));
|
|
86
|
+
export const fromCommandsRecipesInstallRun = commandModule(() => import("../../commands/recipes/install.run.js"));
|
|
87
|
+
export const fromCommandsBranchBaseCommand = commandModule(() => import("../../commands/branch/base.command.js"));
|
|
88
|
+
export const fromCommandsBranchStatusCommand = commandModule(() => import("../../commands/branch/status.command.js"));
|
|
89
|
+
export const loadWorkStartSpec = (deps) => import("../../commands/branch/work-start.command.js").then((m) => m.makeRunWorkStartHandler(deps.getCtx));
|
|
90
|
+
export const fromRecipesActiveSpec = commandModule(() => import("../../commands/recipes/active.command.js"));
|
|
91
|
+
export const fromRecipesInfoSpec = commandModule(() => import("../../commands/recipes/info.command.js"));
|
|
92
|
+
export const loadRecipesExplainActiveSpec = () => import("../../commands/recipes/explain-active.command.js").then((m) => m.runRecipesExplainActive);
|
|
93
|
+
export const fromRecipesDisableSpec = commandModule(() => import("../../commands/recipes/disable.command.js"));
|
|
94
|
+
export const fromRecipesUpdateSpec = commandModule(() => import("../../commands/recipes/update.command.js"));
|
|
95
|
+
export const fromRecipesCachePruneSpec = commandModule(() => import("../../commands/recipes/cache-prune.command.js"));
|
|
96
|
+
export const fromBranchBaseSetSpec = commandModule(() => import("../../commands/branch/base.command.js"));
|
|
97
|
+
export const fromBranchBaseExplainSpec = commandModule(() => import("../../commands/branch/base.command.js"));
|
|
98
|
+
export const fromBranchRemoveSpec = commandModule(() => import("../../commands/branch/remove.command.js"));
|
|
99
|
+
export const loadBackendSpec = (deps) => import("../../commands/backend/sync.command.js").then((m) => m.makeRunBackendHandler(deps.getCtx));
|
|
100
|
+
export const loadBackendSyncSpec = (deps) => import("../../commands/backend/sync.command.js").then((m) => m.makeRunBackendSyncHandler(deps.getCtx));
|
|
101
|
+
export const loadBackendInspectSpec = (deps) => import("../../commands/backend/sync.command.js").then((m) => m.makeRunBackendInspectHandler(deps.getCtx));
|
|
102
|
+
export const loadBackendMigrateCanonicalStateSpec = (deps) => import("../../commands/backend/sync.command.js").then((m) => m.makeRunBackendMigrateCanonicalStateHandler(deps.getCtx));
|
|
103
|
+
export const loadSyncSpec = (deps) => import("../../commands/sync.command.js").then((m) => m.makeRunSyncHandler(deps.getCtx));
|
|
104
|
+
export const loadPrSpec = (deps) => import("../../commands/pr/pr.command.js").then((m) => m.makeRunPrHandler(deps.getCtx));
|
|
105
|
+
export const loadPrOpenSpec = (deps) => import("../../commands/pr/pr.command.js").then((m) => m.makeRunPrOpenHandler(deps.getCtx));
|
|
106
|
+
export const loadPrUpdateSpec = (deps) => import("../../commands/pr/pr.command.js").then((m) => m.makeRunPrUpdateHandler(deps.getCtx));
|
|
107
|
+
export const loadPrCheckSpec = (deps) => import("../../commands/pr/pr.command.js").then((m) => m.makeRunPrCheckHandler(deps.getCtx));
|
|
108
|
+
export const loadPrCloseSpec = (deps) => import("../../commands/pr/pr.command.js").then((m) => m.makeRunPrCloseHandler(deps.getCtx));
|
|
109
|
+
export const loadPrCloseSupersededSpec = (deps) => import("../../commands/pr/pr.command.js").then((m) => m.makeRunPrCloseSupersededHandler(deps.getCtx));
|
|
110
|
+
export const loadPrNoteSpec = (deps) => import("../../commands/pr/pr.command.js").then((m) => m.makeRunPrNoteHandler(deps.getCtx));
|
|
111
|
+
export const loadIntegrateSpec = (deps) => import("../../commands/integrate.command.js").then((m) => m.makeRunIntegrateHandler(deps.getCtx));
|
|
112
|
+
export const fromCommandsHooksHooksCommand = commandModule(() => import("../../commands/hooks/hooks.command.js"));
|
|
113
|
+
export const fromCommandsHooksInstallCommand = commandModule(() => import("../../commands/hooks/install.command.js"));
|
|
114
|
+
export const fromCommandsHooksRunCommand = commandModule(() => import("../../commands/hooks/run.command.js"));
|
|
115
|
+
export const fromCommandsGuardGuardCommand = commandModule(() => import("../../commands/guard/guard.command.js"));
|
|
116
|
+
export const fromCommandsGuardCleanCommand = commandModule(() => import("../../commands/guard/clean.command.js"));
|
|
117
|
+
export const loadCommitSpec = (deps) => import("../../commands/commit.command.js").then((m) => m.makeRunCommitHandler(deps.getCtx));
|
|
118
|
+
export const loadStartSpec = (deps) => import("../../commands/start.run.js").then((m) => m.makeRunStartHandler(deps.getCtx));
|
|
119
|
+
export const loadBlockSpec = (deps) => import("../../commands/block.run.js").then((m) => m.makeRunBlockHandler(deps.getCtx));
|
|
120
|
+
export const loadVerifySpec = (deps) => import("../../commands/verify.run.js").then((m) => m.makeRunVerifyHandler(deps.getCtx));
|
|
121
|
+
export const loadFinishSpec = (deps) => import("../../commands/finish.run.js").then((m) => m.makeRunFinishHandler(deps.getCtx));
|
|
122
|
+
export const loadReadySpec = (deps) => import("../../commands/ready.command.js").then((m) => m.makeRunReadyHandler(deps.getCtx));
|
|
123
|
+
export const loadDocsCliSpec = (deps) => import("../../commands/docs/cli.command.js").then((m) => m.makeRunDocsCliHandler(deps.getHelpJsonForDocs));
|
|
124
|
+
export const fromHooksUninstallSpec = commandModule(() => import("../../commands/hooks/uninstall.command.js"));
|
|
125
|
+
export const fromCleanupSpec = commandModule(() => import("../../commands/cleanup/merged.command.js"));
|
|
126
|
+
export const loadCleanupMergedSpec = (deps) => import("../../commands/cleanup/merged.command.js").then((m) => m.makeRunCleanupMergedHandler(deps.getCtx));
|
|
127
|
+
export const fromGuardSuggestAllowSpec = commandModule(() => import("../../commands/guard/suggest-allow.command.js"));
|
|
128
|
+
export const loadGuardCommitSpec = (deps) => import("../../commands/guard/commit.command.js").then((m) => m.makeRunGuardCommitHandler(deps.getCtx));
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { ExecutionProfile } from "@agentplaneorg/core";
|
|
2
|
+
import type { WorkflowMode } from "../../../../agents/agents-template.js";
|
|
3
|
+
import type { PolicyGatewayFlavor } from "../../../../shared/policy-gateway.js";
|
|
4
|
+
export type InitIde = "codex" | "cursor" | "windsurf";
|
|
5
|
+
export type SetupProfilePreset = "light" | "normal" | "full-harness";
|
|
6
|
+
export type InitFlags = {
|
|
7
|
+
setupProfile?: SetupProfilePreset;
|
|
8
|
+
policyGateway?: PolicyGatewayFlavor;
|
|
9
|
+
ide?: InitIde;
|
|
10
|
+
workflow?: "direct" | "branch_pr";
|
|
11
|
+
directCloseDirtyPolicy?: "allow_other_task_readmes" | "strict";
|
|
12
|
+
backend?: "local" | "redmine";
|
|
13
|
+
hooks?: boolean;
|
|
14
|
+
gitignoreAgents?: boolean;
|
|
15
|
+
requirePlanApproval?: boolean;
|
|
16
|
+
requireNetworkApproval?: boolean;
|
|
17
|
+
requireVerifyApproval?: boolean;
|
|
18
|
+
executionProfile?: ExecutionProfile;
|
|
19
|
+
strictUnsafeConfirm?: boolean;
|
|
20
|
+
recipes?: string[];
|
|
21
|
+
force?: boolean;
|
|
22
|
+
backup?: boolean;
|
|
23
|
+
yes: boolean;
|
|
24
|
+
};
|
|
25
|
+
export type InitParsed = Omit<InitFlags, "yes"> & {
|
|
26
|
+
yes: boolean;
|
|
27
|
+
};
|
|
28
|
+
export type InitDefaults = {
|
|
29
|
+
policyGateway: PolicyGatewayFlavor;
|
|
30
|
+
ide: InitIde;
|
|
31
|
+
workflow: WorkflowMode;
|
|
32
|
+
directCloseDirtyPolicy: NonNullable<InitFlags["directCloseDirtyPolicy"]>;
|
|
33
|
+
backend: NonNullable<InitFlags["backend"]>;
|
|
34
|
+
hooks: boolean;
|
|
35
|
+
recipes: string[];
|
|
36
|
+
requirePlanApproval: boolean;
|
|
37
|
+
requireNetworkApproval: boolean;
|
|
38
|
+
requireVerifyApproval: boolean;
|
|
39
|
+
executionProfile: ExecutionProfile;
|
|
40
|
+
strictUnsafeConfirm: boolean;
|
|
41
|
+
};
|
|
42
|
+
//# sourceMappingURL=model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../../../../src/cli/run-cli/commands/init/model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAE5D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AAC1E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAEhF,MAAM,MAAM,OAAO,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,CAAC;AAEtD,MAAM,MAAM,kBAAkB,GAAG,OAAO,GAAG,QAAQ,GAAG,cAAc,CAAC;AAErE,MAAM,MAAM,SAAS,GAAG;IACtB,YAAY,CAAC,EAAE,kBAAkB,CAAC;IAClC,aAAa,CAAC,EAAE,mBAAmB,CAAC;IACpC,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,QAAQ,CAAC,EAAE,QAAQ,GAAG,WAAW,CAAC;IAClC,sBAAsB,CAAC,EAAE,0BAA0B,GAAG,QAAQ,CAAC;IAC/D,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,GAAG,EAAE,OAAO,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,UAAU,GAAG,IAAI,CAAC,SAAS,EAAE,KAAK,CAAC,GAAG;IAAE,GAAG,EAAE,OAAO,CAAA;CAAE,CAAC;AAEnE,MAAM,MAAM,YAAY,GAAG;IACzB,aAAa,EAAE,mBAAmB,CAAC;IACnC,GAAG,EAAE,OAAO,CAAC;IACb,QAAQ,EAAE,YAAY,CAAC;IACvB,sBAAsB,EAAE,WAAW,CAAC,SAAS,CAAC,wBAAwB,CAAC,CAAC,CAAC;IACzE,OAAO,EAAE,WAAW,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC,CAAC;IAC3C,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,mBAAmB,EAAE,OAAO,CAAC;IAC7B,sBAAsB,EAAE,OAAO,CAAC;IAChC,qBAAqB,EAAE,OAAO,CAAC;IAC/B,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,mBAAmB,EAAE,OAAO,CAAC;CAC9B,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { CommandSpec } from "../../../spec/spec.js";
|
|
2
|
+
import type { InitParsed } from "./model.js";
|
|
3
|
+
export declare function cmdInit(opts: {
|
|
4
|
+
cwd: string;
|
|
5
|
+
rootOverride?: string;
|
|
6
|
+
flags: InitParsed;
|
|
7
|
+
spec: CommandSpec<InitParsed>;
|
|
8
|
+
}): Promise<number>;
|
|
9
|
+
//# sourceMappingURL=orchestrate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"orchestrate.d.ts","sourceRoot":"","sources":["../../../../../src/cli/run-cli/commands/init/orchestrate.ts"],"names":[],"mappings":"AAkBA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAazD,OAAO,KAAK,EAAsB,UAAU,EAAsB,MAAM,YAAY,CAAC;AA0BrF,wBAAsB,OAAO,CAAC,IAAI,EAAE;IAClC,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,UAAU,CAAC;IAClB,IAAI,EAAE,WAAW,CAAC,UAAU,CAAC,CAAC;CAC/B,GAAG,OAAO,CAAC,MAAM,CAAC,CA2XlB"}
|