agentplane 0.3.9 → 0.3.11
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/AGENTS.md +4 -2
- package/assets/agents/CODER.json +1 -1
- package/assets/policy/dod.core.md +1 -1
- package/assets/policy/governance.md +5 -3
- package/assets/policy/incidents.md +19 -77
- package/assets/policy/workflow.branch_pr.md +2 -0
- package/assets/policy/workflow.direct.md +3 -1
- package/bin/agentplane.js +56 -1
- package/bin/runtime-watch.js +1 -0
- package/bin/stale-dist-policy.d.ts +1 -1
- package/bin/stale-dist-policy.js +13 -0
- package/dist/.build-manifest.json +462 -202
- package/dist/cli/bootstrap-guide.d.ts +1 -0
- package/dist/cli/bootstrap-guide.d.ts.map +1 -1
- package/dist/cli/bootstrap-guide.js +20 -1
- package/dist/cli/command-guide.d.ts.map +1 -1
- package/dist/cli/command-guide.js +2 -1
- package/dist/cli/command-invocations.d.ts.map +1 -1
- package/dist/cli/command-invocations.js +6 -1
- package/dist/cli/command-snippets.d.ts +2 -0
- package/dist/cli/command-snippets.d.ts.map +1 -1
- package/dist/cli/command-snippets.js +2 -0
- package/dist/cli/run-cli/command-catalog/core.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/core.js +10 -0
- package/dist/cli/run-cli/command-catalog/project.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/project.js +3 -1
- package/dist/cli/run-cli/command-catalog/task.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/task.js +10 -0
- package/dist/cli/run-cli/command-catalog.d.ts +1 -1
- package/dist/cli/run-cli/command-catalog.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/config.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/config.js +13 -0
- package/dist/cli/run-cli/commands/core/preflight.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/core/preflight.js +44 -1
- package/dist/cli/run-cli.js +2 -2
- package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
- package/dist/cli/run-cli.test-helpers.js +12 -0
- package/dist/commands/backend.d.ts.map +1 -1
- package/dist/commands/backend.js +4 -0
- package/dist/commands/branch/cleanup-merged.d.ts +2 -0
- package/dist/commands/branch/cleanup-merged.d.ts.map +1 -1
- package/dist/commands/branch/cleanup-merged.js +132 -28
- package/dist/commands/branch/work-start.d.ts.map +1 -1
- package/dist/commands/branch/work-start.js +60 -1
- package/dist/commands/cleanup/merged.command.d.ts +2 -0
- package/dist/commands/cleanup/merged.command.d.ts.map +1 -1
- package/dist/commands/cleanup/merged.command.js +24 -0
- package/dist/commands/doctor/branch-pr.d.ts +4 -0
- package/dist/commands/doctor/branch-pr.d.ts.map +1 -0
- package/dist/commands/doctor/branch-pr.js +96 -0
- package/dist/commands/doctor/fixes.d.ts +5 -0
- package/dist/commands/doctor/fixes.d.ts.map +1 -1
- package/dist/commands/doctor/fixes.js +70 -0
- package/dist/commands/doctor.run.d.ts.map +1 -1
- package/dist/commands/doctor.run.js +6 -1
- package/dist/commands/finish.run.d.ts.map +1 -1
- package/dist/commands/finish.run.js +11 -0
- package/dist/commands/finish.spec.d.ts +11 -0
- package/dist/commands/finish.spec.d.ts.map +1 -1
- package/dist/commands/finish.spec.js +51 -0
- package/dist/commands/guard/impl/close-message.d.ts.map +1 -1
- package/dist/commands/guard/impl/close-message.js +23 -6
- package/dist/commands/guard/impl/commands.d.ts.map +1 -1
- package/dist/commands/guard/impl/commands.js +24 -2
- package/dist/commands/guard/impl/env.d.ts +1 -0
- package/dist/commands/guard/impl/env.d.ts.map +1 -1
- package/dist/commands/guard/impl/env.js +1 -0
- package/dist/commands/hooks/index.d.ts.map +1 -1
- package/dist/commands/hooks/index.js +98 -1
- package/dist/commands/incidents/advise.command.d.ts +15 -0
- package/dist/commands/incidents/advise.command.d.ts.map +1 -0
- package/dist/commands/incidents/advise.command.js +139 -0
- package/dist/commands/incidents/collect.command.d.ts +11 -0
- package/dist/commands/incidents/collect.command.d.ts.map +1 -0
- package/dist/commands/incidents/collect.command.js +72 -0
- package/dist/commands/incidents/incidents.command.d.ts +5 -0
- package/dist/commands/incidents/incidents.command.d.ts.map +1 -0
- package/dist/commands/incidents/incidents.command.js +21 -0
- package/dist/commands/incidents/shared.d.ts +76 -0
- package/dist/commands/incidents/shared.d.ts.map +1 -0
- package/dist/commands/incidents/shared.js +261 -0
- package/dist/commands/pr/check.d.ts.map +1 -1
- package/dist/commands/pr/check.js +249 -75
- package/dist/commands/pr/close-superseded.d.ts +9 -0
- package/dist/commands/pr/close-superseded.d.ts.map +1 -0
- package/dist/commands/pr/close-superseded.js +129 -0
- package/dist/commands/pr/close.d.ts +11 -0
- package/dist/commands/pr/close.d.ts.map +1 -0
- package/dist/commands/pr/close.js +116 -0
- package/dist/commands/pr/index.d.ts +2 -0
- package/dist/commands/pr/index.d.ts.map +1 -1
- package/dist/commands/pr/index.js +2 -0
- package/dist/commands/pr/integrate/artifacts.d.ts +7 -0
- package/dist/commands/pr/integrate/artifacts.d.ts.map +1 -1
- package/dist/commands/pr/integrate/artifacts.js +66 -1
- package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
- package/dist/commands/pr/integrate/cmd.js +20 -0
- package/dist/commands/pr/integrate/internal/bootstrap-guidance.d.ts +8 -0
- package/dist/commands/pr/integrate/internal/bootstrap-guidance.d.ts.map +1 -0
- package/dist/commands/pr/integrate/internal/bootstrap-guidance.js +59 -0
- package/dist/commands/pr/integrate/internal/finalize.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/finalize.js +40 -12
- package/dist/commands/pr/integrate/internal/merge.d.ts +4 -0
- package/dist/commands/pr/integrate/internal/merge.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/merge.js +59 -15
- package/dist/commands/pr/integrate/internal/post-integrate-bootstrap.d.ts +13 -0
- package/dist/commands/pr/integrate/internal/post-integrate-bootstrap.d.ts.map +1 -0
- package/dist/commands/pr/integrate/internal/post-integrate-bootstrap.js +25 -0
- package/dist/commands/pr/integrate/internal/prepare.d.ts +3 -2
- package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/prepare.js +107 -19
- package/dist/commands/pr/internal/freshness.d.ts +20 -0
- package/dist/commands/pr/internal/freshness.d.ts.map +1 -0
- package/dist/commands/pr/internal/freshness.js +50 -0
- package/dist/commands/pr/internal/gh-api.d.ts +6 -0
- package/dist/commands/pr/internal/gh-api.d.ts.map +1 -0
- package/dist/commands/pr/internal/gh-api.js +80 -0
- package/dist/commands/pr/internal/note-store.d.ts +18 -0
- package/dist/commands/pr/internal/note-store.d.ts.map +1 -0
- package/dist/commands/pr/internal/note-store.js +66 -0
- package/dist/commands/pr/internal/pr-paths.d.ts +13 -0
- package/dist/commands/pr/internal/pr-paths.d.ts.map +1 -1
- package/dist/commands/pr/internal/pr-paths.js +13 -0
- package/dist/commands/pr/internal/review-template.d.ts +24 -4
- package/dist/commands/pr/internal/review-template.d.ts.map +1 -1
- package/dist/commands/pr/internal/review-template.js +221 -33
- package/dist/commands/pr/internal/sync.d.ts +41 -0
- package/dist/commands/pr/internal/sync.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync.js +598 -0
- package/dist/commands/pr/note.d.ts.map +1 -1
- package/dist/commands/pr/note.js +37 -4
- package/dist/commands/pr/open.d.ts +1 -0
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +18 -54
- package/dist/commands/pr/pr.command.d.ts +15 -0
- package/dist/commands/pr/pr.command.d.ts.map +1 -1
- package/dist/commands/pr/pr.command.js +124 -5
- package/dist/commands/pr/update.d.ts.map +1 -1
- package/dist/commands/pr/update.js +58 -74
- package/dist/commands/recipes/impl/commands/cache-prune.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/cache-prune.js +14 -0
- package/dist/commands/recipes/impl/commands/install.js +1 -1
- package/dist/commands/recipes/impl/commands/list-remote.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/list-remote.js +1 -0
- package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/remove.js +9 -1
- package/dist/commands/release/apply.command.d.ts.map +1 -1
- package/dist/commands/release/apply.command.js +12 -17
- package/dist/commands/release/apply.preflight.d.ts.map +1 -1
- package/dist/commands/release/apply.preflight.js +1 -1
- package/dist/commands/shared/approval-requirements.d.ts +5 -7
- package/dist/commands/shared/approval-requirements.d.ts.map +1 -1
- package/dist/commands/shared/approval-requirements.js +3 -73
- package/dist/commands/shared/gh-transport.d.ts +16 -0
- package/dist/commands/shared/gh-transport.d.ts.map +1 -0
- package/dist/commands/shared/gh-transport.js +71 -0
- package/dist/commands/shared/git-diff.d.ts +3 -1
- package/dist/commands/shared/git-diff.d.ts.map +1 -1
- package/dist/commands/shared/git-diff.js +10 -2
- package/dist/commands/shared/git-ops.d.ts +1 -0
- package/dist/commands/shared/git-ops.d.ts.map +1 -1
- package/dist/commands/shared/git-ops.js +15 -0
- package/dist/commands/shared/git-worktree.d.ts +2 -0
- package/dist/commands/shared/git-worktree.d.ts.map +1 -1
- package/dist/commands/shared/git-worktree.js +22 -2
- package/dist/commands/shared/network-approval.d.ts +2 -0
- package/dist/commands/shared/network-approval.d.ts.map +1 -1
- package/dist/commands/shared/network-approval.js +1 -1
- package/dist/commands/shared/post-commit-pr-artifacts.d.ts +9 -0
- package/dist/commands/shared/post-commit-pr-artifacts.d.ts.map +1 -0
- package/dist/commands/shared/post-commit-pr-artifacts.js +22 -0
- package/dist/commands/shared/pr-meta.d.ts +29 -0
- package/dist/commands/shared/pr-meta.d.ts.map +1 -1
- package/dist/commands/shared/pr-meta.js +152 -3
- package/dist/commands/shared/task-backend.d.ts +9 -0
- package/dist/commands/shared/task-backend.d.ts.map +1 -1
- package/dist/commands/shared/task-backend.js +34 -22
- package/dist/commands/shared/task-local-freshness.d.ts +13 -0
- package/dist/commands/shared/task-local-freshness.d.ts.map +1 -0
- package/dist/commands/shared/task-local-freshness.js +20 -0
- package/dist/commands/shared/task-mutation.d.ts +2 -0
- package/dist/commands/shared/task-mutation.d.ts.map +1 -1
- package/dist/commands/shared/task-mutation.js +7 -0
- package/dist/commands/task/block.d.ts.map +1 -1
- package/dist/commands/task/block.js +1 -0
- package/dist/commands/task/close-duplicate.d.ts.map +1 -1
- package/dist/commands/task/close-duplicate.js +34 -1
- package/dist/commands/task/close-shared.d.ts.map +1 -1
- package/dist/commands/task/close-shared.js +1 -0
- package/dist/commands/task/derive.js +1 -1
- package/dist/commands/task/doc-template.d.ts.map +1 -1
- package/dist/commands/task/doc-template.js +7 -11
- package/dist/commands/task/findings-add.command.d.ts +20 -0
- package/dist/commands/task/findings-add.command.d.ts.map +1 -0
- package/dist/commands/task/findings-add.command.js +165 -0
- package/dist/commands/task/findings.command.d.ts +7 -0
- package/dist/commands/task/findings.command.d.ts.map +1 -0
- package/dist/commands/task/findings.command.js +20 -0
- package/dist/commands/task/findings.d.ts +63 -0
- package/dist/commands/task/findings.d.ts.map +1 -0
- package/dist/commands/task/findings.js +188 -0
- package/dist/commands/task/finish-shared.d.ts +1 -0
- package/dist/commands/task/finish-shared.d.ts.map +1 -1
- package/dist/commands/task/finish-shared.js +60 -3
- package/dist/commands/task/finish.d.ts +10 -0
- package/dist/commands/task/finish.d.ts.map +1 -1
- package/dist/commands/task/finish.js +143 -0
- package/dist/commands/task/hosted-close-pr.command.d.ts +11 -0
- package/dist/commands/task/hosted-close-pr.command.d.ts.map +1 -0
- package/dist/commands/task/hosted-close-pr.command.js +414 -0
- package/dist/commands/task/hosted-close.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close.command.js +49 -1
- package/dist/commands/task/hosted-merge-sync.d.ts +38 -0
- package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
- package/dist/commands/task/hosted-merge-sync.js +249 -17
- package/dist/commands/task/index.d.ts +1 -0
- package/dist/commands/task/index.d.ts.map +1 -1
- package/dist/commands/task/index.js +1 -0
- package/dist/commands/task/new.d.ts +1 -0
- package/dist/commands/task/new.d.ts.map +1 -1
- package/dist/commands/task/new.js +140 -30
- package/dist/commands/task/new.spec.d.ts.map +1 -1
- package/dist/commands/task/new.spec.js +7 -0
- package/dist/commands/task/normalize.command.d.ts +2 -0
- package/dist/commands/task/normalize.command.d.ts.map +1 -1
- package/dist/commands/task/normalize.command.js +45 -0
- package/dist/commands/task/normalize.d.ts +2 -0
- package/dist/commands/task/normalize.d.ts.map +1 -1
- package/dist/commands/task/normalize.js +85 -8
- package/dist/commands/task/plan.d.ts.map +1 -1
- package/dist/commands/task/plan.js +7 -10
- package/dist/commands/task/set-status.d.ts.map +1 -1
- package/dist/commands/task/set-status.js +1 -0
- package/dist/commands/task/shared/docs.d.ts +6 -0
- package/dist/commands/task/shared/docs.d.ts.map +1 -1
- package/dist/commands/task/shared/docs.js +14 -0
- package/dist/commands/task/shared/transition-command.d.ts +2 -0
- package/dist/commands/task/shared/transition-command.d.ts.map +1 -1
- package/dist/commands/task/shared/transition-command.js +1 -0
- package/dist/commands/task/shared/transitions.d.ts.map +1 -1
- package/dist/commands/task/shared/transitions.js +11 -1
- package/dist/commands/task/shared.d.ts +1 -1
- package/dist/commands/task/shared.d.ts.map +1 -1
- package/dist/commands/task/shared.js +1 -1
- package/dist/commands/task/start-ready.d.ts.map +1 -1
- package/dist/commands/task/start-ready.js +98 -1
- package/dist/commands/task/start.d.ts.map +1 -1
- package/dist/commands/task/start.js +18 -10
- package/dist/commands/task/task.command.d.ts.map +1 -1
- package/dist/commands/task/task.command.js +4 -0
- package/dist/commands/task/verify-command-shared.d.ts +19 -0
- package/dist/commands/task/verify-command-shared.d.ts.map +1 -1
- package/dist/commands/task/verify-command-shared.js +152 -1
- package/dist/commands/task/verify-ok.command.d.ts.map +1 -1
- package/dist/commands/task/verify-ok.command.js +15 -2
- package/dist/commands/task/verify-record.d.ts +36 -0
- package/dist/commands/task/verify-record.d.ts.map +1 -1
- package/dist/commands/task/verify-record.js +193 -11
- package/dist/commands/task/verify-rework.command.d.ts.map +1 -1
- package/dist/commands/task/verify-rework.command.js +15 -2
- package/dist/commands/task/verify-show.command.d.ts +1 -1
- package/dist/commands/task/verify-show.command.d.ts.map +1 -1
- package/dist/commands/task/verify-show.command.js +28 -1
- package/dist/commands/upgrade.d.ts.map +1 -1
- package/dist/commands/upgrade.js +6 -1
- package/dist/commands/verify.run.d.ts.map +1 -1
- package/dist/commands/verify.run.js +12 -0
- package/dist/commands/verify.spec.d.ts +2 -6
- package/dist/commands/verify.spec.d.ts.map +1 -1
- package/dist/commands/verify.spec.js +30 -3
- package/dist/policy/engine.d.ts +3 -1
- package/dist/policy/engine.d.ts.map +1 -1
- package/dist/policy/engine.js +5 -6
- package/dist/policy/taxonomy.d.ts +17 -0
- package/dist/policy/taxonomy.d.ts.map +1 -0
- package/dist/policy/taxonomy.js +302 -0
- package/dist/policy/types.d.ts +2 -1
- package/dist/policy/types.d.ts.map +1 -1
- package/dist/runner/artifacts.d.ts.map +1 -1
- package/dist/runner/artifacts.js +2 -0
- package/dist/runner/context/base-prompts.d.ts +25 -0
- package/dist/runner/context/base-prompts.d.ts.map +1 -1
- package/dist/runner/context/base-prompts.js +182 -54
- package/dist/runner/context/recipe-context.d.ts.map +1 -1
- package/dist/runner/context/recipe-context.js +5 -0
- package/dist/runner/types.d.ts +12 -0
- package/dist/runner/types.d.ts.map +1 -1
- package/dist/runner/usecases/scenario-materialize-task.d.ts.map +1 -1
- package/dist/runner/usecases/scenario-materialize-task.js +81 -11
- package/dist/runner/usecases/task-run-inspect.d.ts.map +1 -1
- package/dist/runner/usecases/task-run-inspect.js +9 -7
- package/dist/runner/usecases/task-run-lifecycle-shared.d.ts.map +1 -1
- package/dist/runner/usecases/task-run-lifecycle-shared.js +8 -6
- package/dist/runner/usecases/task-run.d.ts.map +1 -1
- package/dist/runner/usecases/task-run.js +59 -12
- package/dist/runtime/approvals/index.d.ts +3 -0
- package/dist/runtime/approvals/index.d.ts.map +1 -0
- package/dist/runtime/approvals/index.js +1 -0
- package/dist/runtime/approvals/runtime.d.ts +12 -0
- package/dist/runtime/approvals/runtime.d.ts.map +1 -0
- package/dist/runtime/approvals/runtime.js +154 -0
- package/dist/runtime/approvals/types.d.ts +31 -0
- package/dist/runtime/approvals/types.d.ts.map +1 -0
- package/dist/runtime/approvals/types.js +1 -0
- package/dist/runtime/behavior/index.d.ts +3 -0
- package/dist/runtime/behavior/index.d.ts.map +1 -0
- package/dist/runtime/behavior/index.js +1 -0
- package/dist/runtime/behavior/resolve.d.ts +7 -0
- package/dist/runtime/behavior/resolve.d.ts.map +1 -0
- package/dist/runtime/behavior/resolve.js +66 -0
- package/dist/runtime/behavior/types.d.ts +25 -0
- package/dist/runtime/behavior/types.d.ts.map +1 -0
- package/dist/runtime/behavior/types.js +1 -0
- package/dist/runtime/capabilities/backend.d.ts +7 -0
- package/dist/runtime/capabilities/backend.d.ts.map +1 -0
- package/dist/runtime/capabilities/backend.js +104 -0
- package/dist/runtime/capabilities/index.d.ts +6 -0
- package/dist/runtime/capabilities/index.d.ts.map +1 -0
- package/dist/runtime/capabilities/index.js +4 -0
- package/dist/runtime/capabilities/recipe.d.ts +10 -0
- package/dist/runtime/capabilities/recipe.d.ts.map +1 -0
- package/dist/runtime/capabilities/recipe.js +123 -0
- package/dist/runtime/capabilities/registry.d.ts +6 -0
- package/dist/runtime/capabilities/registry.d.ts.map +1 -0
- package/dist/runtime/capabilities/registry.js +69 -0
- package/dist/runtime/capabilities/runner.d.ts +8 -0
- package/dist/runtime/capabilities/runner.d.ts.map +1 -0
- package/dist/runtime/capabilities/runner.js +73 -0
- package/dist/runtime/capabilities/types.d.ts +28 -0
- package/dist/runtime/capabilities/types.d.ts.map +1 -0
- package/dist/runtime/capabilities/types.js +1 -0
- package/dist/runtime/execution-profile/index.d.ts +3 -0
- package/dist/runtime/execution-profile/index.d.ts.map +1 -0
- package/dist/runtime/execution-profile/index.js +1 -0
- package/dist/runtime/execution-profile/resolve.d.ts +9 -0
- package/dist/runtime/execution-profile/resolve.d.ts.map +1 -0
- package/dist/runtime/execution-profile/resolve.js +80 -0
- package/dist/runtime/execution-profile/types.d.ts +27 -0
- package/dist/runtime/execution-profile/types.d.ts.map +1 -0
- package/dist/runtime/execution-profile/types.js +1 -0
- package/dist/runtime/explain/index.d.ts +3 -0
- package/dist/runtime/explain/index.d.ts.map +1 -0
- package/dist/runtime/explain/index.js +1 -0
- package/dist/runtime/explain/resolve.d.ts +14 -0
- package/dist/runtime/explain/resolve.d.ts.map +1 -0
- package/dist/runtime/explain/resolve.js +50 -0
- package/dist/runtime/explain/types.d.ts +28 -0
- package/dist/runtime/explain/types.d.ts.map +1 -0
- package/dist/runtime/explain/types.js +1 -0
- package/dist/runtime/harness/index.d.ts +4 -0
- package/dist/runtime/harness/index.d.ts.map +1 -0
- package/dist/runtime/harness/index.js +2 -0
- package/dist/runtime/harness/resolve-from-command-context.d.ts +4 -0
- package/dist/runtime/harness/resolve-from-command-context.d.ts.map +1 -0
- package/dist/runtime/harness/resolve-from-command-context.js +11 -0
- package/dist/runtime/harness/resolve.d.ts +13 -0
- package/dist/runtime/harness/resolve.d.ts.map +1 -0
- package/dist/runtime/harness/resolve.js +146 -0
- package/dist/runtime/harness/types.d.ts +65 -0
- package/dist/runtime/harness/types.d.ts.map +1 -0
- package/dist/runtime/harness/types.js +1 -0
- package/dist/runtime/incidents/index.d.ts +3 -0
- package/dist/runtime/incidents/index.d.ts.map +1 -0
- package/dist/runtime/incidents/index.js +1 -0
- package/dist/runtime/incidents/resolve.d.ts +26 -0
- package/dist/runtime/incidents/resolve.d.ts.map +1 -0
- package/dist/runtime/incidents/resolve.js +683 -0
- package/dist/runtime/incidents/types.d.ts +84 -0
- package/dist/runtime/incidents/types.d.ts.map +1 -0
- package/dist/runtime/incidents/types.js +1 -0
- package/dist/runtime/protocol/index.d.ts +3 -0
- package/dist/runtime/protocol/index.d.ts.map +1 -0
- package/dist/runtime/protocol/index.js +2 -0
- package/dist/runtime/protocol/resolve.d.ts +16 -0
- package/dist/runtime/protocol/resolve.d.ts.map +1 -0
- package/dist/runtime/protocol/resolve.js +36 -0
- package/dist/runtime/protocol/types.d.ts +36 -0
- package/dist/runtime/protocol/types.d.ts.map +1 -0
- package/dist/runtime/protocol/types.js +1 -0
- package/dist/runtime/task-intake/index.d.ts +3 -0
- package/dist/runtime/task-intake/index.d.ts.map +1 -0
- package/dist/runtime/task-intake/index.js +1 -0
- package/dist/runtime/task-intake/resolve.d.ts +48 -0
- package/dist/runtime/task-intake/resolve.d.ts.map +1 -0
- package/dist/runtime/task-intake/resolve.js +316 -0
- package/dist/runtime/task-intake/types.d.ts +117 -0
- package/dist/runtime/task-intake/types.d.ts.map +1 -0
- package/dist/runtime/task-intake/types.js +1 -0
- package/dist/shared/env.d.ts +1 -0
- package/dist/shared/env.d.ts.map +1 -1
- package/dist/shared/env.js +22 -1
- package/dist/shared/protected-paths.d.ts +4 -0
- package/dist/shared/protected-paths.d.ts.map +1 -1
- package/dist/shared/protected-paths.js +8 -4
- package/dist/usecases/context/resolve-context.d.ts +55 -6
- package/dist/usecases/context/resolve-context.d.ts.map +1 -1
- package/dist/usecases/context/resolve-context.js +96 -6
- package/dist/usecases/task/task-list-usecase.d.ts.map +1 -1
- package/dist/usecases/task/task-list-usecase.js +8 -2
- package/dist/usecases/task/task-new-usecase.js +4 -4
- package/package.json +2 -2
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"package_dir": "/home/runner/work/agentplane/agentplane/packages/agentplane",
|
|
4
|
-
"generated_at": "2026-04-
|
|
5
|
-
"git_head": "
|
|
6
|
-
"src_cli_mtime_ms":
|
|
4
|
+
"generated_at": "2026-04-15T15:43:13.910Z",
|
|
5
|
+
"git_head": "d95b2762f78815b60407a62f2227136c85cae5ee",
|
|
6
|
+
"src_cli_mtime_ms": 1776267734651.4321,
|
|
7
7
|
"src_index_mtime_ms": null,
|
|
8
|
-
"dist_cli_mtime_ms":
|
|
8
|
+
"dist_cli_mtime_ms": 1776267793227.7764,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
10
|
+
"tsbuildinfo_mtime_ms": 1776267793285.7769,
|
|
11
11
|
"watched_runtime_paths": [
|
|
12
12
|
"src",
|
|
13
13
|
"bin/agentplane.js",
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"bin/runtime-context.js",
|
|
16
16
|
"bin/stale-dist-policy.js"
|
|
17
17
|
],
|
|
18
|
-
"watched_runtime_snapshot_hash": "
|
|
18
|
+
"watched_runtime_snapshot_hash": "aadea11d0cf45f28a8d4912a60cadc259291c4725506cf617df8a1aa313faecb",
|
|
19
19
|
"watched_runtime_files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "bin/agentplane.js",
|
|
22
|
-
"sha256": "
|
|
23
|
-
"size_bytes":
|
|
22
|
+
"sha256": "388474af70f60392a8689eb451a5482bcc8ddff1ee2b6c49cac36454554affe4",
|
|
23
|
+
"size_bytes": 10019
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"path": "bin/dist-guard.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"path": "bin/stale-dist-policy.js",
|
|
37
|
-
"sha256": "
|
|
38
|
-
"size_bytes":
|
|
37
|
+
"sha256": "6506f14e23cf7325ff5de373e9c9a67b345f86546aa083745756d38c2db8414a",
|
|
38
|
+
"size_bytes": 2028
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"path": "src/adapters/clock/system-clock-adapter.ts",
|
|
@@ -244,8 +244,8 @@
|
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
"path": "src/cli/bootstrap-guide.ts",
|
|
247
|
-
"sha256": "
|
|
248
|
-
"size_bytes":
|
|
247
|
+
"sha256": "3b07c9784c96ded54ec32792b1aab45fc88385b7aac196bf7350608acc4db64d",
|
|
248
|
+
"size_bytes": 6891
|
|
249
249
|
},
|
|
250
250
|
{
|
|
251
251
|
"path": "src/cli/checksum.ts",
|
|
@@ -259,18 +259,18 @@
|
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"path": "src/cli/command-guide.ts",
|
|
262
|
-
"sha256": "
|
|
263
|
-
"size_bytes":
|
|
262
|
+
"sha256": "e255edf911de9114ae8cfdcdae8f667fb69f1116351f8dd2d411c52b295aa9af",
|
|
263
|
+
"size_bytes": 10457
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"path": "src/cli/command-invocations.ts",
|
|
267
|
-
"sha256": "
|
|
268
|
-
"size_bytes":
|
|
267
|
+
"sha256": "51e76a769ffd6dd60441c8f5d532aeff816afc1a664ede43753892c32187027d",
|
|
268
|
+
"size_bytes": 1774
|
|
269
269
|
},
|
|
270
270
|
{
|
|
271
271
|
"path": "src/cli/command-snippets.ts",
|
|
272
|
-
"sha256": "
|
|
273
|
-
"size_bytes":
|
|
272
|
+
"sha256": "bca9b8348c7990a8aea006af44eadaa4e21123e0d32360cec68dcfb7ec7fa85f",
|
|
273
|
+
"size_bytes": 1380
|
|
274
274
|
},
|
|
275
275
|
{
|
|
276
276
|
"path": "src/cli/critical/cli-runner.ts",
|
|
@@ -334,13 +334,13 @@
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"path": "src/cli/run-cli.test-helpers.ts",
|
|
337
|
-
"sha256": "
|
|
338
|
-
"size_bytes":
|
|
337
|
+
"sha256": "f68d86f7fb9489d8de70da628f30ad1535b8b9b4fd31eaa1f225423f238dac7b",
|
|
338
|
+
"size_bytes": 29789
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"path": "src/cli/run-cli.ts",
|
|
342
|
-
"sha256": "
|
|
343
|
-
"size_bytes":
|
|
342
|
+
"sha256": "f9708689f36a7ca3bf64eafdfd960842d574c634dd6baea001df9a15395036d6",
|
|
343
|
+
"size_bytes": 11525
|
|
344
344
|
},
|
|
345
345
|
{
|
|
346
346
|
"path": "src/cli/run-cli/command-catalog.ts",
|
|
@@ -349,8 +349,8 @@
|
|
|
349
349
|
},
|
|
350
350
|
{
|
|
351
351
|
"path": "src/cli/run-cli/command-catalog/core.ts",
|
|
352
|
-
"sha256": "
|
|
353
|
-
"size_bytes":
|
|
352
|
+
"sha256": "902c1210f32d6b14a91a62b8aa3650cb9c8f120cbb2aaa4b39529bbc1b360c2e",
|
|
353
|
+
"size_bytes": 7941
|
|
354
354
|
},
|
|
355
355
|
{
|
|
356
356
|
"path": "src/cli/run-cli/command-catalog/lifecycle.ts",
|
|
@@ -359,8 +359,8 @@
|
|
|
359
359
|
},
|
|
360
360
|
{
|
|
361
361
|
"path": "src/cli/run-cli/command-catalog/project.ts",
|
|
362
|
-
"sha256": "
|
|
363
|
-
"size_bytes":
|
|
362
|
+
"sha256": "6b04b61d0b07b76857539e6c04965a559a033de47cb8996c1467b69989b60257",
|
|
363
|
+
"size_bytes": 7578
|
|
364
364
|
},
|
|
365
365
|
{
|
|
366
366
|
"path": "src/cli/run-cli/command-catalog/shared.ts",
|
|
@@ -369,13 +369,13 @@
|
|
|
369
369
|
},
|
|
370
370
|
{
|
|
371
371
|
"path": "src/cli/run-cli/command-catalog/task.ts",
|
|
372
|
-
"sha256": "
|
|
373
|
-
"size_bytes":
|
|
372
|
+
"sha256": "7251cf9ca4f89eb37403068c6e639ef33fde7db91db486b5c7131bfce987fa90",
|
|
373
|
+
"size_bytes": 12667
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "src/cli/run-cli/commands/config.ts",
|
|
377
|
-
"sha256": "
|
|
378
|
-
"size_bytes":
|
|
377
|
+
"sha256": "7ca450c159aa35d1fda0c25b2213f9eeafee84bc62795a4e3975a98514c0b5a2",
|
|
378
|
+
"size_bytes": 10980
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
381
|
"path": "src/cli/run-cli/commands/core.ts",
|
|
@@ -394,8 +394,8 @@
|
|
|
394
394
|
},
|
|
395
395
|
{
|
|
396
396
|
"path": "src/cli/run-cli/commands/core/preflight.ts",
|
|
397
|
-
"sha256": "
|
|
398
|
-
"size_bytes":
|
|
397
|
+
"sha256": "d01086b9b63322d79e7821532ceba6e84a8eefdf224b1aabdcd9e6b1bb774ded",
|
|
398
|
+
"size_bytes": 13380
|
|
399
399
|
},
|
|
400
400
|
{
|
|
401
401
|
"path": "src/cli/run-cli/commands/core/quickstart.ts",
|
|
@@ -554,8 +554,8 @@
|
|
|
554
554
|
},
|
|
555
555
|
{
|
|
556
556
|
"path": "src/commands/backend.ts",
|
|
557
|
-
"sha256": "
|
|
558
|
-
"size_bytes":
|
|
557
|
+
"sha256": "81558674177beef1f9468155f1789e115d12d5dfec024401c45b303f62d35c86",
|
|
558
|
+
"size_bytes": 8710
|
|
559
559
|
},
|
|
560
560
|
{
|
|
561
561
|
"path": "src/commands/backend/sync.command.ts",
|
|
@@ -584,8 +584,8 @@
|
|
|
584
584
|
},
|
|
585
585
|
{
|
|
586
586
|
"path": "src/commands/branch/cleanup-merged.ts",
|
|
587
|
-
"sha256": "
|
|
588
|
-
"size_bytes":
|
|
587
|
+
"sha256": "08f7e0ff96ffbeb90c41c0b0a7b1da8caeea602afc3ad97a5d4d3b8faf088205",
|
|
588
|
+
"size_bytes": 9888
|
|
589
589
|
},
|
|
590
590
|
{
|
|
591
591
|
"path": "src/commands/branch/index.ts",
|
|
@@ -629,13 +629,13 @@
|
|
|
629
629
|
},
|
|
630
630
|
{
|
|
631
631
|
"path": "src/commands/branch/work-start.ts",
|
|
632
|
-
"sha256": "
|
|
633
|
-
"size_bytes":
|
|
632
|
+
"sha256": "c07b2b3d944bb35d756a6ea564b27e1b95a4034e58d5d3986360ab42625b6756",
|
|
633
|
+
"size_bytes": 12825
|
|
634
634
|
},
|
|
635
635
|
{
|
|
636
636
|
"path": "src/commands/cleanup/merged.command.ts",
|
|
637
|
-
"sha256": "
|
|
638
|
-
"size_bytes":
|
|
637
|
+
"sha256": "a669d7a96dbe8e05ef832945f40fdcba844d7b97bd4e6781a10174b089e48e63",
|
|
638
|
+
"size_bytes": 3898
|
|
639
639
|
},
|
|
640
640
|
{
|
|
641
641
|
"path": "src/commands/commit.command.ts",
|
|
@@ -654,8 +654,8 @@
|
|
|
654
654
|
},
|
|
655
655
|
{
|
|
656
656
|
"path": "src/commands/doctor.run.ts",
|
|
657
|
-
"sha256": "
|
|
658
|
-
"size_bytes":
|
|
657
|
+
"sha256": "0adb43e04b3b07a52ea370ce55527f5c35680a2d2e9b078a74b00f272486a817",
|
|
658
|
+
"size_bytes": 3548
|
|
659
659
|
},
|
|
660
660
|
{
|
|
661
661
|
"path": "src/commands/doctor.spec.ts",
|
|
@@ -667,10 +667,15 @@
|
|
|
667
667
|
"sha256": "c62fe8347b08a68597835531353ec04192fd9041192240977f68730679f6df2a",
|
|
668
668
|
"size_bytes": 9110
|
|
669
669
|
},
|
|
670
|
+
{
|
|
671
|
+
"path": "src/commands/doctor/branch-pr.ts",
|
|
672
|
+
"sha256": "4cbad1d0e9d93262b54134d802b5913d4ce85229284f40d367e7f8b7fbf120f0",
|
|
673
|
+
"size_bytes": 4014
|
|
674
|
+
},
|
|
670
675
|
{
|
|
671
676
|
"path": "src/commands/doctor/fixes.ts",
|
|
672
|
-
"sha256": "
|
|
673
|
-
"size_bytes":
|
|
677
|
+
"sha256": "ea721dffebd85b396d55162ffc2618ec676f647a7a3f639d42b97ae1eb88fde7",
|
|
678
|
+
"size_bytes": 4209
|
|
674
679
|
},
|
|
675
680
|
{
|
|
676
681
|
"path": "src/commands/doctor/layering.ts",
|
|
@@ -694,13 +699,13 @@
|
|
|
694
699
|
},
|
|
695
700
|
{
|
|
696
701
|
"path": "src/commands/finish.run.ts",
|
|
697
|
-
"sha256": "
|
|
698
|
-
"size_bytes":
|
|
702
|
+
"sha256": "471f908a445f97dad7ec94cfce518c3072f909c38267010e4846287444469bda",
|
|
703
|
+
"size_bytes": 2044
|
|
699
704
|
},
|
|
700
705
|
{
|
|
701
706
|
"path": "src/commands/finish.spec.ts",
|
|
702
|
-
"sha256": "
|
|
703
|
-
"size_bytes":
|
|
707
|
+
"sha256": "02f502b6da131d8def6ce65ab45a342aa006667b0b253889a655ce804c70a98a",
|
|
708
|
+
"size_bytes": 15406
|
|
704
709
|
},
|
|
705
710
|
{
|
|
706
711
|
"path": "src/commands/guard/clean.command.ts",
|
|
@@ -724,13 +729,13 @@
|
|
|
724
729
|
},
|
|
725
730
|
{
|
|
726
731
|
"path": "src/commands/guard/impl/close-message.ts",
|
|
727
|
-
"sha256": "
|
|
728
|
-
"size_bytes":
|
|
732
|
+
"sha256": "326c5c647fb9ba77258bd0e48658c160bbbd0818fb3a7e94480859a1efd0b9ea",
|
|
733
|
+
"size_bytes": 7387
|
|
729
734
|
},
|
|
730
735
|
{
|
|
731
736
|
"path": "src/commands/guard/impl/commands.ts",
|
|
732
|
-
"sha256": "
|
|
733
|
-
"size_bytes":
|
|
737
|
+
"sha256": "f49ab03e2c230c749a87e37ca7af8bfe68b43996d9f8fe75425ca40e15a969ab",
|
|
738
|
+
"size_bytes": 19856
|
|
734
739
|
},
|
|
735
740
|
{
|
|
736
741
|
"path": "src/commands/guard/impl/comment-commit.ts",
|
|
@@ -739,8 +744,8 @@
|
|
|
739
744
|
},
|
|
740
745
|
{
|
|
741
746
|
"path": "src/commands/guard/impl/env.ts",
|
|
742
|
-
"sha256": "
|
|
743
|
-
"size_bytes":
|
|
747
|
+
"sha256": "b0a63872dcc25cb5c422f0a748fec8e3486debefd9995e1b37c3380d5cfea66d",
|
|
748
|
+
"size_bytes": 925
|
|
744
749
|
},
|
|
745
750
|
{
|
|
746
751
|
"path": "src/commands/guard/impl/policy.ts",
|
|
@@ -764,8 +769,8 @@
|
|
|
764
769
|
},
|
|
765
770
|
{
|
|
766
771
|
"path": "src/commands/hooks/index.ts",
|
|
767
|
-
"sha256": "
|
|
768
|
-
"size_bytes":
|
|
772
|
+
"sha256": "4b711c85d07964b80eccf2256a12a15c266c788dc15e7e8619b6c4965338e2e5",
|
|
773
|
+
"size_bytes": 13958
|
|
769
774
|
},
|
|
770
775
|
{
|
|
771
776
|
"path": "src/commands/hooks/install.command.ts",
|
|
@@ -782,6 +787,26 @@
|
|
|
782
787
|
"sha256": "a79ebbf0a2a6e8b6a8de3f6c58f249b8d995b0ece319dd140fd8a4955896c370",
|
|
783
788
|
"size_bytes": 844
|
|
784
789
|
},
|
|
790
|
+
{
|
|
791
|
+
"path": "src/commands/incidents/advise.command.ts",
|
|
792
|
+
"sha256": "8f84063a6393e6a40d02e97a6727b6308880b8d119a37ef3a82e45b21cf29f00",
|
|
793
|
+
"size_bytes": 5365
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"path": "src/commands/incidents/collect.command.ts",
|
|
797
|
+
"sha256": "99dd1e076bc795beb252c5f6ce0e4709641d65cdba89f6eaeb9b29743d6f851b",
|
|
798
|
+
"size_bytes": 3107
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"path": "src/commands/incidents/incidents.command.ts",
|
|
802
|
+
"sha256": "1d4c7f45c126ab9757889f743d88cb7092ab23d3057770475b8a80308fb7817a",
|
|
803
|
+
"size_bytes": 1106
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"path": "src/commands/incidents/shared.ts",
|
|
807
|
+
"sha256": "d2c0294b034913e00af28db6fcf236544b8b600f08e77b79b91e823b649855e0",
|
|
808
|
+
"size_bytes": 14683
|
|
809
|
+
},
|
|
785
810
|
{
|
|
786
811
|
"path": "src/commands/integrate.command.ts",
|
|
787
812
|
"sha256": "588e0cf9c0b8fdda5cc301eb14f53ded3b489522d457ad0cddf5c172cf63f51e",
|
|
@@ -789,13 +814,23 @@
|
|
|
789
814
|
},
|
|
790
815
|
{
|
|
791
816
|
"path": "src/commands/pr/check.ts",
|
|
792
|
-
"sha256": "
|
|
793
|
-
"size_bytes":
|
|
817
|
+
"sha256": "5a50dd472e37b7d36b28303ebbb50901cecba49ce2a74fd568c416c251c5dbe2",
|
|
818
|
+
"size_bytes": 13722
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"path": "src/commands/pr/close-superseded.ts",
|
|
822
|
+
"sha256": "7ae97b6bae0a29244269983861de314726bdc053f960b46d10443666a5e5907d",
|
|
823
|
+
"size_bytes": 5339
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"path": "src/commands/pr/close.ts",
|
|
827
|
+
"sha256": "6d5fc636cd0a8c93f942a96689c1b9b3e41f56e689ec86c4d7ccefe20060802d",
|
|
828
|
+
"size_bytes": 4727
|
|
794
829
|
},
|
|
795
830
|
{
|
|
796
831
|
"path": "src/commands/pr/index.ts",
|
|
797
|
-
"sha256": "
|
|
798
|
-
"size_bytes":
|
|
832
|
+
"sha256": "3e0dcc4f76eb632ac55c07d67c8610cbc8afdd1b997d190341415d5e8c09c1cd",
|
|
833
|
+
"size_bytes": 312
|
|
799
834
|
},
|
|
800
835
|
{
|
|
801
836
|
"path": "src/commands/pr/integrate.ts",
|
|
@@ -804,13 +839,18 @@
|
|
|
804
839
|
},
|
|
805
840
|
{
|
|
806
841
|
"path": "src/commands/pr/integrate/artifacts.ts",
|
|
807
|
-
"sha256": "
|
|
808
|
-
"size_bytes":
|
|
842
|
+
"sha256": "080dbd4030d40c1c43805cbbe5c0314633d65725cb5c18662547eb31c5f78ead",
|
|
843
|
+
"size_bytes": 4830
|
|
809
844
|
},
|
|
810
845
|
{
|
|
811
846
|
"path": "src/commands/pr/integrate/cmd.ts",
|
|
812
|
-
"sha256": "
|
|
813
|
-
"size_bytes":
|
|
847
|
+
"sha256": "4683f17982e020a625859c1b02ad68cdae48cbf37e77bfea592426c95b47184f",
|
|
848
|
+
"size_bytes": 7199
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"path": "src/commands/pr/integrate/internal/bootstrap-guidance.ts",
|
|
852
|
+
"sha256": "0af6e7f5293f41d45593fd1c3fa3fa63072f5578206431f0702ec64ad087260a",
|
|
853
|
+
"size_bytes": 2451
|
|
814
854
|
},
|
|
815
855
|
{
|
|
816
856
|
"path": "src/commands/pr/integrate/internal/cleanup.ts",
|
|
@@ -819,18 +859,23 @@
|
|
|
819
859
|
},
|
|
820
860
|
{
|
|
821
861
|
"path": "src/commands/pr/integrate/internal/finalize.ts",
|
|
822
|
-
"sha256": "
|
|
823
|
-
"size_bytes":
|
|
862
|
+
"sha256": "36220cf2a5ce2f97241c91082e5534197ac2c6ac16d11de8977a9b892d60b288",
|
|
863
|
+
"size_bytes": 4916
|
|
824
864
|
},
|
|
825
865
|
{
|
|
826
866
|
"path": "src/commands/pr/integrate/internal/merge.ts",
|
|
827
|
-
"sha256": "
|
|
828
|
-
"size_bytes":
|
|
867
|
+
"sha256": "3e72d725e7fc05ae96bf4db23fc2caafee14429dbeabaa0add46e7539ffc4e1c",
|
|
868
|
+
"size_bytes": 11736
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"path": "src/commands/pr/integrate/internal/post-integrate-bootstrap.ts",
|
|
872
|
+
"sha256": "e403c173338975c20d2aba962a1c1ad3626ce127a028d238d8a712f948f2b837",
|
|
873
|
+
"size_bytes": 983
|
|
829
874
|
},
|
|
830
875
|
{
|
|
831
876
|
"path": "src/commands/pr/integrate/internal/prepare.ts",
|
|
832
|
-
"sha256": "
|
|
833
|
-
"size_bytes":
|
|
877
|
+
"sha256": "7840dd0b6c74c418bb9b6d16d85116020eebd47463e5d8e1bd02b25569f2371c",
|
|
878
|
+
"size_bytes": 9279
|
|
834
879
|
},
|
|
835
880
|
{
|
|
836
881
|
"path": "src/commands/pr/integrate/internal/worktree.ts",
|
|
@@ -842,35 +887,55 @@
|
|
|
842
887
|
"sha256": "c5bb38b7a2e06e50dc75c0ed79f3f2e9c4c0acccffb23768ac4b59c92a742e7c",
|
|
843
888
|
"size_bytes": 2799
|
|
844
889
|
},
|
|
890
|
+
{
|
|
891
|
+
"path": "src/commands/pr/internal/freshness.ts",
|
|
892
|
+
"sha256": "4093c59f8d9d4064d55f82c8a92bece944a38d4da18ec437f477d4e8448a7064",
|
|
893
|
+
"size_bytes": 2377
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"path": "src/commands/pr/internal/gh-api.ts",
|
|
897
|
+
"sha256": "160327edae0d0d9186e1fa43fbad483321f3eebe412043be1ae08af92fbfde6e",
|
|
898
|
+
"size_bytes": 3142
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"path": "src/commands/pr/internal/note-store.ts",
|
|
902
|
+
"sha256": "47768440643824fdaac4452af5e4c69703c8f8088670a69e7dc2f276a8f3b8c8",
|
|
903
|
+
"size_bytes": 2467
|
|
904
|
+
},
|
|
845
905
|
{
|
|
846
906
|
"path": "src/commands/pr/internal/pr-paths.ts",
|
|
847
|
-
"sha256": "
|
|
848
|
-
"size_bytes":
|
|
907
|
+
"sha256": "93c111c3026ce464746f8e88c8e94be1e8ba9891f4c92a6b62cf6757f4e4dc18",
|
|
908
|
+
"size_bytes": 2741
|
|
849
909
|
},
|
|
850
910
|
{
|
|
851
911
|
"path": "src/commands/pr/internal/review-template.ts",
|
|
852
|
-
"sha256": "
|
|
853
|
-
"size_bytes":
|
|
912
|
+
"sha256": "93a98a192f280dba109f85c4b17ed7efd67d03c40896738102729bff16902af2",
|
|
913
|
+
"size_bytes": 9018
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"path": "src/commands/pr/internal/sync.ts",
|
|
917
|
+
"sha256": "cd34b2f8ddea3acb5b6fe0265a7d3af6900f2696c3dd314c601ec4f6045943c8",
|
|
918
|
+
"size_bytes": 23319
|
|
854
919
|
},
|
|
855
920
|
{
|
|
856
921
|
"path": "src/commands/pr/note.ts",
|
|
857
|
-
"sha256": "
|
|
858
|
-
"size_bytes":
|
|
922
|
+
"sha256": "f2b7515353397b581105e93d837ccf7081557865c6d4fb2dd967bd3fefb8df0a",
|
|
923
|
+
"size_bytes": 3707
|
|
859
924
|
},
|
|
860
925
|
{
|
|
861
926
|
"path": "src/commands/pr/open.ts",
|
|
862
|
-
"sha256": "
|
|
863
|
-
"size_bytes":
|
|
927
|
+
"sha256": "15bf5fe8fb3f80e8e73f7690b50848942b00880a9a8b4f14abc2650fe51d2f8a",
|
|
928
|
+
"size_bytes": 1961
|
|
864
929
|
},
|
|
865
930
|
{
|
|
866
931
|
"path": "src/commands/pr/pr.command.ts",
|
|
867
|
-
"sha256": "
|
|
868
|
-
"size_bytes":
|
|
932
|
+
"sha256": "fa4000a2214c5daa65c5b54c3dace2e7e70429715ff1911e277f004242592d60",
|
|
933
|
+
"size_bytes": 11123
|
|
869
934
|
},
|
|
870
935
|
{
|
|
871
936
|
"path": "src/commands/pr/update.ts",
|
|
872
|
-
"sha256": "
|
|
873
|
-
"size_bytes":
|
|
937
|
+
"sha256": "bc675c236a5a000bac3ab12c32ec9935a7157c056e848468ed8181777d2434be",
|
|
938
|
+
"size_bytes": 3470
|
|
874
939
|
},
|
|
875
940
|
{
|
|
876
941
|
"path": "src/commands/ready.command.ts",
|
|
@@ -919,8 +984,8 @@
|
|
|
919
984
|
},
|
|
920
985
|
{
|
|
921
986
|
"path": "src/commands/recipes/impl/commands/cache-prune.ts",
|
|
922
|
-
"sha256": "
|
|
923
|
-
"size_bytes":
|
|
987
|
+
"sha256": "a9866b5fcefe980c5719e6c6df90b7f60ecf5b289c6f6cb04fbdc5580c47c632",
|
|
988
|
+
"size_bytes": 4748
|
|
924
989
|
},
|
|
925
990
|
{
|
|
926
991
|
"path": "src/commands/recipes/impl/commands/explain.ts",
|
|
@@ -934,13 +999,13 @@
|
|
|
934
999
|
},
|
|
935
1000
|
{
|
|
936
1001
|
"path": "src/commands/recipes/impl/commands/install.ts",
|
|
937
|
-
"sha256": "
|
|
938
|
-
"size_bytes":
|
|
1002
|
+
"sha256": "675a1902bc6d3b73a27bd6d11e6a7ed9ab14b3ed54e65adceb88bd101601315e",
|
|
1003
|
+
"size_bytes": 10686
|
|
939
1004
|
},
|
|
940
1005
|
{
|
|
941
1006
|
"path": "src/commands/recipes/impl/commands/list-remote.ts",
|
|
942
|
-
"sha256": "
|
|
943
|
-
"size_bytes":
|
|
1007
|
+
"sha256": "e865327f6fed290e8b277ac59ba4b24000bd48d8c2bde4d29f751744ab4dc5a3",
|
|
1008
|
+
"size_bytes": 2177
|
|
944
1009
|
},
|
|
945
1010
|
{
|
|
946
1011
|
"path": "src/commands/recipes/impl/commands/list.ts",
|
|
@@ -949,8 +1014,8 @@
|
|
|
949
1014
|
},
|
|
950
1015
|
{
|
|
951
1016
|
"path": "src/commands/recipes/impl/commands/remove.ts",
|
|
952
|
-
"sha256": "
|
|
953
|
-
"size_bytes":
|
|
1017
|
+
"sha256": "88b5f3127bc41b433e412e1898f30f2d2ced6bf409e2d558058cee6c0988dc6b",
|
|
1018
|
+
"size_bytes": 1807
|
|
954
1019
|
},
|
|
955
1020
|
{
|
|
956
1021
|
"path": "src/commands/recipes/impl/constants.ts",
|
|
@@ -1054,8 +1119,8 @@
|
|
|
1054
1119
|
},
|
|
1055
1120
|
{
|
|
1056
1121
|
"path": "src/commands/release/apply.command.ts",
|
|
1057
|
-
"sha256": "
|
|
1058
|
-
"size_bytes":
|
|
1122
|
+
"sha256": "02a7f022ce64366a8d69ab63a619a01555bc0da8877554d71d346172910abe78",
|
|
1123
|
+
"size_bytes": 14301
|
|
1059
1124
|
},
|
|
1060
1125
|
{
|
|
1061
1126
|
"path": "src/commands/release/apply.mutation.ts",
|
|
@@ -1064,8 +1129,8 @@
|
|
|
1064
1129
|
},
|
|
1065
1130
|
{
|
|
1066
1131
|
"path": "src/commands/release/apply.preflight.ts",
|
|
1067
|
-
"sha256": "
|
|
1068
|
-
"size_bytes":
|
|
1132
|
+
"sha256": "4e3fe84b9b5a202031372e84a3ef78636de4149318eede91b35280f83f628616",
|
|
1133
|
+
"size_bytes": 14833
|
|
1069
1134
|
},
|
|
1070
1135
|
{
|
|
1071
1136
|
"path": "src/commands/release/apply.reporting.ts",
|
|
@@ -1134,8 +1199,13 @@
|
|
|
1134
1199
|
},
|
|
1135
1200
|
{
|
|
1136
1201
|
"path": "src/commands/shared/approval-requirements.ts",
|
|
1137
|
-
"sha256": "
|
|
1138
|
-
"size_bytes":
|
|
1202
|
+
"sha256": "bf2c8512a154075556a021a397cb3b177e7430de6569a7ee778af87b4abf62b0",
|
|
1203
|
+
"size_bytes": 773
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
"path": "src/commands/shared/gh-transport.ts",
|
|
1207
|
+
"sha256": "9b93dcfae995bd3787c160ebddeb25cb3b6baeb8949f4b2df6bbeb4ab06fecdc",
|
|
1208
|
+
"size_bytes": 2550
|
|
1139
1209
|
},
|
|
1140
1210
|
{
|
|
1141
1211
|
"path": "src/commands/shared/git-context.ts",
|
|
@@ -1144,18 +1214,18 @@
|
|
|
1144
1214
|
},
|
|
1145
1215
|
{
|
|
1146
1216
|
"path": "src/commands/shared/git-diff.ts",
|
|
1147
|
-
"sha256": "
|
|
1148
|
-
"size_bytes":
|
|
1217
|
+
"sha256": "65b55b55c45f431c5737e57a11ac12a9ae164c4b867c4757552c11cba6a5a166",
|
|
1218
|
+
"size_bytes": 1961
|
|
1149
1219
|
},
|
|
1150
1220
|
{
|
|
1151
1221
|
"path": "src/commands/shared/git-ops.ts",
|
|
1152
|
-
"sha256": "
|
|
1153
|
-
"size_bytes":
|
|
1222
|
+
"sha256": "c5b2dc775811fa770e859619dab26eb7d91007cb6c9f19c9fd922fbe2e263fe6",
|
|
1223
|
+
"size_bytes": 7340
|
|
1154
1224
|
},
|
|
1155
1225
|
{
|
|
1156
1226
|
"path": "src/commands/shared/git-worktree.ts",
|
|
1157
|
-
"sha256": "
|
|
1158
|
-
"size_bytes":
|
|
1227
|
+
"sha256": "80b69c8e562da12bf305e3a83c50cda8ae0f00154598ed1be2aab1cf0ed0e8c9",
|
|
1228
|
+
"size_bytes": 2783
|
|
1159
1229
|
},
|
|
1160
1230
|
{
|
|
1161
1231
|
"path": "src/commands/shared/git.ts",
|
|
@@ -1164,8 +1234,8 @@
|
|
|
1164
1234
|
},
|
|
1165
1235
|
{
|
|
1166
1236
|
"path": "src/commands/shared/network-approval.ts",
|
|
1167
|
-
"sha256": "
|
|
1168
|
-
"size_bytes":
|
|
1237
|
+
"sha256": "c56aa2b1b65211fd043a4a5ccda7d4cae53d43758b1945ec6c40c9cf57e9d843",
|
|
1238
|
+
"size_bytes": 568
|
|
1169
1239
|
},
|
|
1170
1240
|
{
|
|
1171
1241
|
"path": "src/commands/shared/operator-pipeline.ts",
|
|
@@ -1182,10 +1252,15 @@
|
|
|
1182
1252
|
"sha256": "e28583db7819c49280e0a4abd5fd7c650e093557a895dfc160b9037871196581",
|
|
1183
1253
|
"size_bytes": 519
|
|
1184
1254
|
},
|
|
1255
|
+
{
|
|
1256
|
+
"path": "src/commands/shared/post-commit-pr-artifacts.ts",
|
|
1257
|
+
"sha256": "2447e52f0482bb1d3621334105ffa3305a9e6bd73c067582012471070732d736",
|
|
1258
|
+
"size_bytes": 1030
|
|
1259
|
+
},
|
|
1185
1260
|
{
|
|
1186
1261
|
"path": "src/commands/shared/pr-meta.ts",
|
|
1187
|
-
"sha256": "
|
|
1188
|
-
"size_bytes":
|
|
1262
|
+
"sha256": "828357424af5f66cedb6a6152fcf66cf334d4707a818371f9b933a902eec38b7",
|
|
1263
|
+
"size_bytes": 12036
|
|
1189
1264
|
},
|
|
1190
1265
|
{
|
|
1191
1266
|
"path": "src/commands/shared/reconcile-check.ts",
|
|
@@ -1194,18 +1269,23 @@
|
|
|
1194
1269
|
},
|
|
1195
1270
|
{
|
|
1196
1271
|
"path": "src/commands/shared/task-backend.ts",
|
|
1197
|
-
"sha256": "
|
|
1198
|
-
"size_bytes":
|
|
1272
|
+
"sha256": "67b99d9510b8e681c26e288132f4e421896dd550a994204238f4ab7af23c9086",
|
|
1273
|
+
"size_bytes": 9588
|
|
1199
1274
|
},
|
|
1200
1275
|
{
|
|
1201
1276
|
"path": "src/commands/shared/task-handoff.ts",
|
|
1202
1277
|
"sha256": "c0205fc677b406ae11198e7e6657941b7079960c36382de8273a2044145eb200",
|
|
1203
1278
|
"size_bytes": 6625
|
|
1204
1279
|
},
|
|
1280
|
+
{
|
|
1281
|
+
"path": "src/commands/shared/task-local-freshness.ts",
|
|
1282
|
+
"sha256": "7b5060b0c5c973db8176e1022756a52f17c7cc28909e2c6ba5d1d3e265529282",
|
|
1283
|
+
"size_bytes": 981
|
|
1284
|
+
},
|
|
1205
1285
|
{
|
|
1206
1286
|
"path": "src/commands/shared/task-mutation.ts",
|
|
1207
|
-
"sha256": "
|
|
1208
|
-
"size_bytes":
|
|
1287
|
+
"sha256": "a63e0cef10e98eaaaa90d899bd6c0ff2336bb98a236b07a9b4c5780da14e97e4",
|
|
1288
|
+
"size_bytes": 4304
|
|
1209
1289
|
},
|
|
1210
1290
|
{
|
|
1211
1291
|
"path": "src/commands/shared/task-store.ts",
|
|
@@ -1244,8 +1324,8 @@
|
|
|
1244
1324
|
},
|
|
1245
1325
|
{
|
|
1246
1326
|
"path": "src/commands/task/block.ts",
|
|
1247
|
-
"sha256": "
|
|
1248
|
-
"size_bytes":
|
|
1327
|
+
"sha256": "095ec477b18c779e0be9983b0cd5d370cea90345d5247e5c357683882da6977e",
|
|
1328
|
+
"size_bytes": 3573
|
|
1249
1329
|
},
|
|
1250
1330
|
{
|
|
1251
1331
|
"path": "src/commands/task/close-duplicate.command.ts",
|
|
@@ -1254,8 +1334,8 @@
|
|
|
1254
1334
|
},
|
|
1255
1335
|
{
|
|
1256
1336
|
"path": "src/commands/task/close-duplicate.ts",
|
|
1257
|
-
"sha256": "
|
|
1258
|
-
"size_bytes":
|
|
1337
|
+
"sha256": "4c6a9fead2c075e0be9298eb1a8e15d15b6df0ee5a201488c66730058c4d1c2b",
|
|
1338
|
+
"size_bytes": 4202
|
|
1259
1339
|
},
|
|
1260
1340
|
{
|
|
1261
1341
|
"path": "src/commands/task/close-noop.command.ts",
|
|
@@ -1269,8 +1349,8 @@
|
|
|
1269
1349
|
},
|
|
1270
1350
|
{
|
|
1271
1351
|
"path": "src/commands/task/close-shared.ts",
|
|
1272
|
-
"sha256": "
|
|
1273
|
-
"size_bytes":
|
|
1352
|
+
"sha256": "205e0667a9e5cb2e9870f2184c97d0969ab473c6c9820513c2855ec414d8ec59",
|
|
1353
|
+
"size_bytes": 1811
|
|
1274
1354
|
},
|
|
1275
1355
|
{
|
|
1276
1356
|
"path": "src/commands/task/comment.command.ts",
|
|
@@ -1289,8 +1369,8 @@
|
|
|
1289
1369
|
},
|
|
1290
1370
|
{
|
|
1291
1371
|
"path": "src/commands/task/derive.ts",
|
|
1292
|
-
"sha256": "
|
|
1293
|
-
"size_bytes":
|
|
1372
|
+
"sha256": "e3e51751d428ce1c44a833cc9bcef4a8341d3b7bd5a29e5a84724d3913f3cb75",
|
|
1373
|
+
"size_bytes": 5021
|
|
1294
1374
|
},
|
|
1295
1375
|
{
|
|
1296
1376
|
"path": "src/commands/task/doc-set.command.ts",
|
|
@@ -1304,8 +1384,8 @@
|
|
|
1304
1384
|
},
|
|
1305
1385
|
{
|
|
1306
1386
|
"path": "src/commands/task/doc-template.ts",
|
|
1307
|
-
"sha256": "
|
|
1308
|
-
"size_bytes":
|
|
1387
|
+
"sha256": "c7468ec10c43192832bc79f30cd3a6ed7c627d5463c2c2c196d0421b9eedabc5",
|
|
1388
|
+
"size_bytes": 4614
|
|
1309
1389
|
},
|
|
1310
1390
|
{
|
|
1311
1391
|
"path": "src/commands/task/doc.command.ts",
|
|
@@ -1327,15 +1407,30 @@
|
|
|
1327
1407
|
"sha256": "1083c3a4b33b5b20a4e3cb3659fb036e5875f8cd0778cf1ef841e7efa79c7c3e",
|
|
1328
1408
|
"size_bytes": 1229
|
|
1329
1409
|
},
|
|
1410
|
+
{
|
|
1411
|
+
"path": "src/commands/task/findings-add.command.ts",
|
|
1412
|
+
"sha256": "645399a064ffe405e50219d10cb752988e56c401ab1f8f8b3b9206d23b91a6ec",
|
|
1413
|
+
"size_bytes": 7104
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
"path": "src/commands/task/findings.command.ts",
|
|
1417
|
+
"sha256": "7c44ed624cd77685a9ff4c3ae5c801f16c77315c6aa1530fc85d86bb0508545a",
|
|
1418
|
+
"size_bytes": 1203
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
"path": "src/commands/task/findings.ts",
|
|
1422
|
+
"sha256": "e922215e1d750a0bea7402185f2be4b2d4fe04c157d18e893bd2aa0b91082a27",
|
|
1423
|
+
"size_bytes": 9070
|
|
1424
|
+
},
|
|
1330
1425
|
{
|
|
1331
1426
|
"path": "src/commands/task/finish-shared.ts",
|
|
1332
|
-
"sha256": "
|
|
1333
|
-
"size_bytes":
|
|
1427
|
+
"sha256": "6bfea7806ec0156aa75693cb3acba5d1caa79b0b6a6875d2139781dd0de84392",
|
|
1428
|
+
"size_bytes": 10088
|
|
1334
1429
|
},
|
|
1335
1430
|
{
|
|
1336
1431
|
"path": "src/commands/task/finish.ts",
|
|
1337
|
-
"sha256": "
|
|
1338
|
-
"size_bytes":
|
|
1432
|
+
"sha256": "e982ffefa92fd5c761a73f398f9e7ee8f965e1ff027dc10fb50f4c4d9b7f173f",
|
|
1433
|
+
"size_bytes": 18603
|
|
1339
1434
|
},
|
|
1340
1435
|
{
|
|
1341
1436
|
"path": "src/commands/task/handoff-record.command.ts",
|
|
@@ -1357,20 +1452,25 @@
|
|
|
1357
1452
|
"sha256": "0d480232ae093b511577207ace4c83c692f28c8f40b65efb7b9a68b5c30e2891",
|
|
1358
1453
|
"size_bytes": 5640
|
|
1359
1454
|
},
|
|
1455
|
+
{
|
|
1456
|
+
"path": "src/commands/task/hosted-close-pr.command.ts",
|
|
1457
|
+
"sha256": "1e945dedfd6ae84817dbe73ea0bf7adbc29a99e04ec8c85bae94a30a3488dd21",
|
|
1458
|
+
"size_bytes": 16981
|
|
1459
|
+
},
|
|
1360
1460
|
{
|
|
1361
1461
|
"path": "src/commands/task/hosted-close.command.ts",
|
|
1362
|
-
"sha256": "
|
|
1363
|
-
"size_bytes":
|
|
1462
|
+
"sha256": "f07e95d157c19ff1ae0162964658ecb4259aba620e72e3ab6c42690f29511b45",
|
|
1463
|
+
"size_bytes": 9788
|
|
1364
1464
|
},
|
|
1365
1465
|
{
|
|
1366
1466
|
"path": "src/commands/task/hosted-merge-sync.ts",
|
|
1367
|
-
"sha256": "
|
|
1368
|
-
"size_bytes":
|
|
1467
|
+
"sha256": "93424fe294fe5bb07fa2b2bb7177915326b7bb097f84a1ff892ff0ada8b7d36a",
|
|
1468
|
+
"size_bytes": 20175
|
|
1369
1469
|
},
|
|
1370
1470
|
{
|
|
1371
1471
|
"path": "src/commands/task/index.ts",
|
|
1372
|
-
"sha256": "
|
|
1373
|
-
"size_bytes":
|
|
1472
|
+
"sha256": "5c8729c403caafbad9183a0ed3b789349a2e24b3d3425db9597ac450b6b35e60",
|
|
1473
|
+
"size_bytes": 1545
|
|
1374
1474
|
},
|
|
1375
1475
|
{
|
|
1376
1476
|
"path": "src/commands/task/lint.command.ts",
|
|
@@ -1424,13 +1524,13 @@
|
|
|
1424
1524
|
},
|
|
1425
1525
|
{
|
|
1426
1526
|
"path": "src/commands/task/new.spec.ts",
|
|
1427
|
-
"sha256": "
|
|
1428
|
-
"size_bytes":
|
|
1527
|
+
"sha256": "d2cd0c147dbc61bc7fb12225ce856803065b795a1099a12877eb1236b5e8f1ef",
|
|
1528
|
+
"size_bytes": 2877
|
|
1429
1529
|
},
|
|
1430
1530
|
{
|
|
1431
1531
|
"path": "src/commands/task/new.ts",
|
|
1432
|
-
"sha256": "
|
|
1433
|
-
"size_bytes":
|
|
1532
|
+
"sha256": "a4ab1d70b532b26a8e9fee54d9e25204c3a8681a48636325312214078d8811de",
|
|
1533
|
+
"size_bytes": 9904
|
|
1434
1534
|
},
|
|
1435
1535
|
{
|
|
1436
1536
|
"path": "src/commands/task/next.run.ts",
|
|
@@ -1449,13 +1549,13 @@
|
|
|
1449
1549
|
},
|
|
1450
1550
|
{
|
|
1451
1551
|
"path": "src/commands/task/normalize.command.ts",
|
|
1452
|
-
"sha256": "
|
|
1453
|
-
"size_bytes":
|
|
1552
|
+
"sha256": "fc826e525d854a51a093c4e9c852e8d7555e0ddd3ccb9b2f42b00c0033dfa1f0",
|
|
1553
|
+
"size_bytes": 4147
|
|
1454
1554
|
},
|
|
1455
1555
|
{
|
|
1456
1556
|
"path": "src/commands/task/normalize.ts",
|
|
1457
|
-
"sha256": "
|
|
1458
|
-
"size_bytes":
|
|
1557
|
+
"sha256": "9b8eb46d4da4960adf3716c1ce5472d9fb5975882ccb44fdef2f541bd352f93c",
|
|
1558
|
+
"size_bytes": 5627
|
|
1459
1559
|
},
|
|
1460
1560
|
{
|
|
1461
1561
|
"path": "src/commands/task/plan-approve.command.ts",
|
|
@@ -1479,8 +1579,8 @@
|
|
|
1479
1579
|
},
|
|
1480
1580
|
{
|
|
1481
1581
|
"path": "src/commands/task/plan.ts",
|
|
1482
|
-
"sha256": "
|
|
1483
|
-
"size_bytes":
|
|
1582
|
+
"sha256": "4231fa891281bed100edc9094f82e1c98b88a5512ba56cbdb4728633a8fe9d4b",
|
|
1583
|
+
"size_bytes": 12878
|
|
1484
1584
|
},
|
|
1485
1585
|
{
|
|
1486
1586
|
"path": "src/commands/task/ready.ts",
|
|
@@ -1614,13 +1714,13 @@
|
|
|
1614
1714
|
},
|
|
1615
1715
|
{
|
|
1616
1716
|
"path": "src/commands/task/set-status.ts",
|
|
1617
|
-
"sha256": "
|
|
1618
|
-
"size_bytes":
|
|
1717
|
+
"sha256": "a29d0efbeda664f0304d84f4945741717832486037bf81fb378472ad4c460ef7",
|
|
1718
|
+
"size_bytes": 4796
|
|
1619
1719
|
},
|
|
1620
1720
|
{
|
|
1621
1721
|
"path": "src/commands/task/shared.ts",
|
|
1622
|
-
"sha256": "
|
|
1623
|
-
"size_bytes":
|
|
1722
|
+
"sha256": "6e3bd6289ff16ead97441db5b67064504b5e7fc9ffa111a43af980de39aea1f2",
|
|
1723
|
+
"size_bytes": 2434
|
|
1624
1724
|
},
|
|
1625
1725
|
{
|
|
1626
1726
|
"path": "src/commands/task/shared/dependencies.ts",
|
|
@@ -1629,8 +1729,8 @@
|
|
|
1629
1729
|
},
|
|
1630
1730
|
{
|
|
1631
1731
|
"path": "src/commands/task/shared/docs.ts",
|
|
1632
|
-
"sha256": "
|
|
1633
|
-
"size_bytes":
|
|
1732
|
+
"sha256": "867caac5b8cb21422a56f73834ec40dbf378e0e1eb5fc8c7cc6fdcfaa297a7bc",
|
|
1733
|
+
"size_bytes": 6507
|
|
1634
1734
|
},
|
|
1635
1735
|
{
|
|
1636
1736
|
"path": "src/commands/task/shared/listing.ts",
|
|
@@ -1644,13 +1744,13 @@
|
|
|
1644
1744
|
},
|
|
1645
1745
|
{
|
|
1646
1746
|
"path": "src/commands/task/shared/transition-command.ts",
|
|
1647
|
-
"sha256": "
|
|
1648
|
-
"size_bytes":
|
|
1747
|
+
"sha256": "bc8ce54983d6ff8793a50ef4ac73486c7f194cbeed2d34c075be92946dc7eae0",
|
|
1748
|
+
"size_bytes": 2411
|
|
1649
1749
|
},
|
|
1650
1750
|
{
|
|
1651
1751
|
"path": "src/commands/task/shared/transitions.ts",
|
|
1652
|
-
"sha256": "
|
|
1653
|
-
"size_bytes":
|
|
1752
|
+
"sha256": "7047fb270329b8d03566a05a9010d0f668fca6019b35c42193f8fc9952de4629",
|
|
1753
|
+
"size_bytes": 11044
|
|
1654
1754
|
},
|
|
1655
1755
|
{
|
|
1656
1756
|
"path": "src/commands/task/shared/workflow-transition-service.ts",
|
|
@@ -1679,18 +1779,18 @@
|
|
|
1679
1779
|
},
|
|
1680
1780
|
{
|
|
1681
1781
|
"path": "src/commands/task/start-ready.ts",
|
|
1682
|
-
"sha256": "
|
|
1683
|
-
"size_bytes":
|
|
1782
|
+
"sha256": "2c2e171f483dd593c874249d2ed8fa1c35401cdfb2d8a3fce2008e964a1ffab8",
|
|
1783
|
+
"size_bytes": 5444
|
|
1684
1784
|
},
|
|
1685
1785
|
{
|
|
1686
1786
|
"path": "src/commands/task/start.ts",
|
|
1687
|
-
"sha256": "
|
|
1688
|
-
"size_bytes":
|
|
1787
|
+
"sha256": "d53ad56925f6919f9dd0515f4d005344b52335173d7672521016c43d891a9bdd",
|
|
1788
|
+
"size_bytes": 5820
|
|
1689
1789
|
},
|
|
1690
1790
|
{
|
|
1691
1791
|
"path": "src/commands/task/task.command.ts",
|
|
1692
|
-
"sha256": "
|
|
1693
|
-
"size_bytes":
|
|
1792
|
+
"sha256": "0e3966f7ae0a65482153ffef99a304fd2cd8499d35b3213cee1640464fccd6fd",
|
|
1793
|
+
"size_bytes": 2663
|
|
1694
1794
|
},
|
|
1695
1795
|
{
|
|
1696
1796
|
"path": "src/commands/task/update.command.ts",
|
|
@@ -1704,28 +1804,28 @@
|
|
|
1704
1804
|
},
|
|
1705
1805
|
{
|
|
1706
1806
|
"path": "src/commands/task/verify-command-shared.ts",
|
|
1707
|
-
"sha256": "
|
|
1708
|
-
"size_bytes":
|
|
1807
|
+
"sha256": "536bb3a2a9ebf56eb843494fe855dc95a53bbab6cb145504e5017e1b80161dd7",
|
|
1808
|
+
"size_bytes": 7970
|
|
1709
1809
|
},
|
|
1710
1810
|
{
|
|
1711
1811
|
"path": "src/commands/task/verify-ok.command.ts",
|
|
1712
|
-
"sha256": "
|
|
1713
|
-
"size_bytes":
|
|
1812
|
+
"sha256": "bc3ed38405ca8b34e63a434290f490c0e610253f57dae5e9dde83b63b532cf06",
|
|
1813
|
+
"size_bytes": 2321
|
|
1714
1814
|
},
|
|
1715
1815
|
{
|
|
1716
1816
|
"path": "src/commands/task/verify-record.ts",
|
|
1717
|
-
"sha256": "
|
|
1718
|
-
"size_bytes":
|
|
1817
|
+
"sha256": "4a4d6e97cf5e1d7d551a2b683dcadb238d4d25f79cffd411c7c5e5f5a44e8978",
|
|
1818
|
+
"size_bytes": 13408
|
|
1719
1819
|
},
|
|
1720
1820
|
{
|
|
1721
1821
|
"path": "src/commands/task/verify-rework.command.ts",
|
|
1722
|
-
"sha256": "
|
|
1723
|
-
"size_bytes":
|
|
1822
|
+
"sha256": "f082796e0e54ecb5cbe1fac355ed35fc0b86cfb26a01eef2b3e56139e30bd018",
|
|
1823
|
+
"size_bytes": 2403
|
|
1724
1824
|
},
|
|
1725
1825
|
{
|
|
1726
1826
|
"path": "src/commands/task/verify-show.command.ts",
|
|
1727
|
-
"sha256": "
|
|
1728
|
-
"size_bytes":
|
|
1827
|
+
"sha256": "c45a5bf7572bceb9cb730e3f40705f892fe69a6f383b06db73f217c50ef64ae7",
|
|
1828
|
+
"size_bytes": 2723
|
|
1729
1829
|
},
|
|
1730
1830
|
{
|
|
1731
1831
|
"path": "src/commands/task/verify.command.ts",
|
|
@@ -1739,8 +1839,8 @@
|
|
|
1739
1839
|
},
|
|
1740
1840
|
{
|
|
1741
1841
|
"path": "src/commands/upgrade.ts",
|
|
1742
|
-
"sha256": "
|
|
1743
|
-
"size_bytes":
|
|
1842
|
+
"sha256": "7a14216c97e771b9b2e5c5a0c552cd94714351f33d11417a357ffe9fcbb66cf4",
|
|
1843
|
+
"size_bytes": 11199
|
|
1744
1844
|
},
|
|
1745
1845
|
{
|
|
1746
1846
|
"path": "src/commands/upgrade/apply.ts",
|
|
@@ -1779,13 +1879,13 @@
|
|
|
1779
1879
|
},
|
|
1780
1880
|
{
|
|
1781
1881
|
"path": "src/commands/verify.run.ts",
|
|
1782
|
-
"sha256": "
|
|
1783
|
-
"size_bytes":
|
|
1882
|
+
"sha256": "631cd31670d0857b7c1a1ef9b2c05d3b426f0da9b8de9be42d492c94b90c53f5",
|
|
1883
|
+
"size_bytes": 1102
|
|
1784
1884
|
},
|
|
1785
1885
|
{
|
|
1786
1886
|
"path": "src/commands/verify.spec.ts",
|
|
1787
|
-
"sha256": "
|
|
1788
|
-
"size_bytes":
|
|
1887
|
+
"sha256": "01b42907b1557d6e469850f9394f8c0d1604527c9463a0c138ba882af6a61bfc",
|
|
1888
|
+
"size_bytes": 4311
|
|
1789
1889
|
},
|
|
1790
1890
|
{
|
|
1791
1891
|
"path": "src/commands/workflow-build.command.ts",
|
|
@@ -1869,8 +1969,8 @@
|
|
|
1869
1969
|
},
|
|
1870
1970
|
{
|
|
1871
1971
|
"path": "src/policy/engine.ts",
|
|
1872
|
-
"sha256": "
|
|
1873
|
-
"size_bytes":
|
|
1972
|
+
"sha256": "d86f0bd08200e0d8a366f8036b586c533e9f8db35815649348e1d183f35f21ea",
|
|
1973
|
+
"size_bytes": 1841
|
|
1874
1974
|
},
|
|
1875
1975
|
{
|
|
1876
1976
|
"path": "src/policy/evaluate.ts",
|
|
@@ -1907,10 +2007,15 @@
|
|
|
1907
2007
|
"sha256": "ca1d0df920de78fe0d0caa3b4dcf14a6a60799d2cfd5b0a6bb6b5cd1869cd7cc",
|
|
1908
2008
|
"size_bytes": 2405
|
|
1909
2009
|
},
|
|
2010
|
+
{
|
|
2011
|
+
"path": "src/policy/taxonomy.ts",
|
|
2012
|
+
"sha256": "c31cafc9639fdc44e250ab9a2a7944b564d260c8848b40f43a81aa57d2d148bb",
|
|
2013
|
+
"size_bytes": 9576
|
|
2014
|
+
},
|
|
1910
2015
|
{
|
|
1911
2016
|
"path": "src/policy/types.ts",
|
|
1912
|
-
"sha256": "
|
|
1913
|
-
"size_bytes":
|
|
2017
|
+
"sha256": "d8fe769d87de38ef3ef16c1928623d184ca9a70be4b321afe4f4db0bb568df35",
|
|
2018
|
+
"size_bytes": 1010
|
|
1914
2019
|
},
|
|
1915
2020
|
{
|
|
1916
2021
|
"path": "src/ports/clock-port.ts",
|
|
@@ -1964,8 +2069,8 @@
|
|
|
1964
2069
|
},
|
|
1965
2070
|
{
|
|
1966
2071
|
"path": "src/runner/artifacts.ts",
|
|
1967
|
-
"sha256": "
|
|
1968
|
-
"size_bytes":
|
|
2072
|
+
"sha256": "38b20458e728a9621c5de69a30c41fe29676ce80a28d294458b170f32fc46bb6",
|
|
2073
|
+
"size_bytes": 7695
|
|
1969
2074
|
},
|
|
1970
2075
|
{
|
|
1971
2076
|
"path": "src/runner/codex-approval-probe.ts",
|
|
@@ -1984,13 +2089,13 @@
|
|
|
1984
2089
|
},
|
|
1985
2090
|
{
|
|
1986
2091
|
"path": "src/runner/context/base-prompts.ts",
|
|
1987
|
-
"sha256": "
|
|
1988
|
-
"size_bytes":
|
|
2092
|
+
"sha256": "7e2a1b64b125ad7aa7eb46b7ee722bffd7625c9f55e95e683b9ad46308e24ed1",
|
|
2093
|
+
"size_bytes": 16731
|
|
1989
2094
|
},
|
|
1990
2095
|
{
|
|
1991
2096
|
"path": "src/runner/context/recipe-context.ts",
|
|
1992
|
-
"sha256": "
|
|
1993
|
-
"size_bytes":
|
|
2097
|
+
"sha256": "073ab67a86c7d741f3dcf649f32b795deda4039701e6911e01ffe34900c44816",
|
|
2098
|
+
"size_bytes": 3029
|
|
1994
2099
|
},
|
|
1995
2100
|
{
|
|
1996
2101
|
"path": "src/runner/context/task-context.ts",
|
|
@@ -2064,18 +2169,18 @@
|
|
|
2064
2169
|
},
|
|
2065
2170
|
{
|
|
2066
2171
|
"path": "src/runner/types.ts",
|
|
2067
|
-
"sha256": "
|
|
2068
|
-
"size_bytes":
|
|
2172
|
+
"sha256": "a502df4e3ebc1e4c9401041e82280ac9345d53cab0b701e093167c221ec94f75",
|
|
2173
|
+
"size_bytes": 10217
|
|
2069
2174
|
},
|
|
2070
2175
|
{
|
|
2071
2176
|
"path": "src/runner/usecases/scenario-materialize-task.ts",
|
|
2072
|
-
"sha256": "
|
|
2073
|
-
"size_bytes":
|
|
2177
|
+
"sha256": "ac7ce0ff6504cb9e38e7369fb4f864a37b5badff12ccf7a669f7ddec90408dbe",
|
|
2178
|
+
"size_bytes": 9915
|
|
2074
2179
|
},
|
|
2075
2180
|
{
|
|
2076
2181
|
"path": "src/runner/usecases/task-run-inspect.ts",
|
|
2077
|
-
"sha256": "
|
|
2078
|
-
"size_bytes":
|
|
2182
|
+
"sha256": "0aedd322d018bff13db5594a566b8757baab22862c2c9f93e85eea3c826603a5",
|
|
2183
|
+
"size_bytes": 3525
|
|
2079
2184
|
},
|
|
2080
2185
|
{
|
|
2081
2186
|
"path": "src/runner/usecases/task-run-lifecycle-cancel.ts",
|
|
@@ -2089,8 +2194,8 @@
|
|
|
2089
2194
|
},
|
|
2090
2195
|
{
|
|
2091
2196
|
"path": "src/runner/usecases/task-run-lifecycle-shared.ts",
|
|
2092
|
-
"sha256": "
|
|
2093
|
-
"size_bytes":
|
|
2197
|
+
"sha256": "20802868677e74c4eecaa5c73018571becbc1456522befe71240a37e22f1e10f",
|
|
2198
|
+
"size_bytes": 8246
|
|
2094
2199
|
},
|
|
2095
2200
|
{
|
|
2096
2201
|
"path": "src/runner/usecases/task-run-lifecycle.ts",
|
|
@@ -2099,8 +2204,163 @@
|
|
|
2099
2204
|
},
|
|
2100
2205
|
{
|
|
2101
2206
|
"path": "src/runner/usecases/task-run.ts",
|
|
2102
|
-
"sha256": "
|
|
2103
|
-
"size_bytes":
|
|
2207
|
+
"sha256": "72788585bb6d106808fae203d7447aa17cee1631f3921c615b93aaa4c74424a9",
|
|
2208
|
+
"size_bytes": 14186
|
|
2209
|
+
},
|
|
2210
|
+
{
|
|
2211
|
+
"path": "src/runtime/approvals/index.ts",
|
|
2212
|
+
"sha256": "86db7eb67a6f042819ff41e0243b6dd3567a61119f6170691dbaebbf7f8f4f16",
|
|
2213
|
+
"size_bytes": 296
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"path": "src/runtime/approvals/runtime.ts",
|
|
2217
|
+
"sha256": "8b310952385e197213e0c43d57bf9a2256504efba935acebcf2ca0d587a587d8",
|
|
2218
|
+
"size_bytes": 5226
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
"path": "src/runtime/approvals/types.ts",
|
|
2222
|
+
"sha256": "481348a394bebbf4b7170e939f46f64d1efece9221c84c6f812f41fc3ca394e8",
|
|
2223
|
+
"size_bytes": 944
|
|
2224
|
+
},
|
|
2225
|
+
{
|
|
2226
|
+
"path": "src/runtime/behavior/index.ts",
|
|
2227
|
+
"sha256": "ed428c115712959d340e05a125b44cdce31cbd8a3e737fddba330f84d413c9ab",
|
|
2228
|
+
"size_bytes": 215
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
"path": "src/runtime/behavior/resolve.ts",
|
|
2232
|
+
"sha256": "8fd639489a4d1c7aff3fe97680aceb9ae17d52c734e1d1fafc97e91bd975718c",
|
|
2233
|
+
"size_bytes": 2819
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"path": "src/runtime/behavior/types.ts",
|
|
2237
|
+
"sha256": "f732b3f2ce8dd3bb1a7727a78451aa25796ac393646085079bc9358fddb64416",
|
|
2238
|
+
"size_bytes": 826
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"path": "src/runtime/capabilities/backend.ts",
|
|
2242
|
+
"sha256": "1e1fc43bad1ae0bf588f45301a2754691d4a113c63572cd259ae0ea024ef79dd",
|
|
2243
|
+
"size_bytes": 4088
|
|
2244
|
+
},
|
|
2245
|
+
{
|
|
2246
|
+
"path": "src/runtime/capabilities/index.ts",
|
|
2247
|
+
"sha256": "c210f41aa79254bdb92462fa27c45690b8657c631f4a6bd28b67fed6ba7eedc3",
|
|
2248
|
+
"size_bytes": 591
|
|
2249
|
+
},
|
|
2250
|
+
{
|
|
2251
|
+
"path": "src/runtime/capabilities/recipe.ts",
|
|
2252
|
+
"sha256": "88bbf9ab7ba531de87014db981e8c791d7c30fd88bcb352cd7d328cab59aebc0",
|
|
2253
|
+
"size_bytes": 4641
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"path": "src/runtime/capabilities/registry.ts",
|
|
2257
|
+
"sha256": "5d981edc03eb1ada352446681e49b4de6e9abd025ae9786843597871300f8f29",
|
|
2258
|
+
"size_bytes": 3109
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"path": "src/runtime/capabilities/runner.ts",
|
|
2262
|
+
"sha256": "7409655800a7234cbbb0ebdc034c47f5cc474836994f8d5a1af01015a088757b",
|
|
2263
|
+
"size_bytes": 2995
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"path": "src/runtime/capabilities/types.ts",
|
|
2267
|
+
"sha256": "2c4d516324972eaff7a28415abe05531b428bb66429dd8c4029f971bab5730be",
|
|
2268
|
+
"size_bytes": 1145
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
"path": "src/runtime/execution-profile/index.ts",
|
|
2272
|
+
"sha256": "aea4bce51a62b3c3b5150150e7305196f2aa19d38cd33b541258dd9b8c8d8029",
|
|
2273
|
+
"size_bytes": 214
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"path": "src/runtime/execution-profile/resolve.ts",
|
|
2277
|
+
"sha256": "81483a13fe55b37f04d7e15b65d6ea44ea2f46bf73b12ec45c56b6a0f8cdc7e5",
|
|
2278
|
+
"size_bytes": 3051
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"path": "src/runtime/execution-profile/types.ts",
|
|
2282
|
+
"sha256": "3fd4b7a4773b2086e5f9c3a123889f4a764f0b1788a5bc9dd6b72caeb3930ac1",
|
|
2283
|
+
"size_bytes": 894
|
|
2284
|
+
},
|
|
2285
|
+
{
|
|
2286
|
+
"path": "src/runtime/explain/index.ts",
|
|
2287
|
+
"sha256": "7feb59fc6f8c196029db27e5a965cac892cdb804853c3954892875d0d600559b",
|
|
2288
|
+
"size_bytes": 217
|
|
2289
|
+
},
|
|
2290
|
+
{
|
|
2291
|
+
"path": "src/runtime/explain/resolve.ts",
|
|
2292
|
+
"sha256": "d9720607246bf77e163034e8eb71cb9a2b0507e30adae98b06c605047bbf4cad",
|
|
2293
|
+
"size_bytes": 2730
|
|
2294
|
+
},
|
|
2295
|
+
{
|
|
2296
|
+
"path": "src/runtime/explain/types.ts",
|
|
2297
|
+
"sha256": "df738f4c04a9ec00a4f6f0f5cdf01782b93f91d04045fba524e46c0cb1aebfc5",
|
|
2298
|
+
"size_bytes": 1126
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"path": "src/runtime/harness/index.ts",
|
|
2302
|
+
"sha256": "b49b1e68a08865fe4d09351781c622c501cedc3b8c3a9764706b5f769ec5e53a",
|
|
2303
|
+
"size_bytes": 318
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
"path": "src/runtime/harness/resolve-from-command-context.ts",
|
|
2307
|
+
"sha256": "e3bc267b61a559b05a01c94c6dc19da6da4b25d95476c97823fc41daa9894034",
|
|
2308
|
+
"size_bytes": 588
|
|
2309
|
+
},
|
|
2310
|
+
{
|
|
2311
|
+
"path": "src/runtime/harness/resolve.ts",
|
|
2312
|
+
"sha256": "c267b309a6eef7a2e7dc54b0a38430963d4ad47a13d4aa059b81d33034dabd6c",
|
|
2313
|
+
"size_bytes": 7846
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"path": "src/runtime/harness/types.ts",
|
|
2317
|
+
"sha256": "8fe94a7f18a11401d140bc1f3748bfeb37e10e89b4054b57be8ac3b329a1dd20",
|
|
2318
|
+
"size_bytes": 2720
|
|
2319
|
+
},
|
|
2320
|
+
{
|
|
2321
|
+
"path": "src/runtime/incidents/index.ts",
|
|
2322
|
+
"sha256": "10bae87d02c646f7d97d3a84b7fb3a5d001c78429e2d0974f8305d96a1c35273",
|
|
2323
|
+
"size_bytes": 634
|
|
2324
|
+
},
|
|
2325
|
+
{
|
|
2326
|
+
"path": "src/runtime/incidents/resolve.ts",
|
|
2327
|
+
"sha256": "17c73e9436987c909fd5aebdec6153106dcb46a2157adc9d003a74f1080c44f1",
|
|
2328
|
+
"size_bytes": 27397
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
"path": "src/runtime/incidents/types.ts",
|
|
2332
|
+
"sha256": "7724861b7948e3b023166e592aae030d72a3312a8bb4941fc9781901cddd08be",
|
|
2333
|
+
"size_bytes": 2207
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
"path": "src/runtime/protocol/index.ts",
|
|
2337
|
+
"sha256": "1d6fd90926db867360cc8a2140a1dc5462fceccf18bfa4f29198f0aeb02d6c59",
|
|
2338
|
+
"size_bytes": 657
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"path": "src/runtime/protocol/resolve.ts",
|
|
2342
|
+
"sha256": "13eea9f729faa73340b07238fb591ccce45d186865cbc9aa70bc4eb73cb8ea6a",
|
|
2343
|
+
"size_bytes": 1852
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
"path": "src/runtime/protocol/types.ts",
|
|
2347
|
+
"sha256": "72126a1c785961cd1151a8ec7b75071778d034913ca8dcfa6fcf2ee505c98367",
|
|
2348
|
+
"size_bytes": 1595
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
"path": "src/runtime/task-intake/index.ts",
|
|
2352
|
+
"sha256": "b78e01b2e26c395f8c0c42d1482048ac66aa3e49cff8545c3a298c079160eaa6",
|
|
2353
|
+
"size_bytes": 526
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"path": "src/runtime/task-intake/resolve.ts",
|
|
2357
|
+
"sha256": "6f5e51ad1e00ae1cea5f5bf7fe0a87c2c686fc7ab96f3e4cb597c61bf63de104",
|
|
2358
|
+
"size_bytes": 13855
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
"path": "src/runtime/task-intake/types.ts",
|
|
2362
|
+
"sha256": "e97317f5b594e6771a9ee76af2c92654f0c7fe8e22a5f9747eb62fc5837c5933",
|
|
2363
|
+
"size_bytes": 3419
|
|
2104
2364
|
},
|
|
2105
2365
|
{
|
|
2106
2366
|
"path": "src/shared/agent-emoji.ts",
|
|
@@ -2129,8 +2389,8 @@
|
|
|
2129
2389
|
},
|
|
2130
2390
|
{
|
|
2131
2391
|
"path": "src/shared/env.ts",
|
|
2132
|
-
"sha256": "
|
|
2133
|
-
"size_bytes":
|
|
2392
|
+
"sha256": "91a480b13920083ae80b89f70d01ada19cae6c39064a752276e9eac50342ac78",
|
|
2393
|
+
"size_bytes": 2250
|
|
2134
2394
|
},
|
|
2135
2395
|
{
|
|
2136
2396
|
"path": "src/shared/errors.ts",
|
|
@@ -2159,8 +2419,8 @@
|
|
|
2159
2419
|
},
|
|
2160
2420
|
{
|
|
2161
2421
|
"path": "src/shared/protected-paths.ts",
|
|
2162
|
-
"sha256": "
|
|
2163
|
-
"size_bytes":
|
|
2422
|
+
"sha256": "5fb86dfa71d8b1db11ff24e32cac43eb7ce2a3d7b0d7c084afb9aacd4160e2eb",
|
|
2423
|
+
"size_bytes": 4218
|
|
2164
2424
|
},
|
|
2165
2425
|
{
|
|
2166
2426
|
"path": "src/shared/repo-cli-version.ts",
|
|
@@ -2214,18 +2474,18 @@
|
|
|
2214
2474
|
},
|
|
2215
2475
|
{
|
|
2216
2476
|
"path": "src/usecases/context/resolve-context.ts",
|
|
2217
|
-
"sha256": "
|
|
2218
|
-
"size_bytes":
|
|
2477
|
+
"sha256": "582452c4d78705fe8d0685e2b8912eb3de163e425d7792a09f3a1f59ed2f1dfc",
|
|
2478
|
+
"size_bytes": 6586
|
|
2219
2479
|
},
|
|
2220
2480
|
{
|
|
2221
2481
|
"path": "src/usecases/task/task-list-usecase.ts",
|
|
2222
|
-
"sha256": "
|
|
2223
|
-
"size_bytes":
|
|
2482
|
+
"sha256": "d5b7d28552de269f86b56496d5213ee3a819e04816bbf17ac21937a834da84fe",
|
|
2483
|
+
"size_bytes": 810
|
|
2224
2484
|
},
|
|
2225
2485
|
{
|
|
2226
2486
|
"path": "src/usecases/task/task-new-usecase.ts",
|
|
2227
|
-
"sha256": "
|
|
2228
|
-
"size_bytes":
|
|
2487
|
+
"sha256": "3b35c860f078522c81b09edb6d76dca61045e0149acf7454f45331d68a1ae986",
|
|
2488
|
+
"size_bytes": 832
|
|
2229
2489
|
},
|
|
2230
2490
|
{
|
|
2231
2491
|
"path": "src/workflow-runtime/build.ts",
|