agentplane 0.3.12 → 0.3.14
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/RUNNER.md +1 -1
- package/assets/agents/ORCHESTRATOR.json +1 -1
- package/assets/agents/SKILL_EXTRACTOR.json +31 -0
- package/assets/codex-plugin/assets/header.png +0 -0
- package/assets/codex-plugin/assets/icon.svg +1 -0
- package/assets/codex-plugin/assets/logo.svg +1 -0
- package/assets/codex-plugin/skills/agentplane/SKILL.md +35 -0
- package/assets/framework.manifest.json +7 -0
- package/assets/policy/governance.md +4 -2
- package/assets/policy/incidents.md +4 -19
- package/assets/policy/workflow.branch_pr.md +10 -5
- package/assets/policy/workflow.release.md +5 -2
- package/dist/.build-manifest.json +409 -219
- package/dist/cli/exit-codes.d.ts.map +1 -1
- package/dist/cli/exit-codes.js +1 -0
- package/dist/cli/output.d.ts +29 -0
- package/dist/cli/output.d.ts.map +1 -1
- package/dist/cli/output.js +33 -0
- package/dist/cli/reason-codes.d.ts +1 -1
- package/dist/cli/reason-codes.d.ts.map +1 -1
- package/dist/cli/reason-codes.js +12 -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 +36 -78
- package/dist/cli/run-cli/command-catalog/lifecycle.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/lifecycle.js +4 -12
- 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 +27 -31
- package/dist/cli/run-cli/command-catalog/shared.d.ts +9 -6
- package/dist/cli/run-cli/command-catalog/shared.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/shared.js +23 -6
- package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/task.js +6 -18
- 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/codex.d.ts +14 -0
- package/dist/cli/run-cli/commands/codex.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/codex.js +100 -0
- package/dist/cli/run-cli/commands/core.d.ts +1 -0
- package/dist/cli/run-cli/commands/core.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/core.js +1 -0
- package/dist/cli/run-cli/commands/init/recipes.d.ts +9 -1
- package/dist/cli/run-cli/commands/init/recipes.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init/recipes.js +33 -22
- package/dist/cli/run-cli/commands/init.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init.js +26 -21
- package/dist/cli/run-cli/error-guidance.js +20 -0
- package/dist/cli/run-cli.js +1 -1
- package/dist/cli/run-cli.test-helpers.d.ts +1 -74
- package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
- package/dist/cli/run-cli.test-helpers.js +1 -766
- package/dist/commands/branch/cleanup-merged.d.ts.map +1 -1
- package/dist/commands/branch/cleanup-merged.js +5 -9
- package/dist/commands/branch/work-start.command.d.ts.map +1 -1
- package/dist/commands/branch/work-start.command.js +1 -0
- package/dist/commands/codex/plugin-install.d.ts +26 -0
- package/dist/commands/codex/plugin-install.d.ts.map +1 -0
- package/dist/commands/codex/plugin-install.js +209 -0
- package/dist/commands/commit.spec.d.ts.map +1 -1
- package/dist/commands/commit.spec.js +2 -0
- package/dist/commands/doctor/branch-pr.d.ts +1 -1
- package/dist/commands/doctor/branch-pr.d.ts.map +1 -1
- package/dist/commands/doctor/branch-pr.js +5 -2
- package/dist/commands/guard/impl/commands.d.ts.map +1 -1
- package/dist/commands/guard/impl/commands.js +4 -1
- package/dist/commands/guard/impl/comment-commit.d.ts.map +1 -1
- package/dist/commands/guard/impl/comment-commit.js +2 -1
- package/dist/commands/guard/impl/env.d.ts +6 -0
- package/dist/commands/guard/impl/env.d.ts.map +1 -1
- package/dist/commands/guard/impl/env.js +41 -0
- package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
- package/dist/commands/pr/integrate/cmd.js +81 -5
- package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
- package/dist/commands/pr/integrate/internal/prepare.js +38 -7
- package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -1
- package/dist/commands/pr/internal/auto-commit.js +13 -7
- package/dist/commands/pr/internal/sync-branch.d.ts +36 -0
- package/dist/commands/pr/internal/sync-branch.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-branch.js +113 -0
- package/dist/commands/pr/internal/sync-github.d.ts +28 -0
- package/dist/commands/pr/internal/sync-github.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-github.js +178 -0
- package/dist/commands/pr/internal/sync-model.d.ts +36 -0
- package/dist/commands/pr/internal/sync-model.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-model.js +1 -0
- package/dist/commands/pr/internal/sync-open-step.d.ts +10 -0
- package/dist/commands/pr/internal/sync-open-step.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-open-step.js +128 -0
- package/dist/commands/pr/internal/sync-support.d.ts +7 -0
- package/dist/commands/pr/internal/sync-support.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-support.js +29 -0
- package/dist/commands/pr/internal/sync-update-step.d.ts +6 -0
- package/dist/commands/pr/internal/sync-update-step.d.ts.map +1 -0
- package/dist/commands/pr/internal/sync-update-step.js +68 -0
- package/dist/commands/pr/internal/sync.d.ts +2 -6
- package/dist/commands/pr/internal/sync.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync.js +83 -525
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +62 -7
- package/dist/commands/pr/pr.command.d.ts.map +1 -1
- package/dist/commands/pr/pr.command.js +7 -2
- package/dist/commands/recipes/active.command.d.ts +7 -0
- package/dist/commands/recipes/active.command.d.ts.map +1 -0
- package/dist/commands/recipes/active.command.js +12 -0
- package/dist/commands/recipes/add.command.d.ts +8 -0
- package/dist/commands/recipes/add.command.d.ts.map +1 -0
- package/dist/commands/recipes/add.command.js +33 -0
- package/dist/commands/recipes/detach.command.d.ts +7 -0
- package/dist/commands/recipes/detach.command.d.ts.map +1 -0
- package/dist/commands/recipes/detach.command.js +19 -0
- package/dist/commands/recipes/disable.command.d.ts +7 -0
- package/dist/commands/recipes/disable.command.d.ts.map +1 -0
- package/dist/commands/recipes/disable.command.js +10 -0
- package/dist/commands/recipes/enable.command.d.ts +7 -0
- package/dist/commands/recipes/enable.command.d.ts.map +1 -0
- package/dist/commands/recipes/enable.command.js +10 -0
- package/dist/commands/recipes/explain-active.command.d.ts +5 -0
- package/dist/commands/recipes/explain-active.command.d.ts.map +1 -0
- package/dist/commands/recipes/explain-active.command.js +11 -0
- package/dist/commands/recipes/explain.command.d.ts.map +1 -1
- package/dist/commands/recipes/explain.command.js +4 -2
- package/dist/commands/recipes/impl/apply.d.ts +1 -1
- package/dist/commands/recipes/impl/apply.d.ts.map +1 -1
- package/dist/commands/recipes/impl/apply.js +34 -16
- package/dist/commands/recipes/impl/commands/active.d.ts +6 -0
- package/dist/commands/recipes/impl/commands/active.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/active.js +47 -0
- package/dist/commands/recipes/impl/commands/add.d.ts +8 -0
- package/dist/commands/recipes/impl/commands/add.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/add.js +105 -0
- package/dist/commands/recipes/impl/commands/detach.d.ts +6 -0
- package/dist/commands/recipes/impl/commands/detach.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/detach.js +99 -0
- package/dist/commands/recipes/impl/commands/disable.d.ts +6 -0
- package/dist/commands/recipes/impl/commands/disable.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/disable.js +23 -0
- package/dist/commands/recipes/impl/commands/enable.d.ts +6 -0
- package/dist/commands/recipes/impl/commands/enable.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/enable.js +41 -0
- package/dist/commands/recipes/impl/commands/explain-active.d.ts +5 -0
- package/dist/commands/recipes/impl/commands/explain-active.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/explain-active.js +20 -0
- package/dist/commands/recipes/impl/commands/explain.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/explain.js +83 -36
- package/dist/commands/recipes/impl/commands/info.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/info.js +39 -22
- package/dist/commands/recipes/impl/commands/install.d.ts +1 -1
- package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/install.js +35 -42
- package/dist/commands/recipes/impl/commands/list-remote.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/list-remote.js +2 -3
- package/dist/commands/recipes/impl/commands/list.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/list.js +13 -12
- package/dist/commands/recipes/impl/commands/remove.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands/remove.js +12 -2
- package/dist/commands/recipes/impl/commands/update.d.ts +7 -0
- package/dist/commands/recipes/impl/commands/update.d.ts.map +1 -0
- package/dist/commands/recipes/impl/commands/update.js +107 -0
- package/dist/commands/recipes/impl/commands.d.ts +7 -0
- package/dist/commands/recipes/impl/commands.d.ts.map +1 -1
- package/dist/commands/recipes/impl/commands.js +7 -0
- package/dist/commands/recipes/impl/constants.d.ts +1 -14
- package/dist/commands/recipes/impl/constants.d.ts.map +1 -1
- package/dist/commands/recipes/impl/constants.js +1 -18
- package/dist/commands/recipes/impl/index.d.ts +1 -1
- package/dist/commands/recipes/impl/index.d.ts.map +1 -1
- package/dist/commands/recipes/impl/installed-recipes.d.ts +1 -1
- package/dist/commands/recipes/impl/installed-recipes.d.ts.map +1 -1
- package/dist/commands/recipes/impl/installed-recipes.js +1 -2
- package/dist/commands/recipes/impl/mutation-transaction.d.ts +7 -0
- package/dist/commands/recipes/impl/mutation-transaction.d.ts.map +1 -0
- package/dist/commands/recipes/impl/mutation-transaction.js +47 -0
- package/dist/commands/recipes/impl/overlay-project.d.ts +48 -0
- package/dist/commands/recipes/impl/overlay-project.d.ts.map +1 -0
- package/dist/commands/recipes/impl/overlay-project.js +320 -0
- package/dist/commands/recipes/impl/paths.d.ts +17 -2
- package/dist/commands/recipes/impl/paths.d.ts.map +1 -1
- package/dist/commands/recipes/impl/paths.js +20 -5
- package/dist/commands/recipes/impl/project-installed-recipes.d.ts +5 -4
- package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -1
- package/dist/commands/recipes/impl/project-installed-recipes.js +34 -76
- package/dist/commands/recipes/impl/project-recipe-state.d.ts +18 -0
- package/dist/commands/recipes/impl/project-recipe-state.d.ts.map +1 -0
- package/dist/commands/recipes/impl/project-recipe-state.js +94 -0
- package/dist/commands/recipes/impl/project-registry.d.ts +24 -0
- package/dist/commands/recipes/impl/project-registry.d.ts.map +1 -0
- package/dist/commands/recipes/impl/project-registry.js +124 -0
- package/dist/commands/recipes/impl/resolver.d.ts +1 -1
- package/dist/commands/recipes/impl/resolver.d.ts.map +1 -1
- package/dist/commands/recipes/impl/resolver.js +6 -4
- package/dist/commands/recipes/impl/types.d.ts +1 -240
- package/dist/commands/recipes/impl/types.d.ts.map +1 -1
- package/dist/commands/recipes/impl/version.d.ts +5 -0
- package/dist/commands/recipes/impl/version.d.ts.map +1 -0
- package/dist/commands/recipes/impl/version.js +9 -0
- package/dist/commands/recipes/info.command.js +2 -2
- package/dist/commands/recipes/install.spec.js +4 -4
- package/dist/commands/recipes/list.command.js +4 -4
- package/dist/commands/recipes/remove.command.js +2 -2
- package/dist/commands/recipes/update.command.d.ts +8 -0
- package/dist/commands/recipes/update.command.d.ts.map +1 -0
- package/dist/commands/recipes/update.command.js +35 -0
- package/dist/commands/recipes.d.ts +10 -6
- package/dist/commands/recipes.d.ts.map +1 -1
- package/dist/commands/recipes.js +8 -5
- package/dist/commands/recipes.test-helpers.d.ts +3 -3
- package/dist/commands/recipes.test-helpers.d.ts.map +1 -1
- package/dist/commands/recipes.test-helpers.js +105 -15
- package/dist/commands/release/apply.command.d.ts +1 -1
- package/dist/commands/release/apply.command.d.ts.map +1 -1
- package/dist/commands/release/apply.command.js +15 -379
- 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 +24 -1
- package/dist/commands/release/apply.pipeline.d.ts +22 -0
- package/dist/commands/release/apply.pipeline.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline.js +371 -0
- package/dist/commands/release/apply.preflight.d.ts +2 -0
- package/dist/commands/release/apply.preflight.d.ts.map +1 -1
- package/dist/commands/release/apply.preflight.js +13 -4
- package/dist/commands/release/apply.types.d.ts +27 -0
- package/dist/commands/release/apply.types.d.ts.map +1 -1
- package/dist/commands/release.test-helpers.d.ts +4 -0
- package/dist/commands/release.test-helpers.d.ts.map +1 -1
- package/dist/commands/release.test-helpers.js +7 -0
- package/dist/commands/scenario/execute.command.js +4 -4
- package/dist/commands/scenario/impl/commands.js +4 -4
- package/dist/commands/scenario/info.command.js +4 -4
- package/dist/commands/scenario/list.command.js +3 -3
- package/dist/commands/scenario/run.command.js +5 -5
- package/dist/commands/scenario/scenario.command.js +7 -7
- package/dist/commands/shared/reconcile-check.d.ts.map +1 -1
- package/dist/commands/shared/reconcile-check.js +2 -2
- package/dist/commands/shared/task-backend.d.ts +6 -1
- package/dist/commands/shared/task-backend.d.ts.map +1 -1
- package/dist/commands/shared/task-backend.js +34 -2
- package/dist/commands/shared/task-handoff.d.ts +2 -1
- package/dist/commands/shared/task-handoff.d.ts.map +1 -1
- package/dist/commands/shared/task-handoff.js +15 -0
- package/dist/commands/shared/task-mutation.d.ts.map +1 -1
- package/dist/commands/shared/task-mutation.js +4 -4
- package/dist/commands/shared/task-store/intents.d.ts +34 -0
- package/dist/commands/shared/task-store/intents.d.ts.map +1 -0
- package/dist/commands/shared/task-store/intents.js +265 -0
- package/dist/commands/shared/task-store/readme.d.ts +28 -0
- package/dist/commands/shared/task-store/readme.d.ts.map +1 -0
- package/dist/commands/shared/task-store/readme.js +125 -0
- package/dist/commands/shared/task-store/store.d.ts +26 -0
- package/dist/commands/shared/task-store/store.d.ts.map +1 -0
- package/dist/commands/shared/task-store/store.js +105 -0
- package/dist/commands/shared/task-store/types.d.ts +94 -0
- package/dist/commands/shared/task-store/types.d.ts.map +1 -0
- package/dist/commands/shared/task-store/types.js +1 -0
- package/dist/commands/shared/task-store.d.ts +3 -109
- package/dist/commands/shared/task-store.d.ts.map +1 -1
- package/dist/commands/shared/task-store.js +2 -493
- package/dist/commands/task/block.d.ts.map +1 -1
- package/dist/commands/task/block.js +7 -2
- package/dist/commands/task/comment.d.ts.map +1 -1
- package/dist/commands/task/comment.js +7 -2
- package/dist/commands/task/finish-shared.d.ts.map +1 -1
- package/dist/commands/task/finish-shared.js +3 -3
- package/dist/commands/task/finish.d.ts.map +1 -1
- package/dist/commands/task/finish.js +102 -15
- package/dist/commands/task/handoff-show.command.d.ts.map +1 -1
- package/dist/commands/task/handoff-show.command.js +24 -0
- package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
- package/dist/commands/task/hosted-merge-sync.js +9 -4
- package/dist/commands/task/list.run.d.ts.map +1 -1
- package/dist/commands/task/list.run.js +14 -4
- package/dist/commands/task/new.command.d.ts.map +1 -1
- package/dist/commands/task/new.command.js +16 -2
- package/dist/commands/task/new.js +2 -2
- package/dist/commands/task/show.d.ts.map +1 -1
- package/dist/commands/task/show.js +3 -3
- package/dist/commands/task/update.d.ts.map +1 -1
- package/dist/commands/task/update.js +11 -3
- package/dist/runner/adapters/codex.d.ts.map +1 -1
- package/dist/runner/adapters/codex.js +3 -33
- package/dist/runner/adapters/custom.d.ts.map +1 -1
- package/dist/runner/adapters/custom.js +3 -30
- package/dist/runner/adapters/runtime-shared.d.ts +14 -0
- package/dist/runner/adapters/runtime-shared.d.ts.map +1 -0
- package/dist/runner/adapters/runtime-shared.js +36 -0
- package/dist/runner/context/base-prompt-sources.d.ts +30 -0
- package/dist/runner/context/base-prompt-sources.d.ts.map +1 -0
- package/dist/runner/context/base-prompt-sources.js +144 -0
- package/dist/runner/context/base-prompts.d.ts +5 -23
- package/dist/runner/context/base-prompts.d.ts.map +1 -1
- package/dist/runner/context/base-prompts.js +10 -358
- package/dist/runner/context/overlay-prompt-blocks.d.ts +7 -0
- package/dist/runner/context/overlay-prompt-blocks.d.ts.map +1 -0
- package/dist/runner/context/overlay-prompt-blocks.js +72 -0
- package/dist/runner/context/prompt-block-shared.d.ts +54 -0
- package/dist/runner/context/prompt-block-shared.d.ts.map +1 -0
- package/dist/runner/context/prompt-block-shared.js +106 -0
- package/dist/runner/context/recipe-context.d.ts +2 -1
- package/dist/runner/context/recipe-context.d.ts.map +1 -1
- package/dist/runner/context/recipe-context.js +41 -8
- package/dist/runner/context/recipe-prompt-blocks.d.ts +6 -0
- package/dist/runner/context/recipe-prompt-blocks.d.ts.map +1 -0
- package/dist/runner/context/recipe-prompt-blocks.js +143 -0
- package/dist/runner/types.d.ts +4 -0
- package/dist/runner/types.d.ts.map +1 -1
- package/dist/runner/usecases/scenario-materialize-task.js +2 -2
- package/dist/runner/usecases/task-run-inspect.js +2 -2
- package/dist/runner/usecases/task-run-lifecycle-shared.js +2 -2
- package/dist/runner/usecases/task-run.d.ts.map +1 -1
- package/dist/runner/usecases/task-run.js +6 -3
- package/dist/runtime/behavior/resolve.d.ts +2 -1
- package/dist/runtime/behavior/resolve.d.ts.map +1 -1
- package/dist/runtime/behavior/resolve.js +25 -5
- package/dist/runtime/behavior/types.d.ts +1 -0
- package/dist/runtime/behavior/types.d.ts.map +1 -1
- package/dist/runtime/capabilities/recipe.d.ts +2 -1
- package/dist/runtime/capabilities/recipe.d.ts.map +1 -1
- package/dist/runtime/capabilities/recipe.js +88 -28
- package/dist/runtime/execution-context.d.ts +63 -0
- package/dist/runtime/execution-context.d.ts.map +1 -0
- package/dist/{usecases/context/resolve-context.js → runtime/execution-context.js} +23 -26
- package/dist/runtime/incidents/advice-strategy.d.ts +15 -0
- package/dist/runtime/incidents/advice-strategy.d.ts.map +1 -0
- package/dist/runtime/incidents/advice-strategy.js +54 -0
- package/dist/runtime/incidents/plan-strategy.d.ts +9 -0
- package/dist/runtime/incidents/plan-strategy.d.ts.map +1 -0
- package/dist/runtime/incidents/plan-strategy.js +205 -0
- package/dist/runtime/incidents/registry-strategy.d.ts +6 -0
- package/dist/runtime/incidents/registry-strategy.d.ts.map +1 -0
- package/dist/runtime/incidents/registry-strategy.js +280 -0
- package/dist/runtime/incidents/resolve.d.ts +3 -25
- package/dist/runtime/incidents/resolve.d.ts.map +1 -1
- package/dist/runtime/incidents/resolve.js +3 -683
- package/dist/runtime/incidents/shared.d.ts +34 -0
- package/dist/runtime/incidents/shared.d.ts.map +1 -0
- package/dist/runtime/incidents/shared.js +171 -0
- package/dist/shared/errors.d.ts +1 -1
- package/dist/shared/errors.d.ts.map +1 -1
- package/dist/shared/runtime-source.d.ts.map +1 -1
- package/dist/shared/runtime-source.js +8 -3
- package/dist/testing/cli-harness/recipe-archives.d.ts +28 -0
- package/dist/testing/cli-harness/recipe-archives.d.ts.map +1 -0
- package/dist/testing/cli-harness/recipe-archives.js +374 -0
- package/dist/testing/cli-harness/stdio.d.ts +26 -0
- package/dist/testing/cli-harness/stdio.d.ts.map +1 -0
- package/dist/testing/cli-harness/stdio.js +84 -0
- package/dist/testing/cli-harness.d.ts +25 -0
- package/dist/testing/cli-harness.d.ts.map +1 -0
- package/dist/testing/cli-harness.js +313 -0
- package/dist/testing/index.d.ts +2 -0
- package/dist/testing/index.d.ts.map +1 -0
- package/dist/testing/index.js +1 -0
- package/package.json +7 -3
- package/dist/cli/recipes-bundled.d.ts +0 -10
- package/dist/cli/recipes-bundled.d.ts.map +0 -1
- package/dist/cli/recipes-bundled.js +0 -36
- package/dist/commands/recipes/impl/manifest.d.ts +0 -4
- package/dist/commands/recipes/impl/manifest.d.ts.map +0 -1
- package/dist/commands/recipes/impl/manifest.js +0 -229
- package/dist/commands/recipes/impl/normalize.d.ts +0 -8
- package/dist/commands/recipes/impl/normalize.d.ts.map +0 -1
- package/dist/commands/recipes/impl/normalize.js +0 -54
- package/dist/commands/recipes/impl/scenario.d.ts +0 -16
- package/dist/commands/recipes/impl/scenario.d.ts.map +0 -1
- package/dist/commands/recipes/impl/scenario.js +0 -262
- package/dist/recipes/bundled-recipes.d.ts +0 -17
- package/dist/recipes/bundled-recipes.d.ts.map +0 -1
- package/dist/recipes/bundled-recipes.js +0 -15
- package/dist/usecases/context/resolve-context.d.ts +0 -68
- package/dist/usecases/context/resolve-context.d.ts.map +0 -1
- package/dist/usecases/task/task-list-usecase.d.ts +0 -9
- package/dist/usecases/task/task-list-usecase.d.ts.map +0 -1
- package/dist/usecases/task/task-list-usecase.js +0 -17
- package/dist/usecases/task/task-new-usecase.d.ts +0 -9
- package/dist/usecases/task/task-new-usecase.d.ts.map +0 -1
- package/dist/usecases/task/task-new-usecase.js +0 -17
|
@@ -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-18T17:41:22.416Z",
|
|
5
|
+
"git_head": "2568c8cffc5363f691985c954f3850e6949696ce",
|
|
6
|
+
"src_cli_mtime_ms": 1776534022828.2769,
|
|
7
7
|
"src_index_mtime_ms": null,
|
|
8
|
-
"dist_cli_mtime_ms":
|
|
8
|
+
"dist_cli_mtime_ms": 1776534081691.345,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
10
|
+
"tsbuildinfo_mtime_ms": 1776534081770.3457,
|
|
11
11
|
"watched_runtime_paths": [
|
|
12
12
|
"src",
|
|
13
13
|
"bin/agentplane.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
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": "a7088fb638df2cd3028887db6544d5ce43835e35771963cff9740da4ab4fa568",
|
|
19
19
|
"watched_runtime_files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "bin/agentplane.js",
|
|
@@ -294,8 +294,8 @@
|
|
|
294
294
|
},
|
|
295
295
|
{
|
|
296
296
|
"path": "src/cli/exit-codes.ts",
|
|
297
|
-
"sha256": "
|
|
298
|
-
"size_bytes":
|
|
297
|
+
"sha256": "6c04f4d73cefaadcb62105d66d757d541bf70c52a4f539e9ebe81cd24618fc93",
|
|
298
|
+
"size_bytes": 349
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"path": "src/cli/fs-utils.ts",
|
|
@@ -314,8 +314,8 @@
|
|
|
314
314
|
},
|
|
315
315
|
{
|
|
316
316
|
"path": "src/cli/output.ts",
|
|
317
|
-
"sha256": "
|
|
318
|
-
"size_bytes":
|
|
317
|
+
"sha256": "e8d452c975c0ef2e804fe0e21942f217ea67dade7036722659889a6b20718652",
|
|
318
|
+
"size_bytes": 7982
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"path": "src/cli/prompts.ts",
|
|
@@ -324,23 +324,18 @@
|
|
|
324
324
|
},
|
|
325
325
|
{
|
|
326
326
|
"path": "src/cli/reason-codes.ts",
|
|
327
|
-
"sha256": "
|
|
328
|
-
"size_bytes":
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"path": "src/cli/recipes-bundled.ts",
|
|
332
|
-
"sha256": "ff11b3906d25986b1af314c7895df4bc7660513676c974fa23104605523d182e",
|
|
333
|
-
"size_bytes": 1417
|
|
327
|
+
"sha256": "cb223727ce412893857977631165b663a9a1905e7959ddb41cfe81df5e4c3dfa",
|
|
328
|
+
"size_bytes": 4922
|
|
334
329
|
},
|
|
335
330
|
{
|
|
336
331
|
"path": "src/cli/run-cli.test-helpers.ts",
|
|
337
|
-
"sha256": "
|
|
338
|
-
"size_bytes":
|
|
332
|
+
"sha256": "b01835ff30531ed8135253a19f47d8779c3913345d4024c2d94a851ff7b7e84a",
|
|
333
|
+
"size_bytes": 37
|
|
339
334
|
},
|
|
340
335
|
{
|
|
341
336
|
"path": "src/cli/run-cli.ts",
|
|
342
|
-
"sha256": "
|
|
343
|
-
"size_bytes":
|
|
337
|
+
"sha256": "95f7ed37b529ad5d4ecdbe5fac47ccf8c59dd22634e2b74399d0d9c19ac1003b",
|
|
338
|
+
"size_bytes": 11518
|
|
344
339
|
},
|
|
345
340
|
{
|
|
346
341
|
"path": "src/cli/run-cli/command-catalog.ts",
|
|
@@ -349,28 +344,33 @@
|
|
|
349
344
|
},
|
|
350
345
|
{
|
|
351
346
|
"path": "src/cli/run-cli/command-catalog/core.ts",
|
|
352
|
-
"sha256": "
|
|
353
|
-
"size_bytes":
|
|
347
|
+
"sha256": "2a4cfe21fe8261dd49862ad7358bc512c2bf8eedf6f838f3abf625faf15b2cf3",
|
|
348
|
+
"size_bytes": 7025
|
|
354
349
|
},
|
|
355
350
|
{
|
|
356
351
|
"path": "src/cli/run-cli/command-catalog/lifecycle.ts",
|
|
357
|
-
"sha256": "
|
|
358
|
-
"size_bytes":
|
|
352
|
+
"sha256": "d43ac9add06180f0f5983769f13cc78e3a7e6bd2401723938b0673981ba6cb09",
|
|
353
|
+
"size_bytes": 3959
|
|
359
354
|
},
|
|
360
355
|
{
|
|
361
356
|
"path": "src/cli/run-cli/command-catalog/project.ts",
|
|
362
|
-
"sha256": "
|
|
363
|
-
"size_bytes":
|
|
357
|
+
"sha256": "f54c781f17aac4f99239ba9353a633348b6afecc81054a41224b8285cefa295b",
|
|
358
|
+
"size_bytes": 7721
|
|
364
359
|
},
|
|
365
360
|
{
|
|
366
361
|
"path": "src/cli/run-cli/command-catalog/shared.ts",
|
|
367
|
-
"sha256": "
|
|
368
|
-
"size_bytes":
|
|
362
|
+
"sha256": "365dc01b61d4e9cdc9eaa573f65ddb223d1377cd29b0ee4ad45e3321f3460314",
|
|
363
|
+
"size_bytes": 2224
|
|
369
364
|
},
|
|
370
365
|
{
|
|
371
366
|
"path": "src/cli/run-cli/command-catalog/task.ts",
|
|
372
|
-
"sha256": "
|
|
373
|
-
"size_bytes":
|
|
367
|
+
"sha256": "e9b0ea249fff738ac37cde3207db7016529cc96457c7932af537c8f5352710a0",
|
|
368
|
+
"size_bytes": 12257
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"path": "src/cli/run-cli/commands/codex.ts",
|
|
372
|
+
"sha256": "4f6d2a432e63b979381a5bd3a64f7355ab7930cb103021e8c642241b52ff8288",
|
|
373
|
+
"size_bytes": 4821
|
|
374
374
|
},
|
|
375
375
|
{
|
|
376
376
|
"path": "src/cli/run-cli/commands/config.ts",
|
|
@@ -379,8 +379,8 @@
|
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
381
|
"path": "src/cli/run-cli/commands/core.ts",
|
|
382
|
-
"sha256": "
|
|
383
|
-
"size_bytes":
|
|
382
|
+
"sha256": "5cccd12921fc646958ab9087a5ae7101a3d09396162fbe899c41c2cdcf0cc5e0",
|
|
383
|
+
"size_bytes": 412
|
|
384
384
|
},
|
|
385
385
|
{
|
|
386
386
|
"path": "src/cli/run-cli/commands/core/agent-profiles.ts",
|
|
@@ -414,8 +414,8 @@
|
|
|
414
414
|
},
|
|
415
415
|
{
|
|
416
416
|
"path": "src/cli/run-cli/commands/init.ts",
|
|
417
|
-
"sha256": "
|
|
418
|
-
"size_bytes":
|
|
417
|
+
"sha256": "66a76fc0f25c8f03aa2e65efc4ed34c6e7f56e13a152cd9c46eec2b064891f3b",
|
|
418
|
+
"size_bytes": 27719
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
421
|
"path": "src/cli/run-cli/commands/init/base-branch.ts",
|
|
@@ -439,8 +439,8 @@
|
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
441
|
"path": "src/cli/run-cli/commands/init/recipes.ts",
|
|
442
|
-
"sha256": "
|
|
443
|
-
"size_bytes":
|
|
442
|
+
"sha256": "d8a401dd8fff5c86b5a54bca8e98ffcbd74104eb1b8647436ec604e84beb68b3",
|
|
443
|
+
"size_bytes": 1754
|
|
444
444
|
},
|
|
445
445
|
{
|
|
446
446
|
"path": "src/cli/run-cli/commands/init/ui.ts",
|
|
@@ -479,8 +479,8 @@
|
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
481
|
"path": "src/cli/run-cli/error-guidance.ts",
|
|
482
|
-
"sha256": "
|
|
483
|
-
"size_bytes":
|
|
482
|
+
"sha256": "d082914c7ae188ebef709df07727cdc1aaecec52e304b5b014d85769c84e6791",
|
|
483
|
+
"size_bytes": 8267
|
|
484
484
|
},
|
|
485
485
|
{
|
|
486
486
|
"path": "src/cli/run-cli/globals.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": "612617e040f1d94599ba351f2e11d74ce7f61d353fbbe3a635dbcb628e1fb083",
|
|
588
|
+
"size_bytes": 10305
|
|
589
589
|
},
|
|
590
590
|
{
|
|
591
591
|
"path": "src/commands/branch/index.ts",
|
|
@@ -624,8 +624,8 @@
|
|
|
624
624
|
},
|
|
625
625
|
{
|
|
626
626
|
"path": "src/commands/branch/work-start.command.ts",
|
|
627
|
-
"sha256": "
|
|
628
|
-
"size_bytes":
|
|
627
|
+
"sha256": "0200fa8dc9920565d081d2b716432142ce0aec4cbedc979ebcc07348733b94d4",
|
|
628
|
+
"size_bytes": 3227
|
|
629
629
|
},
|
|
630
630
|
{
|
|
631
631
|
"path": "src/commands/branch/work-start.ts",
|
|
@@ -637,6 +637,11 @@
|
|
|
637
637
|
"sha256": "a669d7a96dbe8e05ef832945f40fdcba844d7b97bd4e6781a10174b089e48e63",
|
|
638
638
|
"size_bytes": 3898
|
|
639
639
|
},
|
|
640
|
+
{
|
|
641
|
+
"path": "src/commands/codex/plugin-install.ts",
|
|
642
|
+
"sha256": "94c15f2e3e10444816538d734320bd0f135b0728e03b6cc36b27e66a199e5e50",
|
|
643
|
+
"size_bytes": 8301
|
|
644
|
+
},
|
|
640
645
|
{
|
|
641
646
|
"path": "src/commands/commit.command.ts",
|
|
642
647
|
"sha256": "93886fa1f52f58645c10b0cf8935381563cb79dffeff877530c80f5df0fbf7c9",
|
|
@@ -644,8 +649,8 @@
|
|
|
644
649
|
},
|
|
645
650
|
{
|
|
646
651
|
"path": "src/commands/commit.spec.ts",
|
|
647
|
-
"sha256": "
|
|
648
|
-
"size_bytes":
|
|
652
|
+
"sha256": "85b782275c366aa26632f6b4952f65eedea8490ccf1ef73f9ecebc8930e2eda3",
|
|
653
|
+
"size_bytes": 7562
|
|
649
654
|
},
|
|
650
655
|
{
|
|
651
656
|
"path": "src/commands/docs/cli.command.ts",
|
|
@@ -669,8 +674,8 @@
|
|
|
669
674
|
},
|
|
670
675
|
{
|
|
671
676
|
"path": "src/commands/doctor/branch-pr.ts",
|
|
672
|
-
"sha256": "
|
|
673
|
-
"size_bytes":
|
|
677
|
+
"sha256": "921ecaa266ab1f05dc745992bba7023b2a4d405d4a34667efc07b2cd6ad2f458",
|
|
678
|
+
"size_bytes": 4105
|
|
674
679
|
},
|
|
675
680
|
{
|
|
676
681
|
"path": "src/commands/doctor/fixes.ts",
|
|
@@ -734,18 +739,18 @@
|
|
|
734
739
|
},
|
|
735
740
|
{
|
|
736
741
|
"path": "src/commands/guard/impl/commands.ts",
|
|
737
|
-
"sha256": "
|
|
738
|
-
"size_bytes":
|
|
742
|
+
"sha256": "c7ca58f958a448ac4f64501c10a84b487c1df68545d8a85e2d631daaa53d97dd",
|
|
743
|
+
"size_bytes": 22526
|
|
739
744
|
},
|
|
740
745
|
{
|
|
741
746
|
"path": "src/commands/guard/impl/comment-commit.ts",
|
|
742
|
-
"sha256": "
|
|
743
|
-
"size_bytes":
|
|
747
|
+
"sha256": "b580567e1c16c06907699a0d2c3e92515a9e50143f2e8fcaca713b56a9ab97ae",
|
|
748
|
+
"size_bytes": 5373
|
|
744
749
|
},
|
|
745
750
|
{
|
|
746
751
|
"path": "src/commands/guard/impl/env.ts",
|
|
747
|
-
"sha256": "
|
|
748
|
-
"size_bytes":
|
|
752
|
+
"sha256": "a7793f583b513c1e7fdf9228168e87fd4b5d09d8234e536106a841cbc788dad5",
|
|
753
|
+
"size_bytes": 2498
|
|
749
754
|
},
|
|
750
755
|
{
|
|
751
756
|
"path": "src/commands/guard/impl/policy.ts",
|
|
@@ -844,8 +849,8 @@
|
|
|
844
849
|
},
|
|
845
850
|
{
|
|
846
851
|
"path": "src/commands/pr/integrate/cmd.ts",
|
|
847
|
-
"sha256": "
|
|
848
|
-
"size_bytes":
|
|
852
|
+
"sha256": "e2ed1ff93d370407ac59ac9f9672a93f57da530d90cf979160b77892a73e175e",
|
|
853
|
+
"size_bytes": 12321
|
|
849
854
|
},
|
|
850
855
|
{
|
|
851
856
|
"path": "src/commands/pr/integrate/internal/bootstrap-guidance.ts",
|
|
@@ -884,8 +889,8 @@
|
|
|
884
889
|
},
|
|
885
890
|
{
|
|
886
891
|
"path": "src/commands/pr/integrate/internal/prepare.ts",
|
|
887
|
-
"sha256": "
|
|
888
|
-
"size_bytes":
|
|
892
|
+
"sha256": "7a1c4e68f308baef6aae5d2a4f0eb9f29916e85f74eaee8c37c6fae05e463d77",
|
|
893
|
+
"size_bytes": 11484
|
|
889
894
|
},
|
|
890
895
|
{
|
|
891
896
|
"path": "src/commands/pr/integrate/internal/worktree.ts",
|
|
@@ -899,8 +904,8 @@
|
|
|
899
904
|
},
|
|
900
905
|
{
|
|
901
906
|
"path": "src/commands/pr/internal/auto-commit.ts",
|
|
902
|
-
"sha256": "
|
|
903
|
-
"size_bytes":
|
|
907
|
+
"sha256": "c167e47703cf9d85a1dad09427065cdf622fcc26b12c97760cf03d4320ef0c03",
|
|
908
|
+
"size_bytes": 2954
|
|
904
909
|
},
|
|
905
910
|
{
|
|
906
911
|
"path": "src/commands/pr/internal/freshness.ts",
|
|
@@ -927,10 +932,40 @@
|
|
|
927
932
|
"sha256": "93a98a192f280dba109f85c4b17ed7efd67d03c40896738102729bff16902af2",
|
|
928
933
|
"size_bytes": 9018
|
|
929
934
|
},
|
|
935
|
+
{
|
|
936
|
+
"path": "src/commands/pr/internal/sync-branch.ts",
|
|
937
|
+
"sha256": "b6c1dd6cd7beebe0afc01ff57393b70a980bff932742d08160e6d1e4c4f72d33",
|
|
938
|
+
"size_bytes": 4478
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"path": "src/commands/pr/internal/sync-github.ts",
|
|
942
|
+
"sha256": "7cbb2918a1829976cb92e59c1a3ebc1ceb21567bb2328c58ce2e6df663f7eaac",
|
|
943
|
+
"size_bytes": 7048
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"path": "src/commands/pr/internal/sync-model.ts",
|
|
947
|
+
"sha256": "0300f1469ec0c4ce45781b11eceb51e7b6c3eeaf34eb009ab18b2a7bd5cdc4ab",
|
|
948
|
+
"size_bytes": 1009
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"path": "src/commands/pr/internal/sync-open-step.ts",
|
|
952
|
+
"sha256": "cbcc14b50b5a465e70935bfb13c0a24cd4d62aceab905c47da63b911d14d9dc8",
|
|
953
|
+
"size_bytes": 5036
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"path": "src/commands/pr/internal/sync-support.ts",
|
|
957
|
+
"sha256": "1f5fad11ad90de1983bebba6a224b244672de3d3595b44c76db854acc15a034c",
|
|
958
|
+
"size_bytes": 1039
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"path": "src/commands/pr/internal/sync-update-step.ts",
|
|
962
|
+
"sha256": "787b1afc9c1704ac3e1b54e048a945f911e1a7ffd0c97e959486dab51574d0f2",
|
|
963
|
+
"size_bytes": 2826
|
|
964
|
+
},
|
|
930
965
|
{
|
|
931
966
|
"path": "src/commands/pr/internal/sync.ts",
|
|
932
|
-
"sha256": "
|
|
933
|
-
"size_bytes":
|
|
967
|
+
"sha256": "5098844e2fadaf0daa6aa6ee2e133d9f9e964d5e113e4c4272bce53aae12ecca",
|
|
968
|
+
"size_bytes": 9345
|
|
934
969
|
},
|
|
935
970
|
{
|
|
936
971
|
"path": "src/commands/pr/note.ts",
|
|
@@ -939,13 +974,13 @@
|
|
|
939
974
|
},
|
|
940
975
|
{
|
|
941
976
|
"path": "src/commands/pr/open.ts",
|
|
942
|
-
"sha256": "
|
|
943
|
-
"size_bytes":
|
|
977
|
+
"sha256": "6a0ab4b15a4a4d5253ff9c05671d159cd04f2d45a62d9dabc5d5bd39e1ab920b",
|
|
978
|
+
"size_bytes": 4212
|
|
944
979
|
},
|
|
945
980
|
{
|
|
946
981
|
"path": "src/commands/pr/pr.command.ts",
|
|
947
|
-
"sha256": "
|
|
948
|
-
"size_bytes":
|
|
982
|
+
"sha256": "c3d3b01b318818ac8acf4d8407587674d96923ae8b4449a8734fb4456edf70c5",
|
|
983
|
+
"size_bytes": 11311
|
|
949
984
|
},
|
|
950
985
|
{
|
|
951
986
|
"path": "src/commands/pr/update.ts",
|
|
@@ -959,13 +994,23 @@
|
|
|
959
994
|
},
|
|
960
995
|
{
|
|
961
996
|
"path": "src/commands/recipes.test-helpers.ts",
|
|
962
|
-
"sha256": "
|
|
963
|
-
"size_bytes":
|
|
997
|
+
"sha256": "db30218e3c74e861a8b1f3bf7308b44ac79f5741325a8fcb60b1f784e3012606",
|
|
998
|
+
"size_bytes": 19459
|
|
964
999
|
},
|
|
965
1000
|
{
|
|
966
1001
|
"path": "src/commands/recipes.ts",
|
|
967
|
-
"sha256": "
|
|
968
|
-
"size_bytes":
|
|
1002
|
+
"sha256": "0002789e7072a11a1735cfc03dd3223240f737c2774c52d1a34cb96fdbffbd60",
|
|
1003
|
+
"size_bytes": 2638
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"path": "src/commands/recipes/active.command.ts",
|
|
1007
|
+
"sha256": "fc67475fc5d2c2ddcea523fcb9d6ea2775f86a508be81fc0bd9eb9930d632390",
|
|
1008
|
+
"size_bytes": 798
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"path": "src/commands/recipes/add.command.ts",
|
|
1012
|
+
"sha256": "ee86497ac98137c7b92520464910317cc9d535d0e5c081499652c7b73aab5cfb",
|
|
1013
|
+
"size_bytes": 1342
|
|
969
1014
|
},
|
|
970
1015
|
{
|
|
971
1016
|
"path": "src/commands/recipes/cache-prune.command.ts",
|
|
@@ -977,15 +1022,35 @@
|
|
|
977
1022
|
"sha256": "9c8e29a89078ae059cb021bf8412fba37aab68583494e8df10a6eed906d26af4",
|
|
978
1023
|
"size_bytes": 1034
|
|
979
1024
|
},
|
|
1025
|
+
{
|
|
1026
|
+
"path": "src/commands/recipes/detach.command.ts",
|
|
1027
|
+
"sha256": "6435ae216325c7af4f76de008224a61b41a1d436d9c7d1be37b617a13e014010",
|
|
1028
|
+
"size_bytes": 860
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
"path": "src/commands/recipes/disable.command.ts",
|
|
1032
|
+
"sha256": "9521d898c3e0829a75d8ea6cd437ac023d108093b022c0e29ed0d852701e91e9",
|
|
1033
|
+
"size_bytes": 780
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"path": "src/commands/recipes/enable.command.ts",
|
|
1037
|
+
"sha256": "88cc3243f605ffb158577879905a257c8e4a42c56c7ce7337f9c55dd70676a66",
|
|
1038
|
+
"size_bytes": 781
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
"path": "src/commands/recipes/explain-active.command.ts",
|
|
1042
|
+
"sha256": "77e988e82c67d13cd4b230b48547c427d20e3d510362ec747402c920b3068511",
|
|
1043
|
+
"size_bytes": 715
|
|
1044
|
+
},
|
|
980
1045
|
{
|
|
981
1046
|
"path": "src/commands/recipes/explain.command.ts",
|
|
982
|
-
"sha256": "
|
|
983
|
-
"size_bytes":
|
|
1047
|
+
"sha256": "f9e5be58b94b2eeafe76fadfefea98ac146b12e07f777c6e942ca3b8898cdd9a",
|
|
1048
|
+
"size_bytes": 768
|
|
984
1049
|
},
|
|
985
1050
|
{
|
|
986
1051
|
"path": "src/commands/recipes/impl/apply.ts",
|
|
987
|
-
"sha256": "
|
|
988
|
-
"size_bytes":
|
|
1052
|
+
"sha256": "d7b30b0f6f10159ee3bd0f9d6b70a40d46a6f4b4c198b8b2836f46424f873af3",
|
|
1053
|
+
"size_bytes": 6884
|
|
989
1054
|
},
|
|
990
1055
|
{
|
|
991
1056
|
"path": "src/commands/recipes/impl/archive.ts",
|
|
@@ -994,48 +1059,83 @@
|
|
|
994
1059
|
},
|
|
995
1060
|
{
|
|
996
1061
|
"path": "src/commands/recipes/impl/commands.ts",
|
|
997
|
-
"sha256": "
|
|
998
|
-
"size_bytes":
|
|
1062
|
+
"sha256": "86eba5ec093833c7b0b79d02dbe1ece2e573dac19ffb7e98f222060b4ae9323c",
|
|
1063
|
+
"size_bytes": 887
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"path": "src/commands/recipes/impl/commands/active.ts",
|
|
1067
|
+
"sha256": "fa4bf992e0f499ef77f64bdcd0e219daf3598585b79a78258788586bc1595249",
|
|
1068
|
+
"size_bytes": 1703
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
"path": "src/commands/recipes/impl/commands/add.ts",
|
|
1072
|
+
"sha256": "72c7c8d807e7536c275df37679e6c5d68bcc05b9f19eeb612ea005a1a0685dff",
|
|
1073
|
+
"size_bytes": 5259
|
|
999
1074
|
},
|
|
1000
1075
|
{
|
|
1001
1076
|
"path": "src/commands/recipes/impl/commands/cache-prune.ts",
|
|
1002
1077
|
"sha256": "a9866b5fcefe980c5719e6c6df90b7f60ecf5b289c6f6cb04fbdc5580c47c632",
|
|
1003
1078
|
"size_bytes": 4748
|
|
1004
1079
|
},
|
|
1080
|
+
{
|
|
1081
|
+
"path": "src/commands/recipes/impl/commands/detach.ts",
|
|
1082
|
+
"sha256": "7e08a2d8fc11e44f760521a9db29646d948662c243bc5d057dfad3f3ff697910",
|
|
1083
|
+
"size_bytes": 4701
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"path": "src/commands/recipes/impl/commands/disable.ts",
|
|
1087
|
+
"sha256": "69ec8fac07673656b9d322d8980bd9dab4fbf55d34964f3c2d4ac054dfb844bd",
|
|
1088
|
+
"size_bytes": 1105
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"path": "src/commands/recipes/impl/commands/enable.ts",
|
|
1092
|
+
"sha256": "25e7fd0edba2018ca8a7331f70a44332d99aea8da8655f635a1e1e9c8e289bdf",
|
|
1093
|
+
"size_bytes": 1779
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
"path": "src/commands/recipes/impl/commands/explain-active.ts",
|
|
1097
|
+
"sha256": "7b8c2e93d5a28fd9101224a178c72b1523f74608aee10a618f962d692e5e46aa",
|
|
1098
|
+
"size_bytes": 806
|
|
1099
|
+
},
|
|
1005
1100
|
{
|
|
1006
1101
|
"path": "src/commands/recipes/impl/commands/explain.ts",
|
|
1007
|
-
"sha256": "
|
|
1008
|
-
"size_bytes":
|
|
1102
|
+
"sha256": "3e0b4a462d2f362787b6ffea5c94eaa77eda12944fd0bea377c5031a660214b5",
|
|
1103
|
+
"size_bytes": 8429
|
|
1009
1104
|
},
|
|
1010
1105
|
{
|
|
1011
1106
|
"path": "src/commands/recipes/impl/commands/info.ts",
|
|
1012
|
-
"sha256": "
|
|
1013
|
-
"size_bytes":
|
|
1107
|
+
"sha256": "d4f8cd9a481070523406685040e83112e678f2a0dba7a30bd44ca1d9e25c1932",
|
|
1108
|
+
"size_bytes": 3290
|
|
1014
1109
|
},
|
|
1015
1110
|
{
|
|
1016
1111
|
"path": "src/commands/recipes/impl/commands/install.ts",
|
|
1017
|
-
"sha256": "
|
|
1018
|
-
"size_bytes":
|
|
1112
|
+
"sha256": "c88a295ca31af6a6671300fabf958ff89338755eef3f11e29482687eb335a25a",
|
|
1113
|
+
"size_bytes": 9912
|
|
1019
1114
|
},
|
|
1020
1115
|
{
|
|
1021
1116
|
"path": "src/commands/recipes/impl/commands/list-remote.ts",
|
|
1022
|
-
"sha256": "
|
|
1023
|
-
"size_bytes":
|
|
1117
|
+
"sha256": "06756e6ffbe60813c876a90d027e1b33ae648e25cb1d11c0290b4caa9aa42d0f",
|
|
1118
|
+
"size_bytes": 2174
|
|
1024
1119
|
},
|
|
1025
1120
|
{
|
|
1026
1121
|
"path": "src/commands/recipes/impl/commands/list.ts",
|
|
1027
|
-
"sha256": "
|
|
1028
|
-
"size_bytes":
|
|
1122
|
+
"sha256": "4dcd8bceb8ab8c57b68ec279fc0cb581ac68b34c30075d1b284c9f47cf8a680a",
|
|
1123
|
+
"size_bytes": 1763
|
|
1029
1124
|
},
|
|
1030
1125
|
{
|
|
1031
1126
|
"path": "src/commands/recipes/impl/commands/remove.ts",
|
|
1032
|
-
"sha256": "
|
|
1033
|
-
"size_bytes":
|
|
1127
|
+
"sha256": "b10772934b928dec3435ba442e53d30f9387a58a95498542f10c7c8c1abb4861",
|
|
1128
|
+
"size_bytes": 2342
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"path": "src/commands/recipes/impl/commands/update.ts",
|
|
1132
|
+
"sha256": "d0860e34a3d3d0a50b0af731e5fb0a7fc788de93eb1a19eea4a64d38909e280b",
|
|
1133
|
+
"size_bytes": 5222
|
|
1034
1134
|
},
|
|
1035
1135
|
{
|
|
1036
1136
|
"path": "src/commands/recipes/impl/constants.ts",
|
|
1037
|
-
"sha256": "
|
|
1038
|
-
"size_bytes":
|
|
1137
|
+
"sha256": "c979671da44723edf9d298898567133a3fdbb8d7be245cff35b751a4d5d701bd",
|
|
1138
|
+
"size_bytes": 481
|
|
1039
1139
|
},
|
|
1040
1140
|
{
|
|
1041
1141
|
"path": "src/commands/recipes/impl/format.ts",
|
|
@@ -1044,33 +1144,43 @@
|
|
|
1044
1144
|
},
|
|
1045
1145
|
{
|
|
1046
1146
|
"path": "src/commands/recipes/impl/index.ts",
|
|
1047
|
-
"sha256": "
|
|
1048
|
-
"size_bytes":
|
|
1147
|
+
"sha256": "fdb62add3cb739d31bfc31bb378e41ca9538799155a32b6064a3da00e9fb0698",
|
|
1148
|
+
"size_bytes": 7094
|
|
1049
1149
|
},
|
|
1050
1150
|
{
|
|
1051
1151
|
"path": "src/commands/recipes/impl/installed-recipes.ts",
|
|
1052
|
-
"sha256": "
|
|
1053
|
-
"size_bytes":
|
|
1152
|
+
"sha256": "13c8c7b63d672d9588edc8c54c79fa8e35df4ac5caca174b2cd641563a2a3627",
|
|
1153
|
+
"size_bytes": 2974
|
|
1054
1154
|
},
|
|
1055
1155
|
{
|
|
1056
|
-
"path": "src/commands/recipes/impl/
|
|
1057
|
-
"sha256": "
|
|
1058
|
-
"size_bytes":
|
|
1156
|
+
"path": "src/commands/recipes/impl/mutation-transaction.ts",
|
|
1157
|
+
"sha256": "f3ddedc3fbbd6fe52d862798deb25b281e13f6551e290ec94916d1974f5e4935",
|
|
1158
|
+
"size_bytes": 1580
|
|
1059
1159
|
},
|
|
1060
1160
|
{
|
|
1061
|
-
"path": "src/commands/recipes/impl/
|
|
1062
|
-
"sha256": "
|
|
1063
|
-
"size_bytes":
|
|
1161
|
+
"path": "src/commands/recipes/impl/overlay-project.ts",
|
|
1162
|
+
"sha256": "0f096d3dd4dc67cd2916accdbfe0a57d9ea41f7bb42006ad177bfc891470f621",
|
|
1163
|
+
"size_bytes": 13972
|
|
1064
1164
|
},
|
|
1065
1165
|
{
|
|
1066
1166
|
"path": "src/commands/recipes/impl/paths.ts",
|
|
1067
|
-
"sha256": "
|
|
1068
|
-
"size_bytes":
|
|
1167
|
+
"sha256": "4fc36987f586d974e01c6de147b298fad769878b40b1a8362a41ee7bf0c63a30",
|
|
1168
|
+
"size_bytes": 2837
|
|
1069
1169
|
},
|
|
1070
1170
|
{
|
|
1071
1171
|
"path": "src/commands/recipes/impl/project-installed-recipes.ts",
|
|
1072
|
-
"sha256": "
|
|
1073
|
-
"size_bytes":
|
|
1172
|
+
"sha256": "3c08758e0e4e497a8787659444982a68b8e934c3b5490534f768ff08a45161a3",
|
|
1173
|
+
"size_bytes": 3016
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
"path": "src/commands/recipes/impl/project-recipe-state.ts",
|
|
1177
|
+
"sha256": "78d59a9ae4eec4f1657aa923c2acce245666ac1fa0dfd826f178988778df0148",
|
|
1178
|
+
"size_bytes": 4195
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
"path": "src/commands/recipes/impl/project-registry.ts",
|
|
1182
|
+
"sha256": "6a97b1003a5ebd09a5829252af2e64a6acef0ba7b7a6cf923b95b4de96b999b4",
|
|
1183
|
+
"size_bytes": 5986
|
|
1074
1184
|
},
|
|
1075
1185
|
{
|
|
1076
1186
|
"path": "src/commands/recipes/impl/project.ts",
|
|
@@ -1079,23 +1189,23 @@
|
|
|
1079
1189
|
},
|
|
1080
1190
|
{
|
|
1081
1191
|
"path": "src/commands/recipes/impl/resolver.ts",
|
|
1082
|
-
"sha256": "
|
|
1083
|
-
"size_bytes":
|
|
1192
|
+
"sha256": "fe90a73b3a728ee3fa013cd2dbc68a36feb6455111f33c9927add60001a9986e",
|
|
1193
|
+
"size_bytes": 11835
|
|
1084
1194
|
},
|
|
1085
1195
|
{
|
|
1086
|
-
"path": "src/commands/recipes/impl/
|
|
1087
|
-
"sha256": "
|
|
1088
|
-
"size_bytes":
|
|
1196
|
+
"path": "src/commands/recipes/impl/types.ts",
|
|
1197
|
+
"sha256": "1df01153ed1758e5eea65b2956f1dcf1bf622c51941f42426656ab11942e5c0a",
|
|
1198
|
+
"size_bytes": 1390
|
|
1089
1199
|
},
|
|
1090
1200
|
{
|
|
1091
|
-
"path": "src/commands/recipes/impl/
|
|
1092
|
-
"sha256": "
|
|
1093
|
-
"size_bytes":
|
|
1201
|
+
"path": "src/commands/recipes/impl/version.ts",
|
|
1202
|
+
"sha256": "1e0c56206f6d96d1ebac539cedbb42f4978c97f3bc0d403daf7390bcc484226e",
|
|
1203
|
+
"size_bytes": 426
|
|
1094
1204
|
},
|
|
1095
1205
|
{
|
|
1096
1206
|
"path": "src/commands/recipes/info.command.ts",
|
|
1097
|
-
"sha256": "
|
|
1098
|
-
"size_bytes":
|
|
1207
|
+
"sha256": "ddefcdd3c6cfc42a67accd5755828a343da51701679c505f1dfb4926b0595925",
|
|
1208
|
+
"size_bytes": 707
|
|
1099
1209
|
},
|
|
1100
1210
|
{
|
|
1101
1211
|
"path": "src/commands/recipes/install.run.ts",
|
|
@@ -1104,8 +1214,8 @@
|
|
|
1104
1214
|
},
|
|
1105
1215
|
{
|
|
1106
1216
|
"path": "src/commands/recipes/install.spec.ts",
|
|
1107
|
-
"sha256": "
|
|
1108
|
-
"size_bytes":
|
|
1217
|
+
"sha256": "a77582d2b892323fddf711aca98654fd737917a5192492af4e97efdc4097724e",
|
|
1218
|
+
"size_bytes": 4792
|
|
1109
1219
|
},
|
|
1110
1220
|
{
|
|
1111
1221
|
"path": "src/commands/recipes/list-remote.command.ts",
|
|
@@ -1114,8 +1224,8 @@
|
|
|
1114
1224
|
},
|
|
1115
1225
|
{
|
|
1116
1226
|
"path": "src/commands/recipes/list.command.ts",
|
|
1117
|
-
"sha256": "
|
|
1118
|
-
"size_bytes":
|
|
1227
|
+
"sha256": "e70fa0175d1e4bec42044174fd19e85d50578efe7dd86235c95d0a0ce431fb6b",
|
|
1228
|
+
"size_bytes": 1508
|
|
1119
1229
|
},
|
|
1120
1230
|
{
|
|
1121
1231
|
"path": "src/commands/recipes/recipes.command.ts",
|
|
@@ -1124,28 +1234,38 @@
|
|
|
1124
1234
|
},
|
|
1125
1235
|
{
|
|
1126
1236
|
"path": "src/commands/recipes/remove.command.ts",
|
|
1127
|
-
"sha256": "
|
|
1128
|
-
"size_bytes":
|
|
1237
|
+
"sha256": "2704677705ffa0611d295d6adabf3269d719f8250515da52ac92bbbd2b4b6de0",
|
|
1238
|
+
"size_bytes": 750
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"path": "src/commands/recipes/update.command.ts",
|
|
1242
|
+
"sha256": "559299fe375040313ac9e3339f4ae50dbb48baf37c27ddeb82a6307b14a50eac",
|
|
1243
|
+
"size_bytes": 1228
|
|
1129
1244
|
},
|
|
1130
1245
|
{
|
|
1131
1246
|
"path": "src/commands/release.test-helpers.ts",
|
|
1132
|
-
"sha256": "
|
|
1133
|
-
"size_bytes":
|
|
1247
|
+
"sha256": "f53ff6de71cc8af390c872439bcb35f27314c9fd04ee63e5359e4d68994ebb21",
|
|
1248
|
+
"size_bytes": 3186
|
|
1134
1249
|
},
|
|
1135
1250
|
{
|
|
1136
1251
|
"path": "src/commands/release/apply.command.ts",
|
|
1137
|
-
"sha256": "
|
|
1138
|
-
"size_bytes":
|
|
1252
|
+
"sha256": "099b4bb3509d7ce0102f6739821695bc426d1fc3575727c78ecfae291a2da50b",
|
|
1253
|
+
"size_bytes": 13551
|
|
1139
1254
|
},
|
|
1140
1255
|
{
|
|
1141
1256
|
"path": "src/commands/release/apply.mutation.ts",
|
|
1142
|
-
"sha256": "
|
|
1143
|
-
"size_bytes":
|
|
1257
|
+
"sha256": "c88dd2318e186bae8f4d03ce0e2a23c8c22146754a90570fbfb7e279cd0898b3",
|
|
1258
|
+
"size_bytes": 5665
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"path": "src/commands/release/apply.pipeline.ts",
|
|
1262
|
+
"sha256": "5362a3aa8d57e38ae025310ec1a622b573ff1eb8080054bc6444ed557ed4af15",
|
|
1263
|
+
"size_bytes": 18469
|
|
1144
1264
|
},
|
|
1145
1265
|
{
|
|
1146
1266
|
"path": "src/commands/release/apply.preflight.ts",
|
|
1147
|
-
"sha256": "
|
|
1148
|
-
"size_bytes":
|
|
1267
|
+
"sha256": "fea499ab4adddef9c077cbd461a943cd075d637ddaf795300a96a9216de51c9a",
|
|
1268
|
+
"size_bytes": 15333
|
|
1149
1269
|
},
|
|
1150
1270
|
{
|
|
1151
1271
|
"path": "src/commands/release/apply.reporting.ts",
|
|
@@ -1154,8 +1274,8 @@
|
|
|
1154
1274
|
},
|
|
1155
1275
|
{
|
|
1156
1276
|
"path": "src/commands/release/apply.types.ts",
|
|
1157
|
-
"sha256": "
|
|
1158
|
-
"size_bytes":
|
|
1277
|
+
"sha256": "173f3159791c6c1f75b935e8cbefa021aad0c2d5aacdd4bf448f96289977f7c7",
|
|
1278
|
+
"size_bytes": 1899
|
|
1159
1279
|
},
|
|
1160
1280
|
{
|
|
1161
1281
|
"path": "src/commands/release/plan.command.ts",
|
|
@@ -1179,13 +1299,13 @@
|
|
|
1179
1299
|
},
|
|
1180
1300
|
{
|
|
1181
1301
|
"path": "src/commands/scenario/execute.command.ts",
|
|
1182
|
-
"sha256": "
|
|
1183
|
-
"size_bytes":
|
|
1302
|
+
"sha256": "f89df359b2f26c3e01a4c28845411951afca3a9b0c4c35ed4b22a8858dc21a74",
|
|
1303
|
+
"size_bytes": 5017
|
|
1184
1304
|
},
|
|
1185
1305
|
{
|
|
1186
1306
|
"path": "src/commands/scenario/impl/commands.ts",
|
|
1187
|
-
"sha256": "
|
|
1188
|
-
"size_bytes":
|
|
1307
|
+
"sha256": "c8d8578508ea2824a27d7e87de2f2057d1fc6baafadac89d9c3f81530a261dac",
|
|
1308
|
+
"size_bytes": 13007
|
|
1189
1309
|
},
|
|
1190
1310
|
{
|
|
1191
1311
|
"path": "src/commands/scenario/impl/report.ts",
|
|
@@ -1194,23 +1314,23 @@
|
|
|
1194
1314
|
},
|
|
1195
1315
|
{
|
|
1196
1316
|
"path": "src/commands/scenario/info.command.ts",
|
|
1197
|
-
"sha256": "
|
|
1198
|
-
"size_bytes":
|
|
1317
|
+
"sha256": "01812137897e6c68d6f93d3c71ded9a4eb7b8b21d5ce5b8f285ce9f9c0851fde",
|
|
1318
|
+
"size_bytes": 1318
|
|
1199
1319
|
},
|
|
1200
1320
|
{
|
|
1201
1321
|
"path": "src/commands/scenario/list.command.ts",
|
|
1202
|
-
"sha256": "
|
|
1203
|
-
"size_bytes":
|
|
1322
|
+
"sha256": "b57a464b2ba5f35cf2242309b1be033c5d087eb090717225a67740405d4b79da",
|
|
1323
|
+
"size_bytes": 671
|
|
1204
1324
|
},
|
|
1205
1325
|
{
|
|
1206
1326
|
"path": "src/commands/scenario/run.command.ts",
|
|
1207
|
-
"sha256": "
|
|
1208
|
-
"size_bytes":
|
|
1327
|
+
"sha256": "4cb5907f8c67b4923b670411f39615d48a8db307fea3ae3a6d0abb054a9b624e",
|
|
1328
|
+
"size_bytes": 1344
|
|
1209
1329
|
},
|
|
1210
1330
|
{
|
|
1211
1331
|
"path": "src/commands/scenario/scenario.command.ts",
|
|
1212
|
-
"sha256": "
|
|
1213
|
-
"size_bytes":
|
|
1332
|
+
"sha256": "373b87cda2a75fbdc4b067d04ecba5581d09717416a3f2776c9b09acd4a10d17",
|
|
1333
|
+
"size_bytes": 1068
|
|
1214
1334
|
},
|
|
1215
1335
|
{
|
|
1216
1336
|
"path": "src/commands/shared/approval-requirements.ts",
|
|
@@ -1284,18 +1404,18 @@
|
|
|
1284
1404
|
},
|
|
1285
1405
|
{
|
|
1286
1406
|
"path": "src/commands/shared/reconcile-check.ts",
|
|
1287
|
-
"sha256": "
|
|
1288
|
-
"size_bytes":
|
|
1407
|
+
"sha256": "f03a117a7713319df51debc3b7131737158852fe7a98ca1f221543e787d4c3fc",
|
|
1408
|
+
"size_bytes": 6415
|
|
1289
1409
|
},
|
|
1290
1410
|
{
|
|
1291
1411
|
"path": "src/commands/shared/task-backend.ts",
|
|
1292
|
-
"sha256": "
|
|
1293
|
-
"size_bytes":
|
|
1412
|
+
"sha256": "feb1390ee469b94758e3ddd0c96690fd63ce1d59596fecf14797d844eaaed43c",
|
|
1413
|
+
"size_bytes": 12435
|
|
1294
1414
|
},
|
|
1295
1415
|
{
|
|
1296
1416
|
"path": "src/commands/shared/task-handoff.ts",
|
|
1297
|
-
"sha256": "
|
|
1298
|
-
"size_bytes":
|
|
1417
|
+
"sha256": "71daeba5f527657c8b890c36b43a1d4d2db0693b32fa1862b930e4f6cbfafa5c",
|
|
1418
|
+
"size_bytes": 7343
|
|
1299
1419
|
},
|
|
1300
1420
|
{
|
|
1301
1421
|
"path": "src/commands/shared/task-local-freshness.ts",
|
|
@@ -1304,13 +1424,33 @@
|
|
|
1304
1424
|
},
|
|
1305
1425
|
{
|
|
1306
1426
|
"path": "src/commands/shared/task-mutation.ts",
|
|
1307
|
-
"sha256": "
|
|
1308
|
-
"size_bytes":
|
|
1427
|
+
"sha256": "079790fce4c7cafe08e4ebfd0f7fcb202edd55ace9470aee4f19bf8d026b632f",
|
|
1428
|
+
"size_bytes": 4311
|
|
1309
1429
|
},
|
|
1310
1430
|
{
|
|
1311
1431
|
"path": "src/commands/shared/task-store.ts",
|
|
1312
|
-
"sha256": "
|
|
1313
|
-
"size_bytes":
|
|
1432
|
+
"sha256": "299c2a609b0ffeb61365b5e3ef6ca3c957e4db7cc55965523a8e9fa88c1f8c7f",
|
|
1433
|
+
"size_bytes": 615
|
|
1434
|
+
},
|
|
1435
|
+
{
|
|
1436
|
+
"path": "src/commands/shared/task-store/intents.ts",
|
|
1437
|
+
"sha256": "504e895e0e5944f37dcd431337b7acc5bb975c579569845cd58372359a9bbbaa",
|
|
1438
|
+
"size_bytes": 10592
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"path": "src/commands/shared/task-store/readme.ts",
|
|
1442
|
+
"sha256": "d34041afedf9eb8f9f342ac66d7a438d21ffa96216e9f8beba5187063d739c1a",
|
|
1443
|
+
"size_bytes": 5520
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"path": "src/commands/shared/task-store/store.ts",
|
|
1447
|
+
"sha256": "60eed1d28f907753511d603e7253824188e256180789b917309ee4e0939d0cf5",
|
|
1448
|
+
"size_bytes": 4969
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"path": "src/commands/shared/task-store/types.ts",
|
|
1452
|
+
"sha256": "c04e64517495786e9b4d5b1e5b9f886623b4311456b99a9fe4c26b7ef9cffba8",
|
|
1453
|
+
"size_bytes": 3032
|
|
1314
1454
|
},
|
|
1315
1455
|
{
|
|
1316
1456
|
"path": "src/commands/start.run.ts",
|
|
@@ -1344,8 +1484,8 @@
|
|
|
1344
1484
|
},
|
|
1345
1485
|
{
|
|
1346
1486
|
"path": "src/commands/task/block.ts",
|
|
1347
|
-
"sha256": "
|
|
1348
|
-
"size_bytes":
|
|
1487
|
+
"sha256": "a0101e03efb334cc14bddd3568d2369fe90b06b99b3e356ebfefa5f47e88fd32",
|
|
1488
|
+
"size_bytes": 3680
|
|
1349
1489
|
},
|
|
1350
1490
|
{
|
|
1351
1491
|
"path": "src/commands/task/close-duplicate.command.ts",
|
|
@@ -1379,8 +1519,8 @@
|
|
|
1379
1519
|
},
|
|
1380
1520
|
{
|
|
1381
1521
|
"path": "src/commands/task/comment.ts",
|
|
1382
|
-
"sha256": "
|
|
1383
|
-
"size_bytes":
|
|
1522
|
+
"sha256": "6283ea4c0cfde409d6600faa869f80a51434c2f1418d439f3494c2815af61c09",
|
|
1523
|
+
"size_bytes": 2630
|
|
1384
1524
|
},
|
|
1385
1525
|
{
|
|
1386
1526
|
"path": "src/commands/task/derive.command.ts",
|
|
@@ -1444,13 +1584,13 @@
|
|
|
1444
1584
|
},
|
|
1445
1585
|
{
|
|
1446
1586
|
"path": "src/commands/task/finish-shared.ts",
|
|
1447
|
-
"sha256": "
|
|
1448
|
-
"size_bytes":
|
|
1587
|
+
"sha256": "93cd950780b5e38c31d60b1a14283012ff43b48f66260f1431919ec2378ff93e",
|
|
1588
|
+
"size_bytes": 10197
|
|
1449
1589
|
},
|
|
1450
1590
|
{
|
|
1451
1591
|
"path": "src/commands/task/finish.ts",
|
|
1452
|
-
"sha256": "
|
|
1453
|
-
"size_bytes":
|
|
1592
|
+
"sha256": "b8494141b07b607a103303d792ee31946b8ea2fca001ac2af10d6f759bf99859",
|
|
1593
|
+
"size_bytes": 21951
|
|
1454
1594
|
},
|
|
1455
1595
|
{
|
|
1456
1596
|
"path": "src/commands/task/handoff-record.command.ts",
|
|
@@ -1459,8 +1599,8 @@
|
|
|
1459
1599
|
},
|
|
1460
1600
|
{
|
|
1461
1601
|
"path": "src/commands/task/handoff-show.command.ts",
|
|
1462
|
-
"sha256": "
|
|
1463
|
-
"size_bytes":
|
|
1602
|
+
"sha256": "3155747642271d70ac9acf28e57653a2a93b7667c1892ad2caaaa84611ab775e",
|
|
1603
|
+
"size_bytes": 4160
|
|
1464
1604
|
},
|
|
1465
1605
|
{
|
|
1466
1606
|
"path": "src/commands/task/handoff.command.ts",
|
|
@@ -1484,8 +1624,8 @@
|
|
|
1484
1624
|
},
|
|
1485
1625
|
{
|
|
1486
1626
|
"path": "src/commands/task/hosted-merge-sync.ts",
|
|
1487
|
-
"sha256": "
|
|
1488
|
-
"size_bytes":
|
|
1627
|
+
"sha256": "148fce5710f57ee50e1feecffe2a167be75344a2657314ae4dc51107127fd69b",
|
|
1628
|
+
"size_bytes": 22451
|
|
1489
1629
|
},
|
|
1490
1630
|
{
|
|
1491
1631
|
"path": "src/commands/task/index.ts",
|
|
@@ -1504,8 +1644,8 @@
|
|
|
1504
1644
|
},
|
|
1505
1645
|
{
|
|
1506
1646
|
"path": "src/commands/task/list.run.ts",
|
|
1507
|
-
"sha256": "
|
|
1508
|
-
"size_bytes":
|
|
1647
|
+
"sha256": "9e636df36baf660fc13c00fc658b2a36ab2dde64e06e10d3841644770525dfec",
|
|
1648
|
+
"size_bytes": 896
|
|
1509
1649
|
},
|
|
1510
1650
|
{
|
|
1511
1651
|
"path": "src/commands/task/list.spec.ts",
|
|
@@ -1539,8 +1679,8 @@
|
|
|
1539
1679
|
},
|
|
1540
1680
|
{
|
|
1541
1681
|
"path": "src/commands/task/new.command.ts",
|
|
1542
|
-
"sha256": "
|
|
1543
|
-
"size_bytes":
|
|
1682
|
+
"sha256": "da0e3f94b1458ee50afcc168d260d0701e338093a6cc40a12e2735be98e6e143",
|
|
1683
|
+
"size_bytes": 970
|
|
1544
1684
|
},
|
|
1545
1685
|
{
|
|
1546
1686
|
"path": "src/commands/task/new.spec.ts",
|
|
@@ -1549,8 +1689,8 @@
|
|
|
1549
1689
|
},
|
|
1550
1690
|
{
|
|
1551
1691
|
"path": "src/commands/task/new.ts",
|
|
1552
|
-
"sha256": "
|
|
1553
|
-
"size_bytes":
|
|
1692
|
+
"sha256": "f5626fb7c5268a8cf648b8f2f71e389e877446b1021ee6aeadd4af91c7fd244d",
|
|
1693
|
+
"size_bytes": 9901
|
|
1554
1694
|
},
|
|
1555
1695
|
{
|
|
1556
1696
|
"path": "src/commands/task/next.run.ts",
|
|
@@ -1759,8 +1899,8 @@
|
|
|
1759
1899
|
},
|
|
1760
1900
|
{
|
|
1761
1901
|
"path": "src/commands/task/shared/tags.ts",
|
|
1762
|
-
"sha256": "
|
|
1763
|
-
"size_bytes":
|
|
1902
|
+
"sha256": "7e1246b5678fd4e01c540b040c9698a95358e130491d7d69847f22045a5fe018",
|
|
1903
|
+
"size_bytes": 8641
|
|
1764
1904
|
},
|
|
1765
1905
|
{
|
|
1766
1906
|
"path": "src/commands/task/shared/transition-command.ts",
|
|
@@ -1789,8 +1929,8 @@
|
|
|
1789
1929
|
},
|
|
1790
1930
|
{
|
|
1791
1931
|
"path": "src/commands/task/show.ts",
|
|
1792
|
-
"sha256": "
|
|
1793
|
-
"size_bytes":
|
|
1932
|
+
"sha256": "1498fbb43da5a438ba71d486c1719c6e06b731a2f6e3fdcfb25111dba4c58136",
|
|
1933
|
+
"size_bytes": 2708
|
|
1794
1934
|
},
|
|
1795
1935
|
{
|
|
1796
1936
|
"path": "src/commands/task/start-ready.command.ts",
|
|
@@ -1819,8 +1959,8 @@
|
|
|
1819
1959
|
},
|
|
1820
1960
|
{
|
|
1821
1961
|
"path": "src/commands/task/update.ts",
|
|
1822
|
-
"sha256": "
|
|
1823
|
-
"size_bytes":
|
|
1962
|
+
"sha256": "2acba2811b0f39907b9b93da04f1679077336dfd2697daab884e2b6460400c53",
|
|
1963
|
+
"size_bytes": 3970
|
|
1824
1964
|
},
|
|
1825
1965
|
{
|
|
1826
1966
|
"path": "src/commands/task/verify-command-shared.ts",
|
|
@@ -2057,20 +2197,15 @@
|
|
|
2057
2197
|
"sha256": "3869fbd4166d41ff20d2c934e154deacb1c8c4e68d55d96f10176c73e42cfe75",
|
|
2058
2198
|
"size_bytes": 583
|
|
2059
2199
|
},
|
|
2060
|
-
{
|
|
2061
|
-
"path": "src/recipes/bundled-recipes.ts",
|
|
2062
|
-
"sha256": "d5028de2b19e56382cb4628536ad641d31f8a6eb3e44014133d395596e4bb4ed",
|
|
2063
|
-
"size_bytes": 925
|
|
2064
|
-
},
|
|
2065
2200
|
{
|
|
2066
2201
|
"path": "src/runner/adapters/codex.ts",
|
|
2067
|
-
"sha256": "
|
|
2068
|
-
"size_bytes":
|
|
2202
|
+
"sha256": "ce77963b67e979f363dbbc76b7b31e335a6459a0399f1886d693a5eb2efc3a77",
|
|
2203
|
+
"size_bytes": 17235
|
|
2069
2204
|
},
|
|
2070
2205
|
{
|
|
2071
2206
|
"path": "src/runner/adapters/custom.ts",
|
|
2072
|
-
"sha256": "
|
|
2073
|
-
"size_bytes":
|
|
2207
|
+
"sha256": "884ae27f5c4bf1a81ac606f51e52ef8092af5d752bcc69d370f6b7c754ef456e",
|
|
2208
|
+
"size_bytes": 22393
|
|
2074
2209
|
},
|
|
2075
2210
|
{
|
|
2076
2211
|
"path": "src/runner/adapters/index.ts",
|
|
@@ -2082,6 +2217,11 @@
|
|
|
2082
2217
|
"sha256": "789359a40f02af302af1136d08548dea78a4b350c3f992639275f642eedcdfaa",
|
|
2083
2218
|
"size_bytes": 2395
|
|
2084
2219
|
},
|
|
2220
|
+
{
|
|
2221
|
+
"path": "src/runner/adapters/runtime-shared.ts",
|
|
2222
|
+
"sha256": "8fc0e13b001513f1d726440cc70bbc2a91ed97548a50a021528021dc03449824",
|
|
2223
|
+
"size_bytes": 2195
|
|
2224
|
+
},
|
|
2085
2225
|
{
|
|
2086
2226
|
"path": "src/runner/adapters/shared.ts",
|
|
2087
2227
|
"sha256": "8b0edf11b0cb5061dc746db5d9d9e0ed50779b5f2724a6fc85a68248eff4a396",
|
|
@@ -2107,15 +2247,35 @@
|
|
|
2107
2247
|
"sha256": "c35259c3bcced29d05352914c2fddd2b80e8689f95596a2f95e22cace9d61dff",
|
|
2108
2248
|
"size_bytes": 836
|
|
2109
2249
|
},
|
|
2250
|
+
{
|
|
2251
|
+
"path": "src/runner/context/base-prompt-sources.ts",
|
|
2252
|
+
"sha256": "c28ed246e49941d73fe7cd34a9d2d4461847eb7d709cb50ef802215c4729c93c",
|
|
2253
|
+
"size_bytes": 6612
|
|
2254
|
+
},
|
|
2110
2255
|
{
|
|
2111
2256
|
"path": "src/runner/context/base-prompts.ts",
|
|
2112
|
-
"sha256": "
|
|
2113
|
-
"size_bytes":
|
|
2257
|
+
"sha256": "927e405a0b3d1f7c3f7e2554f9d44840bd5706df61115d0a4c7d0ef36fda49e4",
|
|
2258
|
+
"size_bytes": 2493
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"path": "src/runner/context/overlay-prompt-blocks.ts",
|
|
2262
|
+
"sha256": "14de9404ebe72a713b9d3bf3891bd64b0a3ac863661383ed463e3d9dd284b596",
|
|
2263
|
+
"size_bytes": 2813
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
"path": "src/runner/context/prompt-block-shared.ts",
|
|
2267
|
+
"sha256": "8351a826aaa0df020db1c811e5061256ff02580c7ba245cb20e67f5a5a892f14",
|
|
2268
|
+
"size_bytes": 4129
|
|
2114
2269
|
},
|
|
2115
2270
|
{
|
|
2116
2271
|
"path": "src/runner/context/recipe-context.ts",
|
|
2117
|
-
"sha256": "
|
|
2118
|
-
"size_bytes":
|
|
2272
|
+
"sha256": "cfdc1b6748dcf033abff35e2214ba87c5475426b97112c77e24bcc49936d532f",
|
|
2273
|
+
"size_bytes": 4476
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"path": "src/runner/context/recipe-prompt-blocks.ts",
|
|
2277
|
+
"sha256": "76c6d947cdf1f0067c4d69ddb88d32cbb719d3f645efe8e299c970b2d533d8a5",
|
|
2278
|
+
"size_bytes": 6587
|
|
2119
2279
|
},
|
|
2120
2280
|
{
|
|
2121
2281
|
"path": "src/runner/context/task-context.ts",
|
|
@@ -2189,18 +2349,18 @@
|
|
|
2189
2349
|
},
|
|
2190
2350
|
{
|
|
2191
2351
|
"path": "src/runner/types.ts",
|
|
2192
|
-
"sha256": "
|
|
2193
|
-
"size_bytes":
|
|
2352
|
+
"sha256": "34b80d25e9fc6e15b1a82dca58bcb913786bb4e12407e40cc629b65de94b35b7",
|
|
2353
|
+
"size_bytes": 10419
|
|
2194
2354
|
},
|
|
2195
2355
|
{
|
|
2196
2356
|
"path": "src/runner/usecases/scenario-materialize-task.ts",
|
|
2197
|
-
"sha256": "
|
|
2198
|
-
"size_bytes":
|
|
2357
|
+
"sha256": "0c729af9e15422f2763ac524fd6c8cb57c2a47a4c4f2269946272ba09cf8afec",
|
|
2358
|
+
"size_bytes": 9912
|
|
2199
2359
|
},
|
|
2200
2360
|
{
|
|
2201
2361
|
"path": "src/runner/usecases/task-run-inspect.ts",
|
|
2202
|
-
"sha256": "
|
|
2203
|
-
"size_bytes":
|
|
2362
|
+
"sha256": "e9e5c6bc62ef5d2e546c2cc14b9b27dfc5e7d5a069f3c135e182470680357bec",
|
|
2363
|
+
"size_bytes": 3522
|
|
2204
2364
|
},
|
|
2205
2365
|
{
|
|
2206
2366
|
"path": "src/runner/usecases/task-run-lifecycle-cancel.ts",
|
|
@@ -2214,8 +2374,8 @@
|
|
|
2214
2374
|
},
|
|
2215
2375
|
{
|
|
2216
2376
|
"path": "src/runner/usecases/task-run-lifecycle-shared.ts",
|
|
2217
|
-
"sha256": "
|
|
2218
|
-
"size_bytes":
|
|
2377
|
+
"sha256": "f69e5532459897a5e421e85219ee9112f6bef162b5fd998f0380f053ad0e9b80",
|
|
2378
|
+
"size_bytes": 8243
|
|
2219
2379
|
},
|
|
2220
2380
|
{
|
|
2221
2381
|
"path": "src/runner/usecases/task-run-lifecycle.ts",
|
|
@@ -2224,8 +2384,8 @@
|
|
|
2224
2384
|
},
|
|
2225
2385
|
{
|
|
2226
2386
|
"path": "src/runner/usecases/task-run.ts",
|
|
2227
|
-
"sha256": "
|
|
2228
|
-
"size_bytes":
|
|
2387
|
+
"sha256": "8dec3a114f5f46cd0882f583e1aec3654b6cbdc74900e9e67d36da81aaedb86c",
|
|
2388
|
+
"size_bytes": 14349
|
|
2229
2389
|
},
|
|
2230
2390
|
{
|
|
2231
2391
|
"path": "src/runtime/approvals/index.ts",
|
|
@@ -2249,13 +2409,13 @@
|
|
|
2249
2409
|
},
|
|
2250
2410
|
{
|
|
2251
2411
|
"path": "src/runtime/behavior/resolve.ts",
|
|
2252
|
-
"sha256": "
|
|
2253
|
-
"size_bytes":
|
|
2412
|
+
"sha256": "efb29fadf88c71d008993beff2bfa6098c7558a5ad05353a4315b632fbe8d18d",
|
|
2413
|
+
"size_bytes": 3686
|
|
2254
2414
|
},
|
|
2255
2415
|
{
|
|
2256
2416
|
"path": "src/runtime/behavior/types.ts",
|
|
2257
|
-
"sha256": "
|
|
2258
|
-
"size_bytes":
|
|
2417
|
+
"sha256": "253f723069cea44d2b0b0beafd7feb290faade5daa4f96e647bd87972a4aeb0d",
|
|
2418
|
+
"size_bytes": 891
|
|
2259
2419
|
},
|
|
2260
2420
|
{
|
|
2261
2421
|
"path": "src/runtime/capabilities/backend.ts",
|
|
@@ -2269,8 +2429,8 @@
|
|
|
2269
2429
|
},
|
|
2270
2430
|
{
|
|
2271
2431
|
"path": "src/runtime/capabilities/recipe.ts",
|
|
2272
|
-
"sha256": "
|
|
2273
|
-
"size_bytes":
|
|
2432
|
+
"sha256": "88eec1e68d338ad2c3f2893a50af4d67119a1f0efa65eed9b294da06caa0a631",
|
|
2433
|
+
"size_bytes": 6462
|
|
2274
2434
|
},
|
|
2275
2435
|
{
|
|
2276
2436
|
"path": "src/runtime/capabilities/registry.ts",
|
|
@@ -2287,6 +2447,11 @@
|
|
|
2287
2447
|
"sha256": "2c4d516324972eaff7a28415abe05531b428bb66429dd8c4029f971bab5730be",
|
|
2288
2448
|
"size_bytes": 1145
|
|
2289
2449
|
},
|
|
2450
|
+
{
|
|
2451
|
+
"path": "src/runtime/execution-context.ts",
|
|
2452
|
+
"sha256": "4eccfdd8c7871cfc570bba74d058a69f666aa7a1a8072adcf15bf3e629e9a6f5",
|
|
2453
|
+
"size_bytes": 6165
|
|
2454
|
+
},
|
|
2290
2455
|
{
|
|
2291
2456
|
"path": "src/runtime/execution-profile/index.ts",
|
|
2292
2457
|
"sha256": "aea4bce51a62b3c3b5150150e7305196f2aa19d38cd33b541258dd9b8c8d8029",
|
|
@@ -2337,15 +2502,35 @@
|
|
|
2337
2502
|
"sha256": "8fe94a7f18a11401d140bc1f3748bfeb37e10e89b4054b57be8ac3b329a1dd20",
|
|
2338
2503
|
"size_bytes": 2720
|
|
2339
2504
|
},
|
|
2505
|
+
{
|
|
2506
|
+
"path": "src/runtime/incidents/advice-strategy.ts",
|
|
2507
|
+
"sha256": "621ca61b64c782e563be9505c311d9ee7310442585061de8cba5b18f47e8c50f",
|
|
2508
|
+
"size_bytes": 2892
|
|
2509
|
+
},
|
|
2340
2510
|
{
|
|
2341
2511
|
"path": "src/runtime/incidents/index.ts",
|
|
2342
2512
|
"sha256": "10bae87d02c646f7d97d3a84b7fb3a5d001c78429e2d0974f8305d96a1c35273",
|
|
2343
2513
|
"size_bytes": 634
|
|
2344
2514
|
},
|
|
2515
|
+
{
|
|
2516
|
+
"path": "src/runtime/incidents/plan-strategy.ts",
|
|
2517
|
+
"sha256": "ee7ad959153bb4da89551f7081169b3efc1578c9b3bade3ae661273d63848d02",
|
|
2518
|
+
"size_bytes": 8529
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"path": "src/runtime/incidents/registry-strategy.ts",
|
|
2522
|
+
"sha256": "4252e8ed10be227de9346e80a6abe142343275a0ef12b39a60e1e705de5b191c",
|
|
2523
|
+
"size_bytes": 11364
|
|
2524
|
+
},
|
|
2345
2525
|
{
|
|
2346
2526
|
"path": "src/runtime/incidents/resolve.ts",
|
|
2347
|
-
"sha256": "
|
|
2348
|
-
"size_bytes":
|
|
2527
|
+
"sha256": "47c3b3bfdf494133b69222381633d6b9688aad9c1d4a6b5f3290d13befffd331",
|
|
2528
|
+
"size_bytes": 397
|
|
2529
|
+
},
|
|
2530
|
+
{
|
|
2531
|
+
"path": "src/runtime/incidents/shared.ts",
|
|
2532
|
+
"sha256": "e3b9768b8200895d69a8a6f5aa510760d844a9596f96de43cfe7a06a7ee6a2e8",
|
|
2533
|
+
"size_bytes": 6605
|
|
2349
2534
|
},
|
|
2350
2535
|
{
|
|
2351
2536
|
"path": "src/runtime/incidents/types.ts",
|
|
@@ -2414,8 +2599,8 @@
|
|
|
2414
2599
|
},
|
|
2415
2600
|
{
|
|
2416
2601
|
"path": "src/shared/errors.ts",
|
|
2417
|
-
"sha256": "
|
|
2418
|
-
"size_bytes":
|
|
2602
|
+
"sha256": "9a0899d580559d819f080df0518686e374f252befef6087aebb59b07f6a8c933",
|
|
2603
|
+
"size_bytes": 1342
|
|
2419
2604
|
},
|
|
2420
2605
|
{
|
|
2421
2606
|
"path": "src/shared/git-log.ts",
|
|
@@ -2454,8 +2639,8 @@
|
|
|
2454
2639
|
},
|
|
2455
2640
|
{
|
|
2456
2641
|
"path": "src/shared/runtime-source.ts",
|
|
2457
|
-
"sha256": "
|
|
2458
|
-
"size_bytes":
|
|
2642
|
+
"sha256": "e14449747e472158a645ed6ddeaa2af28234e5d2d0784e2d93a3a554ed438759",
|
|
2643
|
+
"size_bytes": 7305
|
|
2459
2644
|
},
|
|
2460
2645
|
{
|
|
2461
2646
|
"path": "src/shared/strings.ts",
|
|
@@ -2493,19 +2678,24 @@
|
|
|
2493
2678
|
"size_bytes": 505
|
|
2494
2679
|
},
|
|
2495
2680
|
{
|
|
2496
|
-
"path": "src/
|
|
2497
|
-
"sha256": "
|
|
2498
|
-
"size_bytes":
|
|
2681
|
+
"path": "src/testing/cli-harness.ts",
|
|
2682
|
+
"sha256": "f38de984fa4e32dd14e7fcf5445ea93cacee952afbefdeeec50a33f4b575351b",
|
|
2683
|
+
"size_bytes": 11333
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
"path": "src/testing/cli-harness/recipe-archives.ts",
|
|
2687
|
+
"sha256": "46e9f4b3e6e1fd83b7e1b067d25c81144eaa2f1869af837b30ef8e1f9cf725f3",
|
|
2688
|
+
"size_bytes": 15569
|
|
2499
2689
|
},
|
|
2500
2690
|
{
|
|
2501
|
-
"path": "src/
|
|
2502
|
-
"sha256": "
|
|
2503
|
-
"size_bytes":
|
|
2691
|
+
"path": "src/testing/cli-harness/stdio.ts",
|
|
2692
|
+
"sha256": "2ddc3583d1d256d083c5112a61afda9b0749676e922ec25c5e397ff085329ad8",
|
|
2693
|
+
"size_bytes": 3286
|
|
2504
2694
|
},
|
|
2505
2695
|
{
|
|
2506
|
-
"path": "src/
|
|
2507
|
-
"sha256": "
|
|
2508
|
-
"size_bytes":
|
|
2696
|
+
"path": "src/testing/index.ts",
|
|
2697
|
+
"sha256": "a6ba25fb04d0a09181f2279ecea33d8119dde6bf5fb8a38ba574f42422eb4052",
|
|
2698
|
+
"size_bytes": 34
|
|
2509
2699
|
},
|
|
2510
2700
|
{
|
|
2511
2701
|
"path": "src/workflow-runtime/build.ts",
|