agentplane 0.3.14 → 0.3.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/policy/incidents.md +7 -0
- package/bin/agentplane.js +1 -1
- package/bin/framework-dev-contract.js +1 -0
- package/dist/.build-manifest.json +508 -323
- package/dist/backends/task-backend/load.d.ts.map +1 -1
- package/dist/backends/task-backend/load.js +32 -19
- package/dist/backends/task-backend/local-backend-doc.d.ts.map +1 -1
- package/dist/backends/task-backend/local-backend-doc.js +1 -1
- package/dist/backends/task-backend/redmine/backend-runtime.d.ts +147 -0
- package/dist/backends/task-backend/redmine/backend-runtime.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-runtime.js +258 -0
- package/dist/backends/task-backend/redmine/backend-sync/context.d.ts +44 -0
- package/dist/backends/task-backend/redmine/backend-sync/context.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/context.js +8 -0
- package/dist/backends/task-backend/redmine/backend-sync/ids.d.ts +6 -0
- package/dist/backends/task-backend/redmine/backend-sync/ids.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/ids.js +21 -0
- package/dist/backends/task-backend/redmine/backend-sync/migration.d.ts +4 -0
- package/dist/backends/task-backend/redmine/backend-sync/migration.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/migration.js +87 -0
- package/dist/backends/task-backend/redmine/backend-sync/status.d.ts +10 -0
- package/dist/backends/task-backend/redmine/backend-sync/status.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/status.js +78 -0
- package/dist/backends/task-backend/redmine/backend-sync/sync.d.ts +12 -0
- package/dist/backends/task-backend/redmine/backend-sync/sync.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/sync.js +82 -0
- package/dist/backends/task-backend/redmine/backend-sync/write.d.ts +5 -0
- package/dist/backends/task-backend/redmine/backend-sync/write.d.ts.map +1 -0
- package/dist/backends/task-backend/redmine/backend-sync/write.js +100 -0
- package/dist/backends/task-backend/redmine/backend-sync.d.ts +6 -66
- package/dist/backends/task-backend/redmine/backend-sync.d.ts.map +1 -1
- package/dist/backends/task-backend/redmine/backend-sync.js +5 -367
- package/dist/backends/task-backend/redmine-backend.d.ts +2 -33
- package/dist/backends/task-backend/redmine-backend.d.ts.map +1 -1
- package/dist/backends/task-backend/redmine-backend.js +26 -241
- package/dist/backends/task-backend/shared/errors.d.ts +12 -0
- package/dist/backends/task-backend/shared/errors.d.ts.map +1 -1
- package/dist/backends/task-backend/shared/errors.js +12 -0
- package/dist/cli/archive.d.ts.map +1 -1
- package/dist/cli/archive.js +3 -5
- package/dist/cli/error-map.d.ts +7 -1
- package/dist/cli/error-map.d.ts.map +1 -1
- package/dist/cli/error-map.js +231 -19
- package/dist/cli/exit-codes.d.ts +14 -2
- package/dist/cli/exit-codes.d.ts.map +1 -1
- package/dist/cli/exit-codes.js +24 -11
- package/dist/cli/output.d.ts +3 -0
- package/dist/cli/output.d.ts.map +1 -1
- package/dist/cli/output.js +25 -14
- package/dist/cli/prompts.d.ts.map +1 -1
- package/dist/cli/prompts.js +44 -0
- package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/core.js +34 -76
- package/dist/cli/run-cli/command-catalog/lifecycle.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/lifecycle.js +23 -26
- package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/project.js +39 -54
- package/dist/cli/run-cli/command-catalog/shared.d.ts +15 -3
- package/dist/cli/run-cli/command-catalog/shared.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/shared.js +19 -6
- package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -1
- package/dist/cli/run-cli/command-catalog/task.js +63 -57
- package/dist/cli/run-cli/command-loaders.d.ts +174 -0
- package/dist/cli/run-cli/command-loaders.d.ts.map +1 -0
- package/dist/cli/run-cli/command-loaders.js +128 -0
- package/dist/cli/run-cli/commands/init/model.d.ts +42 -0
- package/dist/cli/run-cli/commands/init/model.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/orchestrate.d.ts +9 -0
- package/dist/cli/run-cli/commands/init/orchestrate.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/orchestrate.js +321 -0
- package/dist/cli/run-cli/commands/init/parsers.d.ts +5 -0
- package/dist/cli/run-cli/commands/init/parsers.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/parsers.js +36 -0
- package/dist/cli/run-cli/commands/init/presets.d.ts +15 -0
- package/dist/cli/run-cli/commands/init/presets.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/presets.js +63 -0
- package/dist/cli/run-cli/commands/init/spec.d.ts +5 -0
- package/dist/cli/run-cli/commands/init/spec.d.ts.map +1 -0
- package/dist/cli/run-cli/commands/init/spec.js +212 -0
- package/dist/cli/run-cli/commands/init/write-config.d.ts +1 -0
- package/dist/cli/run-cli/commands/init/write-config.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init/write-config.js +1 -0
- package/dist/cli/run-cli/commands/init/write-gitignore.js +1 -1
- package/dist/cli/run-cli/commands/init.d.ts +1 -28
- package/dist/cli/run-cli/commands/init.d.ts.map +1 -1
- package/dist/cli/run-cli/commands/init.js +1 -596
- package/dist/cli/run-cli/update-warning.d.ts +1 -0
- package/dist/cli/run-cli/update-warning.d.ts.map +1 -1
- package/dist/cli/run-cli/update-warning.js +10 -2
- package/dist/cli/run-cli.d.ts.map +1 -1
- package/dist/cli/run-cli.js +1 -2
- package/dist/cli/spec/errors.d.ts +13 -1
- package/dist/cli/spec/errors.d.ts.map +1 -1
- package/dist/cli/spec/errors.js +14 -4
- package/dist/commands/backend.d.ts.map +1 -1
- package/dist/commands/backend.js +66 -118
- package/dist/commands/block.spec.js +1 -1
- package/dist/commands/branch/work-start.js +1 -1
- package/dist/commands/commit.spec.js +1 -1
- package/dist/commands/doctor/branch-pr.js +1 -1
- package/dist/commands/doctor/fixes.js +1 -1
- package/dist/commands/doctor/runtime.d.ts.map +1 -1
- package/dist/commands/doctor/runtime.js +2 -2
- package/dist/commands/doctor/workspace.js +1 -1
- package/dist/commands/finish.spec.js +1 -1
- package/dist/commands/guard/commit.command.js +1 -1
- package/dist/commands/guard/impl/clean.d.ts +6 -0
- package/dist/commands/guard/impl/clean.d.ts.map +1 -0
- package/dist/commands/guard/impl/clean.js +29 -0
- package/dist/commands/guard/impl/close-dirt.d.ts +6 -0
- package/dist/commands/guard/impl/close-dirt.d.ts.map +1 -0
- package/dist/commands/guard/impl/close-dirt.js +56 -0
- package/dist/commands/guard/impl/commands.d.ts +4 -36
- package/dist/commands/guard/impl/commands.d.ts.map +1 -1
- package/dist/commands/guard/impl/commands.js +4 -549
- package/dist/commands/guard/impl/comment-commit.js +1 -1
- package/dist/commands/guard/impl/commit-diagnostics.d.ts +4 -0
- package/dist/commands/guard/impl/commit-diagnostics.d.ts.map +1 -0
- package/dist/commands/guard/impl/commit-diagnostics.js +150 -0
- package/dist/commands/guard/impl/commit.d.ts +25 -0
- package/dist/commands/guard/impl/commit.d.ts.map +1 -0
- package/dist/commands/guard/impl/commit.js +366 -0
- package/dist/commands/guard/impl/guard-commit.d.ts +3 -0
- package/dist/commands/guard/impl/guard-commit.d.ts.map +1 -0
- package/dist/commands/guard/impl/guard-commit.js +21 -0
- package/dist/commands/guard/impl/policy.d.ts +1 -0
- package/dist/commands/guard/impl/policy.d.ts.map +1 -1
- package/dist/commands/guard/impl/policy.js +9 -2
- package/dist/commands/guard/impl/suggest.d.ts +6 -0
- package/dist/commands/guard/impl/suggest.d.ts.map +1 -0
- package/dist/commands/guard/impl/suggest.js +33 -0
- package/dist/commands/hooks/index.d.ts +3 -0
- package/dist/commands/hooks/index.d.ts.map +1 -1
- package/dist/commands/hooks/index.js +27 -10
- package/dist/commands/pr/integrate/cmd.js +1 -1
- package/dist/commands/pr/integrate/internal/prepare.js +1 -1
- package/dist/commands/pr/internal/auto-commit.d.ts.map +1 -1
- package/dist/commands/pr/internal/auto-commit.js +2 -5
- package/dist/commands/pr/internal/gh-api.d.ts.map +1 -1
- package/dist/commands/pr/internal/gh-api.js +15 -8
- package/dist/commands/pr/internal/sync-branch.d.ts +0 -1
- package/dist/commands/pr/internal/sync-branch.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync-branch.js +2 -5
- package/dist/commands/pr/internal/sync.d.ts.map +1 -1
- package/dist/commands/pr/internal/sync.js +30 -0
- package/dist/commands/pr/open.d.ts.map +1 -1
- package/dist/commands/pr/open.js +98 -8
- package/dist/commands/recipes/impl/resolver.js +1 -1
- package/dist/commands/recipes/impl/version.js +1 -1
- package/dist/commands/release/apply.command.js +1 -1
- package/dist/commands/release/apply.mutation.d.ts +1 -0
- package/dist/commands/release/apply.mutation.d.ts.map +1 -1
- package/dist/commands/release/apply.mutation.js +5 -1
- package/dist/commands/release/apply.pipeline/finalize.d.ts +21 -0
- package/dist/commands/release/apply.pipeline/finalize.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/finalize.js +80 -0
- package/dist/commands/release/apply.pipeline/mutation.d.ts +18 -0
- package/dist/commands/release/apply.pipeline/mutation.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/mutation.js +78 -0
- package/dist/commands/release/apply.pipeline/preflight.d.ts +25 -0
- package/dist/commands/release/apply.pipeline/preflight.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/preflight.js +69 -0
- package/dist/commands/release/apply.pipeline/shared.d.ts +2 -0
- package/dist/commands/release/apply.pipeline/shared.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/shared.js +5 -0
- package/dist/commands/release/apply.pipeline/state.d.ts +25 -0
- package/dist/commands/release/apply.pipeline/state.d.ts.map +1 -0
- package/dist/commands/release/apply.pipeline/state.js +129 -0
- package/dist/commands/release/apply.pipeline.d.ts +1 -1
- package/dist/commands/release/apply.pipeline.d.ts.map +1 -1
- package/dist/commands/release/apply.pipeline.js +4 -347
- package/dist/commands/release/apply.preflight.d.ts +9 -6
- package/dist/commands/release/apply.preflight.d.ts.map +1 -1
- package/dist/commands/release/apply.preflight.js +71 -51
- package/dist/commands/runtime.command.d.ts +2 -2
- package/dist/commands/runtime.command.d.ts.map +1 -1
- package/dist/commands/runtime.command.js +2 -2
- package/dist/commands/scenario/impl/commands.d.ts.map +1 -1
- package/dist/commands/scenario/impl/commands.js +52 -39
- package/dist/commands/scenario/impl/report.d.ts.map +1 -1
- package/dist/commands/scenario/impl/report.js +4 -7
- package/dist/commands/shared/allow-prefix-policy.d.ts.map +1 -0
- package/dist/{shared → commands/shared}/allow-prefix-policy.js +1 -1
- package/dist/commands/shared/comment-format.d.ts.map +1 -0
- package/dist/commands/shared/diagnostics.d.ts.map +1 -0
- package/dist/commands/shared/git-context.d.ts +1 -27
- package/dist/commands/shared/git-context.d.ts.map +1 -1
- package/dist/commands/shared/git-context.js +1 -156
- package/dist/commands/shared/git-diff.d.ts +1 -10
- package/dist/commands/shared/git-diff.d.ts.map +1 -1
- package/dist/commands/shared/git-diff.js +1 -49
- package/dist/commands/shared/git-ops.d.ts +1 -14
- package/dist/commands/shared/git-ops.d.ts.map +1 -1
- package/dist/commands/shared/git-ops.js +20 -150
- package/dist/commands/shared/git-worktree.d.ts +1 -9
- package/dist/commands/shared/git-worktree.d.ts.map +1 -1
- package/dist/commands/shared/git-worktree.js +1 -68
- package/dist/commands/shared/git.d.ts +1 -3
- package/dist/commands/shared/git.d.ts.map +1 -1
- package/dist/commands/shared/git.js +1 -14
- package/dist/commands/shared/policy-deny.d.ts +1 -1
- package/dist/commands/shared/reconcile-check.js +1 -1
- package/dist/commands/shared/task-backend.d.ts.map +1 -1
- package/dist/commands/shared/task-backend.js +24 -2
- package/dist/commands/shared/task-store/intents.d.ts.map +1 -1
- package/dist/commands/shared/task-store/intents.js +1 -1
- package/dist/commands/start.spec.js +1 -1
- package/dist/commands/task/close-tail-state.d.ts +7 -0
- package/dist/commands/task/close-tail-state.d.ts.map +1 -0
- package/dist/commands/task/close-tail-state.js +18 -0
- package/dist/commands/task/derive.js +1 -1
- package/dist/commands/task/finish-close.d.ts +22 -0
- package/dist/commands/task/finish-close.d.ts.map +1 -0
- package/dist/commands/task/finish-close.js +119 -0
- package/dist/commands/task/finish-command.d.ts +3 -0
- package/dist/commands/task/finish-command.d.ts.map +1 -0
- package/dist/commands/task/finish-command.js +56 -0
- package/dist/commands/task/finish-execute.d.ts +8 -0
- package/dist/commands/task/finish-execute.d.ts.map +1 -0
- package/dist/commands/task/finish-execute.js +272 -0
- package/dist/commands/task/finish-findings.d.ts +20 -0
- package/dist/commands/task/finish-findings.d.ts.map +1 -0
- package/dist/commands/task/finish-findings.js +27 -0
- package/dist/commands/task/finish-plan.d.ts +7 -0
- package/dist/commands/task/finish-plan.d.ts.map +1 -0
- package/dist/commands/task/finish-plan.js +157 -0
- package/dist/commands/task/finish-types.d.ts +69 -0
- package/dist/commands/task/finish-types.d.ts.map +1 -0
- package/dist/commands/task/finish.d.ts +1 -42
- package/dist/commands/task/finish.d.ts.map +1 -1
- package/dist/commands/task/finish.js +1 -527
- package/dist/commands/task/hosted-close-pr.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close-pr.command.js +29 -4
- package/dist/commands/task/hosted-close.command.d.ts.map +1 -1
- package/dist/commands/task/hosted-close.command.js +23 -2
- package/dist/commands/task/hosted-merge-sync/builders.d.ts +35 -0
- package/dist/commands/task/hosted-merge-sync/builders.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/builders.js +148 -0
- package/dist/commands/task/hosted-merge-sync/github.d.ts +10 -0
- package/dist/commands/task/hosted-merge-sync/github.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/github.js +113 -0
- package/dist/commands/task/hosted-merge-sync/local-branch.d.ts +12 -0
- package/dist/commands/task/hosted-merge-sync/local-branch.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/local-branch.js +143 -0
- package/dist/commands/task/hosted-merge-sync/model.d.ts +47 -0
- package/dist/commands/task/hosted-merge-sync/model.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/pr-meta.d.ts +12 -0
- package/dist/commands/task/hosted-merge-sync/pr-meta.d.ts.map +1 -0
- package/dist/commands/task/hosted-merge-sync/pr-meta.js +26 -0
- package/dist/commands/task/hosted-merge-sync.d.ts +5 -63
- package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -1
- package/dist/commands/task/hosted-merge-sync.js +10 -444
- package/dist/commands/task/new.js +1 -1
- package/dist/commands/task/set-status.command.js +1 -1
- package/dist/commands/task/shared/direct-work-lock.d.ts.map +1 -0
- package/dist/commands/task/shared/git-log.d.ts.map +1 -0
- package/dist/commands/task/shared/transitions.d.ts +1 -1
- package/dist/commands/task/shared/transitions.d.ts.map +1 -1
- package/dist/commands/task/shared/transitions.js +4 -6
- package/dist/commands/upgrade/apply.js +1 -1
- package/dist/commands/workflow-playbook.command.d.ts.map +1 -1
- package/dist/commands/workflow-playbook.command.js +8 -7
- package/dist/harness/hooks-lifecycle.d.ts.map +1 -1
- package/dist/harness/hooks-lifecycle.js +11 -7
- package/dist/meta/release.d.ts.map +1 -1
- package/dist/meta/release.js +8 -4
- package/dist/policy/engine.d.ts +1 -1
- package/dist/policy/evaluate.d.ts +1 -1
- package/dist/policy/{types.d.ts → model.d.ts} +1 -1
- package/dist/policy/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/policy/result.d.ts +1 -1
- package/dist/policy/rules/allowlist.d.ts +1 -1
- package/dist/policy/rules/branch-pr-base.d.ts +1 -1
- package/dist/policy/rules/clean-tree.d.ts +1 -1
- package/dist/policy/rules/commit-subject.d.ts +1 -1
- package/dist/policy/rules/protected-paths.d.ts +1 -1
- package/dist/runner/adapters/base.d.ts +42 -0
- package/dist/runner/adapters/base.d.ts.map +1 -0
- package/dist/runner/adapters/base.js +107 -0
- package/dist/runner/adapters/codex-preparation.d.ts +7 -0
- package/dist/runner/adapters/codex-preparation.d.ts.map +1 -0
- package/dist/runner/adapters/codex-preparation.js +86 -0
- package/dist/runner/adapters/codex.d.ts.map +1 -1
- package/dist/runner/adapters/codex.js +30 -175
- package/dist/runner/adapters/custom-preparation.d.ts +9 -0
- package/dist/runner/adapters/custom-preparation.d.ts.map +1 -0
- package/dist/runner/adapters/custom-preparation.js +191 -0
- package/dist/runner/adapters/custom.d.ts.map +1 -1
- package/dist/runner/adapters/custom.js +26 -279
- package/dist/runner/process-supervision/run.d.ts +30 -0
- package/dist/runner/process-supervision/run.d.ts.map +1 -0
- package/dist/runner/process-supervision/run.js +349 -0
- package/dist/runner/process-supervision/signals.d.ts +16 -0
- package/dist/runner/process-supervision/signals.d.ts.map +1 -0
- package/dist/runner/process-supervision/signals.js +85 -0
- package/dist/runner/process-supervision/state.d.ts +10 -0
- package/dist/runner/process-supervision/state.d.ts.map +1 -0
- package/dist/runner/process-supervision/state.js +42 -0
- package/dist/runner/process-supervision/streams.d.ts +6 -0
- package/dist/runner/process-supervision/streams.d.ts.map +1 -0
- package/dist/runner/process-supervision/streams.js +23 -0
- package/dist/runner/process-supervision.d.ts +5 -47
- package/dist/runner/process-supervision.d.ts.map +1 -1
- package/dist/runner/process-supervision.js +3 -490
- package/dist/runner/usecases/scenario-materialize-task.js +1 -1
- package/dist/runtime/approvals/index.d.ts +1 -1
- package/dist/runtime/approvals/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/approvals/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/approvals/runtime.d.ts +1 -1
- package/dist/runtime/behavior/index.d.ts +1 -1
- package/dist/runtime/behavior/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/behavior/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/behavior/resolve.d.ts +1 -1
- package/dist/runtime/capabilities/backend.d.ts +1 -1
- package/dist/runtime/capabilities/index.d.ts +1 -1
- package/dist/runtime/capabilities/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/capabilities/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/capabilities/model.js +1 -0
- package/dist/runtime/capabilities/recipe.d.ts +1 -1
- package/dist/runtime/capabilities/registry.d.ts +1 -1
- package/dist/runtime/capabilities/runner.d.ts +1 -1
- package/dist/runtime/execution-context.d.ts.map +1 -1
- package/dist/runtime/execution-context.js +16 -0
- package/dist/runtime/execution-profile/index.d.ts +1 -1
- package/dist/runtime/execution-profile/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/execution-profile/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/execution-profile/model.js +1 -0
- package/dist/runtime/execution-profile/resolve.d.ts +1 -1
- package/dist/runtime/explain/index.d.ts +1 -1
- package/dist/runtime/explain/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/explain/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/explain/model.js +1 -0
- package/dist/runtime/explain/resolve.d.ts +1 -1
- package/dist/runtime/protocol/index.d.ts +1 -1
- package/dist/runtime/protocol/index.js +1 -1
- package/dist/runtime/protocol/{types.d.ts → model.d.ts} +1 -1
- package/dist/runtime/protocol/{types.d.ts.map → model.d.ts.map} +1 -1
- package/dist/runtime/protocol/resolve.d.ts +1 -1
- package/dist/runtime/protocol/resolve.js +1 -1
- package/dist/runtime/shared/repo-cli-version.d.ts.map +1 -0
- package/dist/{shared → runtime/shared}/repo-cli-version.js +1 -1
- package/dist/runtime/shared/runtime-artifacts.d.ts.map +1 -0
- package/dist/{shared → runtime/shared}/runtime-source.d.ts +1 -1
- package/dist/runtime/shared/runtime-source.d.ts.map +1 -0
- package/dist/{shared → runtime/shared}/runtime-source.js +1 -1
- package/dist/runtime/shared/version-compare.d.ts.map +1 -0
- package/dist/runtime/task-intake/resolve.js +1 -1
- package/dist/shared/errors.d.ts +52 -2
- package/dist/shared/errors.d.ts.map +1 -1
- package/dist/shared/errors.js +66 -4
- package/dist/shared/trace-events.d.ts +13 -0
- package/dist/shared/trace-events.d.ts.map +1 -0
- package/dist/shared/trace-events.js +17 -0
- package/dist/{shared/task-doc-conflicts.d.ts → task-doc/conflicts.d.ts} +1 -1
- package/dist/task-doc/conflicts.d.ts.map +1 -0
- package/dist/{shared/task-doc-conflicts.js → task-doc/conflicts.js} +1 -1
- package/dist/{shared/task-doc-state.d.ts → task-doc/state.d.ts} +1 -1
- package/dist/task-doc/state.d.ts.map +1 -0
- package/package.json +8 -8
- package/dist/cli/run-cli/error-guidance.d.ts +0 -9
- package/dist/cli/run-cli/error-guidance.d.ts.map +0 -1
- package/dist/cli/run-cli/error-guidance.js +0 -210
- package/dist/cli/run-cli.test-helpers.d.ts +0 -2
- package/dist/cli/run-cli.test-helpers.d.ts.map +0 -1
- package/dist/cli/run-cli.test-helpers.js +0 -1
- package/dist/commands/recipes.test-helpers.d.ts +0 -202
- package/dist/commands/recipes.test-helpers.d.ts.map +0 -1
- package/dist/commands/recipes.test-helpers.js +0 -483
- package/dist/commands/release.test-helpers.d.ts +0 -38
- package/dist/commands/release.test-helpers.d.ts.map +0 -1
- package/dist/commands/release.test-helpers.js +0 -55
- package/dist/commands/task.test-helpers.d.ts +0 -13
- package/dist/commands/task.test-helpers.d.ts.map +0 -1
- package/dist/commands/task.test-helpers.js +0 -65
- package/dist/runner/test-helpers.d.ts +0 -30
- package/dist/runner/test-helpers.d.ts.map +0 -1
- package/dist/runner/test-helpers.js +0 -97
- package/dist/shared/agent-emoji.d.ts +0 -5
- package/dist/shared/agent-emoji.d.ts.map +0 -1
- package/dist/shared/agent-emoji.js +0 -51
- package/dist/shared/allow-prefix-policy.d.ts.map +0 -1
- package/dist/shared/comment-format.d.ts.map +0 -1
- package/dist/shared/diagnostics.d.ts.map +0 -1
- package/dist/shared/direct-work-lock.d.ts.map +0 -1
- package/dist/shared/git-log.d.ts.map +0 -1
- package/dist/shared/repo-cli-version.d.ts.map +0 -1
- package/dist/shared/runtime-artifacts.d.ts.map +0 -1
- package/dist/shared/runtime-source.d.ts.map +0 -1
- package/dist/shared/task-doc-conflicts.d.ts.map +0 -1
- package/dist/shared/task-doc-state.d.ts.map +0 -1
- package/dist/shared/version-compare.d.ts.map +0 -1
- package/dist/testing/cli-harness/recipe-archives.d.ts +0 -28
- package/dist/testing/cli-harness/recipe-archives.d.ts.map +0 -1
- package/dist/testing/cli-harness/recipe-archives.js +0 -374
- package/dist/testing/cli-harness/stdio.d.ts +0 -26
- package/dist/testing/cli-harness/stdio.d.ts.map +0 -1
- package/dist/testing/cli-harness/stdio.js +0 -84
- package/dist/testing/cli-harness.d.ts +0 -25
- package/dist/testing/cli-harness.d.ts.map +0 -1
- package/dist/testing/cli-harness.js +0 -313
- package/dist/testing/index.d.ts +0 -2
- package/dist/testing/index.d.ts.map +0 -1
- package/dist/testing/index.js +0 -1
- /package/dist/{policy/types.js → cli/run-cli/commands/init/model.js} +0 -0
- /package/dist/{shared → commands/shared}/allow-prefix-policy.d.ts +0 -0
- /package/dist/{shared → commands/shared}/comment-format.d.ts +0 -0
- /package/dist/{shared → commands/shared}/comment-format.js +0 -0
- /package/dist/{shared → commands/shared}/diagnostics.d.ts +0 -0
- /package/dist/{shared → commands/shared}/diagnostics.js +0 -0
- /package/dist/{runtime/approvals/types.js → commands/task/finish-types.js} +0 -0
- /package/dist/{runtime/behavior/types.js → commands/task/hosted-merge-sync/model.js} +0 -0
- /package/dist/{shared → commands/task/shared}/direct-work-lock.d.ts +0 -0
- /package/dist/{shared → commands/task/shared}/direct-work-lock.js +0 -0
- /package/dist/{shared → commands/task/shared}/git-log.d.ts +0 -0
- /package/dist/{shared → commands/task/shared}/git-log.js +0 -0
- /package/dist/{runtime/capabilities/types.js → policy/model.js} +0 -0
- /package/dist/runtime/{execution-profile/types.js → approvals/model.js} +0 -0
- /package/dist/runtime/{explain/types.js → behavior/model.js} +0 -0
- /package/dist/runtime/protocol/{types.js → model.js} +0 -0
- /package/dist/{shared → runtime/shared}/repo-cli-version.d.ts +0 -0
- /package/dist/{shared → runtime/shared}/runtime-artifacts.d.ts +0 -0
- /package/dist/{shared → runtime/shared}/runtime-artifacts.js +0 -0
- /package/dist/{shared → runtime/shared}/version-compare.d.ts +0 -0
- /package/dist/{shared → runtime/shared}/version-compare.js +0 -0
- /package/dist/{shared/task-doc-state.js → task-doc/state.js} +0 -0
|
@@ -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-20T19:16:57.306Z",
|
|
5
|
+
"git_head": "84fc19e95f1f04e94ac6cf62e44449283db6d544",
|
|
6
|
+
"src_cli_mtime_ms": 1776712509807.0159,
|
|
7
7
|
"src_index_mtime_ms": null,
|
|
8
|
-
"dist_cli_mtime_ms":
|
|
8
|
+
"dist_cli_mtime_ms": 1776712617052.6648,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
10
|
+
"tsbuildinfo_mtime_ms": 1776712617105.6643,
|
|
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": "837abe740e44cc8327024eebf2367a0156ddfc59f4c8a4455e4d5dae7aef0462",
|
|
19
19
|
"watched_runtime_files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "bin/agentplane.js",
|
|
22
|
-
"sha256": "
|
|
23
|
-
"size_bytes":
|
|
22
|
+
"sha256": "ac449b215e1acf738d383db1dfcb2119e1025dc44b650be418185fb4f1b2beeb",
|
|
23
|
+
"size_bytes": 12167
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"path": "bin/dist-guard.js",
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
"path": "src/backends/task-backend/load.ts",
|
|
77
|
-
"sha256": "
|
|
78
|
-
"size_bytes":
|
|
77
|
+
"sha256": "16872bc58ae1eac7acd485e85ef8318d2cdb84b8c8b485fc5d43b66efd61df3f",
|
|
78
|
+
"size_bytes": 4767
|
|
79
79
|
},
|
|
80
80
|
{
|
|
81
81
|
"path": "src/backends/task-backend/local-backend-doc.ts",
|
|
82
|
-
"sha256": "
|
|
83
|
-
"size_bytes":
|
|
82
|
+
"sha256": "d6085c51e66d48f5fe60c9783033bb1bbb4c322b86eeb12c3879cf9ef3496f00",
|
|
83
|
+
"size_bytes": 5057
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
"path": "src/backends/task-backend/local-backend-read.ts",
|
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
"path": "src/backends/task-backend/redmine-backend.ts",
|
|
107
|
-
"sha256": "
|
|
108
|
-
"size_bytes":
|
|
107
|
+
"sha256": "d21c49f962c2e6cff318ddaf4f50e9cf989d40aeacdfb2ed8c9c0dd7fb5bbb82",
|
|
108
|
+
"size_bytes": 8445
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
"path": "src/backends/task-backend/redmine/backend-cache-doc.ts",
|
|
@@ -117,10 +117,45 @@
|
|
|
117
117
|
"sha256": "933c7fc3289e04c757458e4bc316a28d6dac38847518d28fe89333af1414d25d",
|
|
118
118
|
"size_bytes": 2351
|
|
119
119
|
},
|
|
120
|
+
{
|
|
121
|
+
"path": "src/backends/task-backend/redmine/backend-runtime.ts",
|
|
122
|
+
"sha256": "913f67d0764372f3cecc7082480722abc4472fd8dbb7fb7226048242743493c9",
|
|
123
|
+
"size_bytes": 18355
|
|
124
|
+
},
|
|
120
125
|
{
|
|
121
126
|
"path": "src/backends/task-backend/redmine/backend-sync.ts",
|
|
122
|
-
"sha256": "
|
|
123
|
-
"size_bytes":
|
|
127
|
+
"sha256": "0f10d2679df2641c3de7b60c3483f215e3e38bfcea80f1b426a17c2d1ae4eee7",
|
|
128
|
+
"size_bytes": 560
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"path": "src/backends/task-backend/redmine/backend-sync/context.ts",
|
|
132
|
+
"sha256": "b89a72648c9e194821e597ee76651991c2ab63d96c54e4a8e7e51423269cd767",
|
|
133
|
+
"size_bytes": 2871
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"path": "src/backends/task-backend/redmine/backend-sync/ids.ts",
|
|
137
|
+
"sha256": "da09a6875280d03f097b3475e5713b63fd8ff2decb2ded584252b45ec4b1db60",
|
|
138
|
+
"size_bytes": 872
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"path": "src/backends/task-backend/redmine/backend-sync/migration.ts",
|
|
142
|
+
"sha256": "7fbf67d1533598df2adfc9491cf9caf6482251b2334f095e88ef25c87b8f24e5",
|
|
143
|
+
"size_bytes": 3472
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"path": "src/backends/task-backend/redmine/backend-sync/status.ts",
|
|
147
|
+
"sha256": "4903d927a50bc2a7cfa13f96eee2e62657fb7130e3f87b1ef47fb537597086dd",
|
|
148
|
+
"size_bytes": 3301
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"path": "src/backends/task-backend/redmine/backend-sync/sync.ts",
|
|
152
|
+
"sha256": "de0a00b2924f7bf617735ddc8b55aeaa4cae578e20897a3a69c91f229217fca7",
|
|
153
|
+
"size_bytes": 3484
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"path": "src/backends/task-backend/redmine/backend-sync/write.ts",
|
|
157
|
+
"sha256": "83b16d110c42d1573266bb648b43dd6220f7eaae31643e96cb9b0131e50df618",
|
|
158
|
+
"size_bytes": 4757
|
|
124
159
|
},
|
|
125
160
|
{
|
|
126
161
|
"path": "src/backends/task-backend/redmine/client.ts",
|
|
@@ -189,8 +224,8 @@
|
|
|
189
224
|
},
|
|
190
225
|
{
|
|
191
226
|
"path": "src/backends/task-backend/shared/errors.ts",
|
|
192
|
-
"sha256": "
|
|
193
|
-
"size_bytes":
|
|
227
|
+
"sha256": "bd89f762910fc83a884edc2c11d43221283e1188fb01b466aca8bfd7e0367623",
|
|
228
|
+
"size_bytes": 1207
|
|
194
229
|
},
|
|
195
230
|
{
|
|
196
231
|
"path": "src/backends/task-backend/shared/events.ts",
|
|
@@ -239,8 +274,8 @@
|
|
|
239
274
|
},
|
|
240
275
|
{
|
|
241
276
|
"path": "src/cli/archive.ts",
|
|
242
|
-
"sha256": "
|
|
243
|
-
"size_bytes":
|
|
277
|
+
"sha256": "31f2e71fa30b85f0fc3193ce9ab87a559f86d5716f8415612d1c8326b95b619a",
|
|
278
|
+
"size_bytes": 6307
|
|
244
279
|
},
|
|
245
280
|
{
|
|
246
281
|
"path": "src/cli/bootstrap-guide.ts",
|
|
@@ -289,13 +324,13 @@
|
|
|
289
324
|
},
|
|
290
325
|
{
|
|
291
326
|
"path": "src/cli/error-map.ts",
|
|
292
|
-
"sha256": "
|
|
293
|
-
"size_bytes":
|
|
327
|
+
"sha256": "0ee300ca09544ee757a84a6c12ce0573915fce09525b21f3b9398b6e62b0d03e",
|
|
328
|
+
"size_bytes": 9744
|
|
294
329
|
},
|
|
295
330
|
{
|
|
296
331
|
"path": "src/cli/exit-codes.ts",
|
|
297
|
-
"sha256": "
|
|
298
|
-
"size_bytes":
|
|
332
|
+
"sha256": "718dc5a39ed57817cede8e21b559fcf09d99f1262ba410ad9d928b616e49c92b",
|
|
333
|
+
"size_bytes": 830
|
|
299
334
|
},
|
|
300
335
|
{
|
|
301
336
|
"path": "src/cli/fs-utils.ts",
|
|
@@ -314,13 +349,13 @@
|
|
|
314
349
|
},
|
|
315
350
|
{
|
|
316
351
|
"path": "src/cli/output.ts",
|
|
317
|
-
"sha256": "
|
|
318
|
-
"size_bytes":
|
|
352
|
+
"sha256": "2cd6c354f88367b329dad900550e98ce4359101864d0312eef0a80478a88cce4",
|
|
353
|
+
"size_bytes": 8336
|
|
319
354
|
},
|
|
320
355
|
{
|
|
321
356
|
"path": "src/cli/prompts.ts",
|
|
322
|
-
"sha256": "
|
|
323
|
-
"size_bytes":
|
|
357
|
+
"sha256": "c2a244912bd37a04a1bd51701c0832a718f3b4f905dfb10ad99ff3e7ca817cd0",
|
|
358
|
+
"size_bytes": 2803
|
|
324
359
|
},
|
|
325
360
|
{
|
|
326
361
|
"path": "src/cli/reason-codes.ts",
|
|
@@ -328,14 +363,19 @@
|
|
|
328
363
|
"size_bytes": 4922
|
|
329
364
|
},
|
|
330
365
|
{
|
|
331
|
-
"path": "src/cli/run-cli.
|
|
332
|
-
"sha256": "
|
|
333
|
-
"size_bytes":
|
|
366
|
+
"path": "src/cli/run-cli.core.pr-flow.pr-support.ts",
|
|
367
|
+
"sha256": "d213d85826626cb8ad06d6eb88dc378f370e73797e72220913788832e91b5787",
|
|
368
|
+
"size_bytes": 3331
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"path": "src/cli/run-cli.core.tasks.query-support.ts",
|
|
372
|
+
"sha256": "fdc7636ae3576abd1d2e28a4b98ca6f7e9d0a1b990827f2d7d3e03b890c2e1c3",
|
|
373
|
+
"size_bytes": 12012
|
|
334
374
|
},
|
|
335
375
|
{
|
|
336
376
|
"path": "src/cli/run-cli.ts",
|
|
337
|
-
"sha256": "
|
|
338
|
-
"size_bytes":
|
|
377
|
+
"sha256": "b65101dc0488a2aa4e5b7600fb32f77826f3edc15efb46bbe745472eb04f1330",
|
|
378
|
+
"size_bytes": 11472
|
|
339
379
|
},
|
|
340
380
|
{
|
|
341
381
|
"path": "src/cli/run-cli/command-catalog.ts",
|
|
@@ -344,28 +384,33 @@
|
|
|
344
384
|
},
|
|
345
385
|
{
|
|
346
386
|
"path": "src/cli/run-cli/command-catalog/core.ts",
|
|
347
|
-
"sha256": "
|
|
348
|
-
"size_bytes":
|
|
387
|
+
"sha256": "97f7bf7a00ad42cb9d2f48b02a1ee4fbe6959d61ac565e15edbb6f15ae1a49fa",
|
|
388
|
+
"size_bytes": 5611
|
|
349
389
|
},
|
|
350
390
|
{
|
|
351
391
|
"path": "src/cli/run-cli/command-catalog/lifecycle.ts",
|
|
352
|
-
"sha256": "
|
|
353
|
-
"size_bytes":
|
|
392
|
+
"sha256": "9e5a5888eab50a1eb85856b9cc90c05e4854db79303eeef1a5ebd4dd0ad224b5",
|
|
393
|
+
"size_bytes": 3083
|
|
354
394
|
},
|
|
355
395
|
{
|
|
356
396
|
"path": "src/cli/run-cli/command-catalog/project.ts",
|
|
357
|
-
"sha256": "
|
|
358
|
-
"size_bytes":
|
|
397
|
+
"sha256": "fb44954e0d98f311b38779bf788dcab5ab2440b606432741c445f19bc3e92c72",
|
|
398
|
+
"size_bytes": 6022
|
|
359
399
|
},
|
|
360
400
|
{
|
|
361
401
|
"path": "src/cli/run-cli/command-catalog/shared.ts",
|
|
362
|
-
"sha256": "
|
|
363
|
-
"size_bytes":
|
|
402
|
+
"sha256": "6c27ea6233aab1627de7113d447805e49d448022d2310f87cc33f0d7c742b1be",
|
|
403
|
+
"size_bytes": 3328
|
|
364
404
|
},
|
|
365
405
|
{
|
|
366
406
|
"path": "src/cli/run-cli/command-catalog/task.ts",
|
|
367
|
-
"sha256": "
|
|
368
|
-
"size_bytes":
|
|
407
|
+
"sha256": "94a6db7019521a7dcb327e9ee4cf351323a919e9b04c5cd41644857365bdfb14",
|
|
408
|
+
"size_bytes": 9411
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"path": "src/cli/run-cli/command-loaders.ts",
|
|
412
|
+
"sha256": "f5bb2965cc217f797f90b9034d1101f36e56f7133ddc71bf7a7f6fef1c57dad5",
|
|
413
|
+
"size_bytes": 17717
|
|
369
414
|
},
|
|
370
415
|
{
|
|
371
416
|
"path": "src/cli/run-cli/commands/codex.ts",
|
|
@@ -414,8 +459,8 @@
|
|
|
414
459
|
},
|
|
415
460
|
{
|
|
416
461
|
"path": "src/cli/run-cli/commands/init.ts",
|
|
417
|
-
"sha256": "
|
|
418
|
-
"size_bytes":
|
|
462
|
+
"sha256": "732e1c7ef3a64a278dd2cf8db0603e2f3cbfcfde44b6e7046cd1c3ef31b90952",
|
|
463
|
+
"size_bytes": 52
|
|
419
464
|
},
|
|
420
465
|
{
|
|
421
466
|
"path": "src/cli/run-cli/commands/init/base-branch.ts",
|
|
@@ -437,11 +482,36 @@
|
|
|
437
482
|
"sha256": "e99be07baae2383e2f347e532047a12e33fec6feb8ef17e61e7cf1d8cebe36a8",
|
|
438
483
|
"size_bytes": 1453
|
|
439
484
|
},
|
|
485
|
+
{
|
|
486
|
+
"path": "src/cli/run-cli/commands/init/model.ts",
|
|
487
|
+
"sha256": "642f38efe6661db1537c2bccf8225ce43a2d6d35541ecaa3c33f4d82ce41ec87",
|
|
488
|
+
"size_bytes": 1419
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"path": "src/cli/run-cli/commands/init/orchestrate.ts",
|
|
492
|
+
"sha256": "999e22b3c48cdaf6467e5bc299f8f7a75c2959defee2fbc9c36ff6b8068dade6",
|
|
493
|
+
"size_bytes": 16953
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"path": "src/cli/run-cli/commands/init/parsers.ts",
|
|
497
|
+
"sha256": "9b07684da0defbd33ed121fcf8f17069ed9584dc85074fabcecd511d48e8a84b",
|
|
498
|
+
"size_bytes": 1408
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"path": "src/cli/run-cli/commands/init/presets.ts",
|
|
502
|
+
"sha256": "6489b662f0d6c4dcda97704fe00ffcc689b38144ab904e7de02c86cfd228c335",
|
|
503
|
+
"size_bytes": 2533
|
|
504
|
+
},
|
|
440
505
|
{
|
|
441
506
|
"path": "src/cli/run-cli/commands/init/recipes.ts",
|
|
442
507
|
"sha256": "d8a401dd8fff5c86b5a54bca8e98ffcbd74104eb1b8647436ec604e84beb68b3",
|
|
443
508
|
"size_bytes": 1754
|
|
444
509
|
},
|
|
510
|
+
{
|
|
511
|
+
"path": "src/cli/run-cli/commands/init/spec.ts",
|
|
512
|
+
"sha256": "9f4078d917296836b73f0116a5706de90e88c6118e3193f7bb6f8c9ac8bf55d3",
|
|
513
|
+
"size_bytes": 8906
|
|
514
|
+
},
|
|
445
515
|
{
|
|
446
516
|
"path": "src/cli/run-cli/commands/init/ui.ts",
|
|
447
517
|
"sha256": "e34afadc8e0433459c604bb8a9208f41521368dc5e59304687ffdc31732d2107",
|
|
@@ -454,8 +524,8 @@
|
|
|
454
524
|
},
|
|
455
525
|
{
|
|
456
526
|
"path": "src/cli/run-cli/commands/init/write-config.ts",
|
|
457
|
-
"sha256": "
|
|
458
|
-
"size_bytes":
|
|
527
|
+
"sha256": "5cc2be2f9076898fb339df533a18db97f9d343e86c3f4de621b03fb0636a9ca7",
|
|
528
|
+
"size_bytes": 3350
|
|
459
529
|
},
|
|
460
530
|
{
|
|
461
531
|
"path": "src/cli/run-cli/commands/init/write-env.ts",
|
|
@@ -464,8 +534,8 @@
|
|
|
464
534
|
},
|
|
465
535
|
{
|
|
466
536
|
"path": "src/cli/run-cli/commands/init/write-gitignore.ts",
|
|
467
|
-
"sha256": "
|
|
468
|
-
"size_bytes":
|
|
537
|
+
"sha256": "618faf0cddae0efd754216e40cbf56ea7a192f2b04f65e30397d7570a4bac2c7",
|
|
538
|
+
"size_bytes": 1530
|
|
469
539
|
},
|
|
470
540
|
{
|
|
471
541
|
"path": "src/cli/run-cli/commands/init/write-workflow.ts",
|
|
@@ -477,11 +547,6 @@
|
|
|
477
547
|
"sha256": "796370799df5469ff0791eedde69a861dfe59c1ceaa88b33f5f98f343dbc862c",
|
|
478
548
|
"size_bytes": 553
|
|
479
549
|
},
|
|
480
|
-
{
|
|
481
|
-
"path": "src/cli/run-cli/error-guidance.ts",
|
|
482
|
-
"sha256": "d082914c7ae188ebef709df07727cdc1aaecec52e304b5b014d85769c84e6791",
|
|
483
|
-
"size_bytes": 8267
|
|
484
|
-
},
|
|
485
550
|
{
|
|
486
551
|
"path": "src/cli/run-cli/globals.ts",
|
|
487
552
|
"sha256": "08276a346c59f589d063f100c9c0f0413459c39534e6efb7cdc42cf69a74d3b3",
|
|
@@ -494,8 +559,8 @@
|
|
|
494
559
|
},
|
|
495
560
|
{
|
|
496
561
|
"path": "src/cli/run-cli/update-warning.ts",
|
|
497
|
-
"sha256": "
|
|
498
|
-
"size_bytes":
|
|
562
|
+
"sha256": "fabf29bb63163bdb5a3138782d9040a35c660e303377f6654fe4c53b7e9e9857",
|
|
563
|
+
"size_bytes": 3148
|
|
499
564
|
},
|
|
500
565
|
{
|
|
501
566
|
"path": "src/cli/shared/ansi.ts",
|
|
@@ -509,8 +574,8 @@
|
|
|
509
574
|
},
|
|
510
575
|
{
|
|
511
576
|
"path": "src/cli/spec/errors.ts",
|
|
512
|
-
"sha256": "
|
|
513
|
-
"size_bytes":
|
|
577
|
+
"sha256": "c220a198c42229820d1bbc4c4560a18485d0e1a08cfc3675f259de010e927c2b",
|
|
578
|
+
"size_bytes": 1239
|
|
514
579
|
},
|
|
515
580
|
{
|
|
516
581
|
"path": "src/cli/spec/help-render.ts",
|
|
@@ -554,8 +619,8 @@
|
|
|
554
619
|
},
|
|
555
620
|
{
|
|
556
621
|
"path": "src/commands/backend.ts",
|
|
557
|
-
"sha256": "
|
|
558
|
-
"size_bytes":
|
|
622
|
+
"sha256": "85d939c650e63c4affa0a47f9db199e554ed48049abe774313e5bfbc1ce1d7ed",
|
|
623
|
+
"size_bytes": 7983
|
|
559
624
|
},
|
|
560
625
|
{
|
|
561
626
|
"path": "src/commands/backend/sync.command.ts",
|
|
@@ -569,8 +634,8 @@
|
|
|
569
634
|
},
|
|
570
635
|
{
|
|
571
636
|
"path": "src/commands/block.spec.ts",
|
|
572
|
-
"sha256": "
|
|
573
|
-
"size_bytes":
|
|
637
|
+
"sha256": "02d1828213857d86675225f235c875cf9b21211e0f2adfbcb06fdf85f8bb5ff0",
|
|
638
|
+
"size_bytes": 5510
|
|
574
639
|
},
|
|
575
640
|
{
|
|
576
641
|
"path": "src/commands/branch/base.command.ts",
|
|
@@ -629,8 +694,8 @@
|
|
|
629
694
|
},
|
|
630
695
|
{
|
|
631
696
|
"path": "src/commands/branch/work-start.ts",
|
|
632
|
-
"sha256": "
|
|
633
|
-
"size_bytes":
|
|
697
|
+
"sha256": "dda45591e354cc5b1c3e09a2caddc7bd4fdb55c025b1b4b8c400b3d0da7b2433",
|
|
698
|
+
"size_bytes": 15919
|
|
634
699
|
},
|
|
635
700
|
{
|
|
636
701
|
"path": "src/commands/cleanup/merged.command.ts",
|
|
@@ -649,8 +714,8 @@
|
|
|
649
714
|
},
|
|
650
715
|
{
|
|
651
716
|
"path": "src/commands/commit.spec.ts",
|
|
652
|
-
"sha256": "
|
|
653
|
-
"size_bytes":
|
|
717
|
+
"sha256": "18b7e2cdd5d8b833104efbb6d43c6f62b31d14a11d2911551dc87b035a5ff527",
|
|
718
|
+
"size_bytes": 7561
|
|
654
719
|
},
|
|
655
720
|
{
|
|
656
721
|
"path": "src/commands/docs/cli.command.ts",
|
|
@@ -674,13 +739,13 @@
|
|
|
674
739
|
},
|
|
675
740
|
{
|
|
676
741
|
"path": "src/commands/doctor/branch-pr.ts",
|
|
677
|
-
"sha256": "
|
|
678
|
-
"size_bytes":
|
|
742
|
+
"sha256": "1ad927b02c0fe5e10bf6f5cd4d790b604a90f9b810f191a42adebd0c5845d9dd",
|
|
743
|
+
"size_bytes": 4102
|
|
679
744
|
},
|
|
680
745
|
{
|
|
681
746
|
"path": "src/commands/doctor/fixes.ts",
|
|
682
|
-
"sha256": "
|
|
683
|
-
"size_bytes":
|
|
747
|
+
"sha256": "16fea477e8f7a0e2dd1488166816ce18e4452d69c97aacf087dfd5472a1b4b09",
|
|
748
|
+
"size_bytes": 4217
|
|
684
749
|
},
|
|
685
750
|
{
|
|
686
751
|
"path": "src/commands/doctor/layering.ts",
|
|
@@ -689,8 +754,8 @@
|
|
|
689
754
|
},
|
|
690
755
|
{
|
|
691
756
|
"path": "src/commands/doctor/runtime.ts",
|
|
692
|
-
"sha256": "
|
|
693
|
-
"size_bytes":
|
|
757
|
+
"sha256": "db8941c3cc10f5044445a2c1553a0b180ce2c08f05fcd06c52c7a72dd23d7cda",
|
|
758
|
+
"size_bytes": 2792
|
|
694
759
|
},
|
|
695
760
|
{
|
|
696
761
|
"path": "src/commands/doctor/workflow.ts",
|
|
@@ -699,8 +764,8 @@
|
|
|
699
764
|
},
|
|
700
765
|
{
|
|
701
766
|
"path": "src/commands/doctor/workspace.ts",
|
|
702
|
-
"sha256": "
|
|
703
|
-
"size_bytes":
|
|
767
|
+
"sha256": "828f78bcc2f6faae942890a006cd85c02962c34b83cf32d3d25ede0028bdbc81",
|
|
768
|
+
"size_bytes": 15145
|
|
704
769
|
},
|
|
705
770
|
{
|
|
706
771
|
"path": "src/commands/finish.run.ts",
|
|
@@ -709,8 +774,8 @@
|
|
|
709
774
|
},
|
|
710
775
|
{
|
|
711
776
|
"path": "src/commands/finish.spec.ts",
|
|
712
|
-
"sha256": "
|
|
713
|
-
"size_bytes":
|
|
777
|
+
"sha256": "cbb8ac02fe784d0358bf90590afa1888782267c8663b0435f4b3159020121e63",
|
|
778
|
+
"size_bytes": 15405
|
|
714
779
|
},
|
|
715
780
|
{
|
|
716
781
|
"path": "src/commands/guard/clean.command.ts",
|
|
@@ -719,8 +784,8 @@
|
|
|
719
784
|
},
|
|
720
785
|
{
|
|
721
786
|
"path": "src/commands/guard/commit.command.ts",
|
|
722
|
-
"sha256": "
|
|
723
|
-
"size_bytes":
|
|
787
|
+
"sha256": "c429679e47b7ea6d578190ffada59ab67ab9edf91b0e7db4d8c1e5c5d2901f01",
|
|
788
|
+
"size_bytes": 6459
|
|
724
789
|
},
|
|
725
790
|
{
|
|
726
791
|
"path": "src/commands/guard/guard.command.ts",
|
|
@@ -732,6 +797,16 @@
|
|
|
732
797
|
"sha256": "b811aae4f7200aeb2da808d0469dfd00317853dda23e691b26d6f34b1b2b88f3",
|
|
733
798
|
"size_bytes": 5411
|
|
734
799
|
},
|
|
800
|
+
{
|
|
801
|
+
"path": "src/commands/guard/impl/clean.ts",
|
|
802
|
+
"sha256": "e114014899cef1b4a2143f63711fa3a8558fc8dbcc2e0696ae3ee24015b151f0",
|
|
803
|
+
"size_bytes": 994
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"path": "src/commands/guard/impl/close-dirt.ts",
|
|
807
|
+
"sha256": "e7b51b243389a581868539755ca27f108f9acf1f2a04d2b3168b4fa0b0256c40",
|
|
808
|
+
"size_bytes": 2184
|
|
809
|
+
},
|
|
735
810
|
{
|
|
736
811
|
"path": "src/commands/guard/impl/close-message.ts",
|
|
737
812
|
"sha256": "326c5c647fb9ba77258bd0e48658c160bbbd0818fb3a7e94480859a1efd0b9ea",
|
|
@@ -739,23 +814,43 @@
|
|
|
739
814
|
},
|
|
740
815
|
{
|
|
741
816
|
"path": "src/commands/guard/impl/commands.ts",
|
|
742
|
-
"sha256": "
|
|
743
|
-
"size_bytes":
|
|
817
|
+
"sha256": "1b7a32b4af2c9504f8ad235b4e1617a6b25bde9127fa18e51adb1e52c7a9af5e",
|
|
818
|
+
"size_bytes": 190
|
|
744
819
|
},
|
|
745
820
|
{
|
|
746
821
|
"path": "src/commands/guard/impl/comment-commit.ts",
|
|
747
|
-
"sha256": "
|
|
748
|
-
"size_bytes":
|
|
822
|
+
"sha256": "c6af4bcf94ea375b5351f9175a44790174a4bb21c19f237dc8911fb9a85f9e8e",
|
|
823
|
+
"size_bytes": 5370
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"path": "src/commands/guard/impl/commit-diagnostics.ts",
|
|
827
|
+
"sha256": "62ef6349f9c819f42c19eec66641372a78e18b51df719498be1c6e09baa066da",
|
|
828
|
+
"size_bytes": 6353
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"path": "src/commands/guard/impl/commit.ts",
|
|
832
|
+
"sha256": "6340cc49c2a913ed2bc1420465a8d6e5ada358c7b8825ba9ea6b241bce035772",
|
|
833
|
+
"size_bytes": 15160
|
|
749
834
|
},
|
|
750
835
|
{
|
|
751
836
|
"path": "src/commands/guard/impl/env.ts",
|
|
752
837
|
"sha256": "a7793f583b513c1e7fdf9228168e87fd4b5d09d8234e536106a841cbc788dad5",
|
|
753
838
|
"size_bytes": 2498
|
|
754
839
|
},
|
|
840
|
+
{
|
|
841
|
+
"path": "src/commands/guard/impl/guard-commit.ts",
|
|
842
|
+
"sha256": "a606b0f8ed449675dbbb82cf87268bc48f5736a3825fd9293491c9afd0588749",
|
|
843
|
+
"size_bytes": 899
|
|
844
|
+
},
|
|
755
845
|
{
|
|
756
846
|
"path": "src/commands/guard/impl/policy.ts",
|
|
757
|
-
"sha256": "
|
|
758
|
-
"size_bytes":
|
|
847
|
+
"sha256": "dd65c100e2f3ce7dfee160e6ba7be13bd38d2dc9d3105f622e1b498d83dc5994",
|
|
848
|
+
"size_bytes": 2621
|
|
849
|
+
},
|
|
850
|
+
{
|
|
851
|
+
"path": "src/commands/guard/impl/suggest.ts",
|
|
852
|
+
"sha256": "876253159b7beadfe02e16ddd7b06e4dbef92a5a6d65cf7fd44bbce498ae6a1c",
|
|
853
|
+
"size_bytes": 1148
|
|
759
854
|
},
|
|
760
855
|
{
|
|
761
856
|
"path": "src/commands/guard/index.ts",
|
|
@@ -774,8 +869,8 @@
|
|
|
774
869
|
},
|
|
775
870
|
{
|
|
776
871
|
"path": "src/commands/hooks/index.ts",
|
|
777
|
-
"sha256": "
|
|
778
|
-
"size_bytes":
|
|
872
|
+
"sha256": "5ddc3c83a746c38f1fdc82808cd52928855153c4c3c7bdd336dab65676e1ce05",
|
|
873
|
+
"size_bytes": 15988
|
|
779
874
|
},
|
|
780
875
|
{
|
|
781
876
|
"path": "src/commands/hooks/install.command.ts",
|
|
@@ -849,8 +944,8 @@
|
|
|
849
944
|
},
|
|
850
945
|
{
|
|
851
946
|
"path": "src/commands/pr/integrate/cmd.ts",
|
|
852
|
-
"sha256": "
|
|
853
|
-
"size_bytes":
|
|
947
|
+
"sha256": "07e63185d357561aac6d9b59f2c6c3fdeecf4e68821b77a179786404277c7951",
|
|
948
|
+
"size_bytes": 12318
|
|
854
949
|
},
|
|
855
950
|
{
|
|
856
951
|
"path": "src/commands/pr/integrate/internal/bootstrap-guidance.ts",
|
|
@@ -889,8 +984,8 @@
|
|
|
889
984
|
},
|
|
890
985
|
{
|
|
891
986
|
"path": "src/commands/pr/integrate/internal/prepare.ts",
|
|
892
|
-
"sha256": "
|
|
893
|
-
"size_bytes":
|
|
987
|
+
"sha256": "58c954a81a8b00e866693fa9db44e259fbf07aa401e27b878cc414f7bf3aad30",
|
|
988
|
+
"size_bytes": 11481
|
|
894
989
|
},
|
|
895
990
|
{
|
|
896
991
|
"path": "src/commands/pr/integrate/internal/worktree.ts",
|
|
@@ -904,8 +999,8 @@
|
|
|
904
999
|
},
|
|
905
1000
|
{
|
|
906
1001
|
"path": "src/commands/pr/internal/auto-commit.ts",
|
|
907
|
-
"sha256": "
|
|
908
|
-
"size_bytes":
|
|
1002
|
+
"sha256": "378607664698432a4a5d71eb1cc10db0c14c35a862f047e3725f70add54e7991",
|
|
1003
|
+
"size_bytes": 2855
|
|
909
1004
|
},
|
|
910
1005
|
{
|
|
911
1006
|
"path": "src/commands/pr/internal/freshness.ts",
|
|
@@ -914,8 +1009,8 @@
|
|
|
914
1009
|
},
|
|
915
1010
|
{
|
|
916
1011
|
"path": "src/commands/pr/internal/gh-api.ts",
|
|
917
|
-
"sha256": "
|
|
918
|
-
"size_bytes":
|
|
1012
|
+
"sha256": "a47a7b23f0d5728484f19aca8d1c481b34e6e7588c9874131642b09743ef8638",
|
|
1013
|
+
"size_bytes": 3215
|
|
919
1014
|
},
|
|
920
1015
|
{
|
|
921
1016
|
"path": "src/commands/pr/internal/note-store.ts",
|
|
@@ -934,8 +1029,8 @@
|
|
|
934
1029
|
},
|
|
935
1030
|
{
|
|
936
1031
|
"path": "src/commands/pr/internal/sync-branch.ts",
|
|
937
|
-
"sha256": "
|
|
938
|
-
"size_bytes":
|
|
1032
|
+
"sha256": "a64ab2357ce41c79ce1cd100529ec2decfe3d473b7cfa3cdefa3db5d72897ae4",
|
|
1033
|
+
"size_bytes": 4363
|
|
939
1034
|
},
|
|
940
1035
|
{
|
|
941
1036
|
"path": "src/commands/pr/internal/sync-github.ts",
|
|
@@ -964,8 +1059,8 @@
|
|
|
964
1059
|
},
|
|
965
1060
|
{
|
|
966
1061
|
"path": "src/commands/pr/internal/sync.ts",
|
|
967
|
-
"sha256": "
|
|
968
|
-
"size_bytes":
|
|
1062
|
+
"sha256": "9dcfee7a7739b0bb4f37e3e97a032df17fd056569e33ee2df389ce55ddaefe1d",
|
|
1063
|
+
"size_bytes": 10255
|
|
969
1064
|
},
|
|
970
1065
|
{
|
|
971
1066
|
"path": "src/commands/pr/note.ts",
|
|
@@ -974,8 +1069,8 @@
|
|
|
974
1069
|
},
|
|
975
1070
|
{
|
|
976
1071
|
"path": "src/commands/pr/open.ts",
|
|
977
|
-
"sha256": "
|
|
978
|
-
"size_bytes":
|
|
1072
|
+
"sha256": "506cabafbea70f899a2f5d4a701f6a2f84b7493116db8b73ebb7ffef429f22a6",
|
|
1073
|
+
"size_bytes": 7113
|
|
979
1074
|
},
|
|
980
1075
|
{
|
|
981
1076
|
"path": "src/commands/pr/pr.command.ts",
|
|
@@ -992,11 +1087,6 @@
|
|
|
992
1087
|
"sha256": "99dcbaec084202f28155256b1673e81584c945d1c588a509908fc3c8f6146a8b",
|
|
993
1088
|
"size_bytes": 1042
|
|
994
1089
|
},
|
|
995
|
-
{
|
|
996
|
-
"path": "src/commands/recipes.test-helpers.ts",
|
|
997
|
-
"sha256": "db30218e3c74e861a8b1f3bf7308b44ac79f5741325a8fcb60b1f784e3012606",
|
|
998
|
-
"size_bytes": 19459
|
|
999
|
-
},
|
|
1000
1090
|
{
|
|
1001
1091
|
"path": "src/commands/recipes.ts",
|
|
1002
1092
|
"sha256": "0002789e7072a11a1735cfc03dd3223240f737c2774c52d1a34cb96fdbffbd60",
|
|
@@ -1189,8 +1279,8 @@
|
|
|
1189
1279
|
},
|
|
1190
1280
|
{
|
|
1191
1281
|
"path": "src/commands/recipes/impl/resolver.ts",
|
|
1192
|
-
"sha256": "
|
|
1193
|
-
"size_bytes":
|
|
1282
|
+
"sha256": "3b67bc70f3b8dd37019eea02d038b007597e2dc2162cfe57cf3da6bdef3791b0",
|
|
1283
|
+
"size_bytes": 11843
|
|
1194
1284
|
},
|
|
1195
1285
|
{
|
|
1196
1286
|
"path": "src/commands/recipes/impl/types.ts",
|
|
@@ -1199,8 +1289,8 @@
|
|
|
1199
1289
|
},
|
|
1200
1290
|
{
|
|
1201
1291
|
"path": "src/commands/recipes/impl/version.ts",
|
|
1202
|
-
"sha256": "
|
|
1203
|
-
"size_bytes":
|
|
1292
|
+
"sha256": "2a319da3f4a7683e4d992176d16f25fb3ee1d8dee00c03cbbc9137d9e60a6c1a",
|
|
1293
|
+
"size_bytes": 434
|
|
1204
1294
|
},
|
|
1205
1295
|
{
|
|
1206
1296
|
"path": "src/commands/recipes/info.command.ts",
|
|
@@ -1242,30 +1332,50 @@
|
|
|
1242
1332
|
"sha256": "559299fe375040313ac9e3339f4ae50dbb48baf37c27ddeb82a6307b14a50eac",
|
|
1243
1333
|
"size_bytes": 1228
|
|
1244
1334
|
},
|
|
1245
|
-
{
|
|
1246
|
-
"path": "src/commands/release.test-helpers.ts",
|
|
1247
|
-
"sha256": "f53ff6de71cc8af390c872439bcb35f27314c9fd04ee63e5359e4d68994ebb21",
|
|
1248
|
-
"size_bytes": 3186
|
|
1249
|
-
},
|
|
1250
1335
|
{
|
|
1251
1336
|
"path": "src/commands/release/apply.command.ts",
|
|
1252
|
-
"sha256": "
|
|
1253
|
-
"size_bytes":
|
|
1337
|
+
"sha256": "d0405aa68dbcf8f42dd4ae348a1f11616dc9b135a9e119fb402724e6b6e4ba6d",
|
|
1338
|
+
"size_bytes": 13548
|
|
1254
1339
|
},
|
|
1255
1340
|
{
|
|
1256
1341
|
"path": "src/commands/release/apply.mutation.ts",
|
|
1257
|
-
"sha256": "
|
|
1258
|
-
"size_bytes":
|
|
1342
|
+
"sha256": "3162db9a2ed75a13b681ea2b84064c68dbcb9b267aee562b2eabf6b6e6555526",
|
|
1343
|
+
"size_bytes": 5997
|
|
1259
1344
|
},
|
|
1260
1345
|
{
|
|
1261
1346
|
"path": "src/commands/release/apply.pipeline.ts",
|
|
1262
|
-
"sha256": "
|
|
1263
|
-
"size_bytes":
|
|
1347
|
+
"sha256": "be17ae4e4b699b6d6acf6b09088bbab457b858848d980d88a0869384219b7b80",
|
|
1348
|
+
"size_bytes": 1820
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"path": "src/commands/release/apply.pipeline/finalize.ts",
|
|
1352
|
+
"sha256": "83924b7a68227f9beb8c2e54cfff60b1be23cf0957fb891f4fa6cf510cc575d3",
|
|
1353
|
+
"size_bytes": 3692
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"path": "src/commands/release/apply.pipeline/mutation.ts",
|
|
1357
|
+
"sha256": "6e4a04719a5df26ba8b3b50e198e06ddfe69205b46209da02db2da28b326713f",
|
|
1358
|
+
"size_bytes": 4084
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"path": "src/commands/release/apply.pipeline/preflight.ts",
|
|
1362
|
+
"sha256": "116c09953daf9e6fbfec17cd536a0793718fc584f19cb8b5a66deffc5a746087",
|
|
1363
|
+
"size_bytes": 4012
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"path": "src/commands/release/apply.pipeline/shared.ts",
|
|
1367
|
+
"sha256": "2dcf230386bba0e0e7b12e34252b4c0e61c89951c2005e8e3a8284b6831e40fd",
|
|
1368
|
+
"size_bytes": 224
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"path": "src/commands/release/apply.pipeline/state.ts",
|
|
1372
|
+
"sha256": "a7652775b28b6af75f43aa816ec0f4860322f1f497634b653d4144af6a3cca52",
|
|
1373
|
+
"size_bytes": 6745
|
|
1264
1374
|
},
|
|
1265
1375
|
{
|
|
1266
1376
|
"path": "src/commands/release/apply.preflight.ts",
|
|
1267
|
-
"sha256": "
|
|
1268
|
-
"size_bytes":
|
|
1377
|
+
"sha256": "5246d6ab8f855d7088486d3b1bdc1cc8b67905f4011f5ddd44695a88f4b1e767",
|
|
1378
|
+
"size_bytes": 17064
|
|
1269
1379
|
},
|
|
1270
1380
|
{
|
|
1271
1381
|
"path": "src/commands/release/apply.reporting.ts",
|
|
@@ -1289,8 +1399,8 @@
|
|
|
1289
1399
|
},
|
|
1290
1400
|
{
|
|
1291
1401
|
"path": "src/commands/runtime.command.ts",
|
|
1292
|
-
"sha256": "
|
|
1293
|
-
"size_bytes":
|
|
1402
|
+
"sha256": "8a8b53f8e487fc7b625fb1c4549b5bf3ec79733081679d0e5c50c08ca4f9ab36",
|
|
1403
|
+
"size_bytes": 8533
|
|
1294
1404
|
},
|
|
1295
1405
|
{
|
|
1296
1406
|
"path": "src/commands/scenario.ts",
|
|
@@ -1304,13 +1414,13 @@
|
|
|
1304
1414
|
},
|
|
1305
1415
|
{
|
|
1306
1416
|
"path": "src/commands/scenario/impl/commands.ts",
|
|
1307
|
-
"sha256": "
|
|
1308
|
-
"size_bytes":
|
|
1417
|
+
"sha256": "4dcb9080fad88623135f962ba86ebcea807e66e9a12c1924c5c930b402c3eab4",
|
|
1418
|
+
"size_bytes": 13719
|
|
1309
1419
|
},
|
|
1310
1420
|
{
|
|
1311
1421
|
"path": "src/commands/scenario/impl/report.ts",
|
|
1312
|
-
"sha256": "
|
|
1313
|
-
"size_bytes":
|
|
1422
|
+
"sha256": "df530f2988d354cd734e4b94746cb425d3eb80416033041d8594bd4a44f77eb6",
|
|
1423
|
+
"size_bytes": 3919
|
|
1314
1424
|
},
|
|
1315
1425
|
{
|
|
1316
1426
|
"path": "src/commands/scenario/info.command.ts",
|
|
@@ -1332,11 +1442,26 @@
|
|
|
1332
1442
|
"sha256": "373b87cda2a75fbdc4b067d04ecba5581d09717416a3f2776c9b09acd4a10d17",
|
|
1333
1443
|
"size_bytes": 1068
|
|
1334
1444
|
},
|
|
1445
|
+
{
|
|
1446
|
+
"path": "src/commands/shared/allow-prefix-policy.ts",
|
|
1447
|
+
"sha256": "53e7a98266a5af3e25e2324517efcff6c38e92073dae3c699f2f7b198b2f470f",
|
|
1448
|
+
"size_bytes": 449
|
|
1449
|
+
},
|
|
1335
1450
|
{
|
|
1336
1451
|
"path": "src/commands/shared/approval-requirements.ts",
|
|
1337
1452
|
"sha256": "bf2c8512a154075556a021a397cb3b177e7430de6569a7ee778af87b4abf62b0",
|
|
1338
1453
|
"size_bytes": 773
|
|
1339
1454
|
},
|
|
1455
|
+
{
|
|
1456
|
+
"path": "src/commands/shared/comment-format.ts",
|
|
1457
|
+
"sha256": "9531486df3a3d5b2aed8039502204e8f040bfecf444d222031ef8d3ad956413d",
|
|
1458
|
+
"size_bytes": 2894
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"path": "src/commands/shared/diagnostics.ts",
|
|
1462
|
+
"sha256": "726b9df7698686302bbeff00929ef232083287c7a60e639548c7462644bf4c70",
|
|
1463
|
+
"size_bytes": 2732
|
|
1464
|
+
},
|
|
1340
1465
|
{
|
|
1341
1466
|
"path": "src/commands/shared/gh-transport.ts",
|
|
1342
1467
|
"sha256": "9b93dcfae995bd3787c160ebddeb25cb3b6baeb8949f4b2df6bbeb4ab06fecdc",
|
|
@@ -1344,28 +1469,28 @@
|
|
|
1344
1469
|
},
|
|
1345
1470
|
{
|
|
1346
1471
|
"path": "src/commands/shared/git-context.ts",
|
|
1347
|
-
"sha256": "
|
|
1348
|
-
"size_bytes":
|
|
1472
|
+
"sha256": "75e47b9d000cb687929fcb399502a473a275e2e2c22dc84cc46424f2f8349a8e",
|
|
1473
|
+
"size_bytes": 50
|
|
1349
1474
|
},
|
|
1350
1475
|
{
|
|
1351
1476
|
"path": "src/commands/shared/git-diff.ts",
|
|
1352
|
-
"sha256": "
|
|
1353
|
-
"size_bytes":
|
|
1477
|
+
"sha256": "876b94e73d950e10fcded805d7c0190271fe52e39482592de880d178bd283ad4",
|
|
1478
|
+
"size_bytes": 116
|
|
1354
1479
|
},
|
|
1355
1480
|
{
|
|
1356
1481
|
"path": "src/commands/shared/git-ops.ts",
|
|
1357
|
-
"sha256": "
|
|
1358
|
-
"size_bytes":
|
|
1482
|
+
"sha256": "ab3a739b478087a3a5483aa494e4b6be06bbf4be5ca63b7eec266b15e7a4b128",
|
|
1483
|
+
"size_bytes": 3792
|
|
1359
1484
|
},
|
|
1360
1485
|
{
|
|
1361
1486
|
"path": "src/commands/shared/git-worktree.ts",
|
|
1362
|
-
"sha256": "
|
|
1363
|
-
"size_bytes":
|
|
1487
|
+
"sha256": "677a656ee2b116c2832646f7d1fdc58de8e676b8176b606eb3a3004e5bf154e1",
|
|
1488
|
+
"size_bytes": 188
|
|
1364
1489
|
},
|
|
1365
1490
|
{
|
|
1366
1491
|
"path": "src/commands/shared/git.ts",
|
|
1367
|
-
"sha256": "
|
|
1368
|
-
"size_bytes":
|
|
1492
|
+
"sha256": "3009138f744f750edccc8602f4f0c0c2b405ef4c32004e88d8e721238a443e65",
|
|
1493
|
+
"size_bytes": 61
|
|
1369
1494
|
},
|
|
1370
1495
|
{
|
|
1371
1496
|
"path": "src/commands/shared/merged-branch-cleanup.ts",
|
|
@@ -1389,7 +1514,7 @@
|
|
|
1389
1514
|
},
|
|
1390
1515
|
{
|
|
1391
1516
|
"path": "src/commands/shared/policy-deny.ts",
|
|
1392
|
-
"sha256": "
|
|
1517
|
+
"sha256": "7a852b7cb5dbe31cb2eaad7d6e972ac3c293ee79dd6657d6460021828feb861f",
|
|
1393
1518
|
"size_bytes": 519
|
|
1394
1519
|
},
|
|
1395
1520
|
{
|
|
@@ -1404,13 +1529,13 @@
|
|
|
1404
1529
|
},
|
|
1405
1530
|
{
|
|
1406
1531
|
"path": "src/commands/shared/reconcile-check.ts",
|
|
1407
|
-
"sha256": "
|
|
1408
|
-
"size_bytes":
|
|
1532
|
+
"sha256": "2f61606cc51908198d9989ab3ce81802b5c07d4b048b98a3f059c240183aeea8",
|
|
1533
|
+
"size_bytes": 6404
|
|
1409
1534
|
},
|
|
1410
1535
|
{
|
|
1411
1536
|
"path": "src/commands/shared/task-backend.ts",
|
|
1412
|
-
"sha256": "
|
|
1413
|
-
"size_bytes":
|
|
1537
|
+
"sha256": "17c5756b905b168b8ecfb778818b9297bc59ccf2e6d4f32c6666559e2ad61275",
|
|
1538
|
+
"size_bytes": 13140
|
|
1414
1539
|
},
|
|
1415
1540
|
{
|
|
1416
1541
|
"path": "src/commands/shared/task-handoff.ts",
|
|
@@ -1434,8 +1559,8 @@
|
|
|
1434
1559
|
},
|
|
1435
1560
|
{
|
|
1436
1561
|
"path": "src/commands/shared/task-store/intents.ts",
|
|
1437
|
-
"sha256": "
|
|
1438
|
-
"size_bytes":
|
|
1562
|
+
"sha256": "cde14c8960f2ca5f26bb2aa2d5989061066325a2eff4c45fa6f3ba75884e2cb9",
|
|
1563
|
+
"size_bytes": 10580
|
|
1439
1564
|
},
|
|
1440
1565
|
{
|
|
1441
1566
|
"path": "src/commands/shared/task-store/readme.ts",
|
|
@@ -1459,19 +1584,14 @@
|
|
|
1459
1584
|
},
|
|
1460
1585
|
{
|
|
1461
1586
|
"path": "src/commands/start.spec.ts",
|
|
1462
|
-
"sha256": "
|
|
1463
|
-
"size_bytes":
|
|
1587
|
+
"sha256": "3eeb996c54da05e8933732e0bf93255fe8d9755d6984d74f22c90d5e5c11cb7c",
|
|
1588
|
+
"size_bytes": 5535
|
|
1464
1589
|
},
|
|
1465
1590
|
{
|
|
1466
1591
|
"path": "src/commands/sync.command.ts",
|
|
1467
1592
|
"sha256": "d4b5f5bb2d74c25b96ce067c3938fe78a3c969bc223a054d6c4f03a8b0c98548",
|
|
1468
1593
|
"size_bytes": 2269
|
|
1469
1594
|
},
|
|
1470
|
-
{
|
|
1471
|
-
"path": "src/commands/task.test-helpers.ts",
|
|
1472
|
-
"sha256": "4576b18687b1a03f7a8bb3455135fc8a7b679dc6d85bc94ace2db3e90266c41c",
|
|
1473
|
-
"size_bytes": 2423
|
|
1474
|
-
},
|
|
1475
1595
|
{
|
|
1476
1596
|
"path": "src/commands/task/add.command.ts",
|
|
1477
1597
|
"sha256": "a00ff6bc06df4affdf0acbfa68d9394095fd50212d7fa7dacd3795d13f905a5a",
|
|
@@ -1512,6 +1632,11 @@
|
|
|
1512
1632
|
"sha256": "205e0667a9e5cb2e9870f2184c97d0969ab473c6c9820513c2855ec414d8ec59",
|
|
1513
1633
|
"size_bytes": 1811
|
|
1514
1634
|
},
|
|
1635
|
+
{
|
|
1636
|
+
"path": "src/commands/task/close-tail-state.ts",
|
|
1637
|
+
"sha256": "095914e1b220b6a45f4d43ff980d45055d80e2d58e3a1c6abf43b9d2bc5aa924",
|
|
1638
|
+
"size_bytes": 896
|
|
1639
|
+
},
|
|
1515
1640
|
{
|
|
1516
1641
|
"path": "src/commands/task/comment.command.ts",
|
|
1517
1642
|
"sha256": "81f82d6567f60d59574b681b5e1473b775912632aacb84ebdce67e1628500079",
|
|
@@ -1529,8 +1654,8 @@
|
|
|
1529
1654
|
},
|
|
1530
1655
|
{
|
|
1531
1656
|
"path": "src/commands/task/derive.ts",
|
|
1532
|
-
"sha256": "
|
|
1533
|
-
"size_bytes":
|
|
1657
|
+
"sha256": "4214b697468ea4d0edd8fc2a16042b9eb7e3e7d26d6d127e3548d8c25a8901c5",
|
|
1658
|
+
"size_bytes": 5014
|
|
1534
1659
|
},
|
|
1535
1660
|
{
|
|
1536
1661
|
"path": "src/commands/task/doc-set.command.ts",
|
|
@@ -1582,15 +1707,45 @@
|
|
|
1582
1707
|
"sha256": "e922215e1d750a0bea7402185f2be4b2d4fe04c157d18e893bd2aa0b91082a27",
|
|
1583
1708
|
"size_bytes": 9070
|
|
1584
1709
|
},
|
|
1710
|
+
{
|
|
1711
|
+
"path": "src/commands/task/finish-close.ts",
|
|
1712
|
+
"sha256": "d56ce703b3143a329a2774240d317c571b4d22310cde8acd898c6f5de35c4bcb",
|
|
1713
|
+
"size_bytes": 4642
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"path": "src/commands/task/finish-command.ts",
|
|
1717
|
+
"sha256": "901b8a84107269295aadc0bcae5366f5ed4ada8aa10564ee2b7d2c4d5447bf64",
|
|
1718
|
+
"size_bytes": 2179
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"path": "src/commands/task/finish-execute.ts",
|
|
1722
|
+
"sha256": "a2ac26822e1700ace23fc365fdd0467cb7e0a6b4345e40e71476abcc73e071c2",
|
|
1723
|
+
"size_bytes": 11110
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"path": "src/commands/task/finish-findings.ts",
|
|
1727
|
+
"sha256": "a90a52b3ce515eb132a4552a8cb1182ce18a5cb47133792c56bd2c3715fd553e",
|
|
1728
|
+
"size_bytes": 1520
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"path": "src/commands/task/finish-plan.ts",
|
|
1732
|
+
"sha256": "e385569c46e1335e50485fa91e1d910e855c00033c3cbaa4349486cb5b451a83",
|
|
1733
|
+
"size_bytes": 6126
|
|
1734
|
+
},
|
|
1585
1735
|
{
|
|
1586
1736
|
"path": "src/commands/task/finish-shared.ts",
|
|
1587
1737
|
"sha256": "93cd950780b5e38c31d60b1a14283012ff43b48f66260f1431919ec2378ff93e",
|
|
1588
1738
|
"size_bytes": 10197
|
|
1589
1739
|
},
|
|
1740
|
+
{
|
|
1741
|
+
"path": "src/commands/task/finish-types.ts",
|
|
1742
|
+
"sha256": "1619121c127e8a0004c119b42454a63535442adcb760564eca85c0cff976d087",
|
|
1743
|
+
"size_bytes": 1782
|
|
1744
|
+
},
|
|
1590
1745
|
{
|
|
1591
1746
|
"path": "src/commands/task/finish.ts",
|
|
1592
|
-
"sha256": "
|
|
1593
|
-
"size_bytes":
|
|
1747
|
+
"sha256": "4939512258b7d469d1b136e5fd88d14eab9c3fc580050ec3f371af46e6905a43",
|
|
1748
|
+
"size_bytes": 49
|
|
1594
1749
|
},
|
|
1595
1750
|
{
|
|
1596
1751
|
"path": "src/commands/task/handoff-record.command.ts",
|
|
@@ -1614,18 +1769,43 @@
|
|
|
1614
1769
|
},
|
|
1615
1770
|
{
|
|
1616
1771
|
"path": "src/commands/task/hosted-close-pr.command.ts",
|
|
1617
|
-
"sha256": "
|
|
1618
|
-
"size_bytes":
|
|
1772
|
+
"sha256": "3868aa81e47968aea97c3778485d30e75a10b0a1f5fc8285219e6e46d30e9965",
|
|
1773
|
+
"size_bytes": 19554
|
|
1619
1774
|
},
|
|
1620
1775
|
{
|
|
1621
1776
|
"path": "src/commands/task/hosted-close.command.ts",
|
|
1622
|
-
"sha256": "
|
|
1623
|
-
"size_bytes":
|
|
1777
|
+
"sha256": "5259928bd285c9ea049cb5ffd0cb41147409c48810ccb4742d28846b5bdd9773",
|
|
1778
|
+
"size_bytes": 16385
|
|
1624
1779
|
},
|
|
1625
1780
|
{
|
|
1626
1781
|
"path": "src/commands/task/hosted-merge-sync.ts",
|
|
1627
|
-
"sha256": "
|
|
1628
|
-
"size_bytes":
|
|
1782
|
+
"sha256": "eaccd4247e1ad192194b1dbe448c6fa50c98a1dd045105d7005c19c0643bbcea",
|
|
1783
|
+
"size_bytes": 5685
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
"path": "src/commands/task/hosted-merge-sync/builders.ts",
|
|
1787
|
+
"sha256": "96a85198442f8dbd5aa0aa666f9b366f018ec157ec45a267afe25e6e2a8f810f",
|
|
1788
|
+
"size_bytes": 6012
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"path": "src/commands/task/hosted-merge-sync/github.ts",
|
|
1792
|
+
"sha256": "98d69955a7266af3f44974c5c1d1c6a42ddbbadefc5fa85d88ef5258f100bdb6",
|
|
1793
|
+
"size_bytes": 4832
|
|
1794
|
+
},
|
|
1795
|
+
{
|
|
1796
|
+
"path": "src/commands/task/hosted-merge-sync/local-branch.ts",
|
|
1797
|
+
"sha256": "988a80950601cb0e5b8cbc91807f6fdfaeb839de921d303056cde75ee6d445c3",
|
|
1798
|
+
"size_bytes": 5460
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"path": "src/commands/task/hosted-merge-sync/model.ts",
|
|
1802
|
+
"sha256": "fb6407934c6a4c7435fbda2b7bf82ed23448eab3f5dca6491fb9185b41bf6dab",
|
|
1803
|
+
"size_bytes": 1091
|
|
1804
|
+
},
|
|
1805
|
+
{
|
|
1806
|
+
"path": "src/commands/task/hosted-merge-sync/pr-meta.ts",
|
|
1807
|
+
"sha256": "83ac080bef9a9745bfb098190fc0bdf709e3aee0f8a71ed36778e163eccbfcd5",
|
|
1808
|
+
"size_bytes": 1192
|
|
1629
1809
|
},
|
|
1630
1810
|
{
|
|
1631
1811
|
"path": "src/commands/task/index.ts",
|
|
@@ -1689,8 +1869,8 @@
|
|
|
1689
1869
|
},
|
|
1690
1870
|
{
|
|
1691
1871
|
"path": "src/commands/task/new.ts",
|
|
1692
|
-
"sha256": "
|
|
1693
|
-
"size_bytes":
|
|
1872
|
+
"sha256": "abf4cdbcc1b97c89f77b34cd5fe20054268fb28599feceb2e823961f63a3aa94",
|
|
1873
|
+
"size_bytes": 9894
|
|
1694
1874
|
},
|
|
1695
1875
|
{
|
|
1696
1876
|
"path": "src/commands/task/next.run.ts",
|
|
@@ -1869,8 +2049,8 @@
|
|
|
1869
2049
|
},
|
|
1870
2050
|
{
|
|
1871
2051
|
"path": "src/commands/task/set-status.command.ts",
|
|
1872
|
-
"sha256": "
|
|
1873
|
-
"size_bytes":
|
|
2052
|
+
"sha256": "b2d036e52b9ead7a757db2025b5aae1e90d6c504d18e196dcd6fbfb43349ceb0",
|
|
2053
|
+
"size_bytes": 7490
|
|
1874
2054
|
},
|
|
1875
2055
|
{
|
|
1876
2056
|
"path": "src/commands/task/set-status.ts",
|
|
@@ -1887,11 +2067,21 @@
|
|
|
1887
2067
|
"sha256": "df9e14def8b3718495860e3adeceee1e9591d83828a43714b15c5bdc2c3d549a",
|
|
1888
2068
|
"size_bytes": 5787
|
|
1889
2069
|
},
|
|
2070
|
+
{
|
|
2071
|
+
"path": "src/commands/task/shared/direct-work-lock.ts",
|
|
2072
|
+
"sha256": "0670f838999072a2eafddb65981ca078657734ed0595a4205f972230262ffdbc",
|
|
2073
|
+
"size_bytes": 972
|
|
2074
|
+
},
|
|
1890
2075
|
{
|
|
1891
2076
|
"path": "src/commands/task/shared/docs.ts",
|
|
1892
2077
|
"sha256": "867caac5b8cb21422a56f73834ec40dbf378e0e1eb5fc8c7cc6fdcfaa297a7bc",
|
|
1893
2078
|
"size_bytes": 6507
|
|
1894
2079
|
},
|
|
2080
|
+
{
|
|
2081
|
+
"path": "src/commands/task/shared/git-log.ts",
|
|
2082
|
+
"sha256": "dd6321a9ea88a319a902f4bb4b8cc09957f4713f3647865faf9b558e7aeac608",
|
|
2083
|
+
"size_bytes": 535
|
|
2084
|
+
},
|
|
1895
2085
|
{
|
|
1896
2086
|
"path": "src/commands/task/shared/listing.ts",
|
|
1897
2087
|
"sha256": "61ed723f24362e632a860ba20bc66c57a8b84630aa28b200d9f04e50a8f6f1ae",
|
|
@@ -1909,8 +2099,8 @@
|
|
|
1909
2099
|
},
|
|
1910
2100
|
{
|
|
1911
2101
|
"path": "src/commands/task/shared/transitions.ts",
|
|
1912
|
-
"sha256": "
|
|
1913
|
-
"size_bytes":
|
|
2102
|
+
"sha256": "f5f0bfcc3da573226dd035bda7d1a599e8a98699fad8a31ecf41408d04c512cc",
|
|
2103
|
+
"size_bytes": 10897
|
|
1914
2104
|
},
|
|
1915
2105
|
{
|
|
1916
2106
|
"path": "src/commands/task/shared/workflow-transition-service.ts",
|
|
@@ -2004,8 +2194,8 @@
|
|
|
2004
2194
|
},
|
|
2005
2195
|
{
|
|
2006
2196
|
"path": "src/commands/upgrade/apply.ts",
|
|
2007
|
-
"sha256": "
|
|
2008
|
-
"size_bytes":
|
|
2197
|
+
"sha256": "13a464316bd7f9a063cdb276ed500da9dddd937d146261884706a7fa8e3c43b0",
|
|
2198
|
+
"size_bytes": 9889
|
|
2009
2199
|
},
|
|
2010
2200
|
{
|
|
2011
2201
|
"path": "src/commands/upgrade/materialize.ts",
|
|
@@ -2054,8 +2244,8 @@
|
|
|
2054
2244
|
},
|
|
2055
2245
|
{
|
|
2056
2246
|
"path": "src/commands/workflow-playbook.command.ts",
|
|
2057
|
-
"sha256": "
|
|
2058
|
-
"size_bytes":
|
|
2247
|
+
"sha256": "4d23f3d9cc2abf42092632362955964e73786644ed59208bc17cb9827f2ebf3e",
|
|
2248
|
+
"size_bytes": 7355
|
|
2059
2249
|
},
|
|
2060
2250
|
{
|
|
2061
2251
|
"path": "src/commands/workflow-restore.command.ts",
|
|
@@ -2079,8 +2269,8 @@
|
|
|
2079
2269
|
},
|
|
2080
2270
|
{
|
|
2081
2271
|
"path": "src/harness/hooks-lifecycle.ts",
|
|
2082
|
-
"sha256": "
|
|
2083
|
-
"size_bytes":
|
|
2272
|
+
"sha256": "8d819426ff075e23e221e604f65cafada78d50d250b4bd57d351a256bbb94cbb",
|
|
2273
|
+
"size_bytes": 2416
|
|
2084
2274
|
},
|
|
2085
2275
|
{
|
|
2086
2276
|
"path": "src/harness/index.ts",
|
|
@@ -2119,8 +2309,8 @@
|
|
|
2119
2309
|
},
|
|
2120
2310
|
{
|
|
2121
2311
|
"path": "src/meta/release.ts",
|
|
2122
|
-
"sha256": "
|
|
2123
|
-
"size_bytes":
|
|
2312
|
+
"sha256": "24724f7a4cc879352d34a5dc9837a99f97b5667c36626eb85c85ad2119e2fcac",
|
|
2313
|
+
"size_bytes": 1669
|
|
2124
2314
|
},
|
|
2125
2315
|
{
|
|
2126
2316
|
"path": "src/meta/version.ts",
|
|
@@ -2129,42 +2319,47 @@
|
|
|
2129
2319
|
},
|
|
2130
2320
|
{
|
|
2131
2321
|
"path": "src/policy/engine.ts",
|
|
2132
|
-
"sha256": "
|
|
2322
|
+
"sha256": "42ff568f50f8ed1631b6f06600c0e30353c081ea0a2ac89e3b61fe614f6798f5",
|
|
2133
2323
|
"size_bytes": 1841
|
|
2134
2324
|
},
|
|
2135
2325
|
{
|
|
2136
2326
|
"path": "src/policy/evaluate.ts",
|
|
2137
|
-
"sha256": "
|
|
2327
|
+
"sha256": "549c79f6670e859e64981b0350e11e86339ba2c90e71d5c42ddd44772d2cd0c3",
|
|
2138
2328
|
"size_bytes": 1205
|
|
2139
2329
|
},
|
|
2330
|
+
{
|
|
2331
|
+
"path": "src/policy/model.ts",
|
|
2332
|
+
"sha256": "d8fe769d87de38ef3ef16c1928623d184ca9a70be4b321afe4f4db0bb568df35",
|
|
2333
|
+
"size_bytes": 1010
|
|
2334
|
+
},
|
|
2140
2335
|
{
|
|
2141
2336
|
"path": "src/policy/result.ts",
|
|
2142
|
-
"sha256": "
|
|
2337
|
+
"sha256": "310d84591282384e773730ac526a4aac8b49f11cdec222b74e30533da268ba15",
|
|
2143
2338
|
"size_bytes": 784
|
|
2144
2339
|
},
|
|
2145
2340
|
{
|
|
2146
2341
|
"path": "src/policy/rules/allowlist.ts",
|
|
2147
|
-
"sha256": "
|
|
2342
|
+
"sha256": "d1c13820108e14d2eaa3a6af86e07b3b092a12d007ef65eeb77421bc0b3f41cf",
|
|
2148
2343
|
"size_bytes": 2096
|
|
2149
2344
|
},
|
|
2150
2345
|
{
|
|
2151
2346
|
"path": "src/policy/rules/branch-pr-base.ts",
|
|
2152
|
-
"sha256": "
|
|
2347
|
+
"sha256": "baf1a4c82d8e132d0a6580bcf221cea7a7ec93d66ac1bb09432afaee0cf4d34f",
|
|
2153
2348
|
"size_bytes": 1469
|
|
2154
2349
|
},
|
|
2155
2350
|
{
|
|
2156
2351
|
"path": "src/policy/rules/clean-tree.ts",
|
|
2157
|
-
"sha256": "
|
|
2352
|
+
"sha256": "8308c97cbbef8508c8d4a154b4f51d0f98081f35e2b62cee0425a3798b6c9bc3",
|
|
2158
2353
|
"size_bytes": 647
|
|
2159
2354
|
},
|
|
2160
2355
|
{
|
|
2161
2356
|
"path": "src/policy/rules/commit-subject.ts",
|
|
2162
|
-
"sha256": "
|
|
2357
|
+
"sha256": "840870be1c84f7d1adc89ca76da2a6b1b9eca6ad0c36005039f1eb8dbc3bbb04",
|
|
2163
2358
|
"size_bytes": 746
|
|
2164
2359
|
},
|
|
2165
2360
|
{
|
|
2166
2361
|
"path": "src/policy/rules/protected-paths.ts",
|
|
2167
|
-
"sha256": "
|
|
2362
|
+
"sha256": "286e3160fcc3d2dfcdddd63241c7ec7e3af6820c58c7833443e3ad5bfd0ce7b4",
|
|
2168
2363
|
"size_bytes": 2405
|
|
2169
2364
|
},
|
|
2170
2365
|
{
|
|
@@ -2172,11 +2367,6 @@
|
|
|
2172
2367
|
"sha256": "c31cafc9639fdc44e250ab9a2a7944b564d260c8848b40f43a81aa57d2d148bb",
|
|
2173
2368
|
"size_bytes": 9576
|
|
2174
2369
|
},
|
|
2175
|
-
{
|
|
2176
|
-
"path": "src/policy/types.ts",
|
|
2177
|
-
"sha256": "d8fe769d87de38ef3ef16c1928623d184ca9a70be4b321afe4f4db0bb568df35",
|
|
2178
|
-
"size_bytes": 1010
|
|
2179
|
-
},
|
|
2180
2370
|
{
|
|
2181
2371
|
"path": "src/ports/clock-port.ts",
|
|
2182
2372
|
"sha256": "5d928e2d8d6127a64b9e4a38dd4b9f18288667b6ce7cccb774a7e42bd676140b",
|
|
@@ -2197,15 +2387,30 @@
|
|
|
2197
2387
|
"sha256": "3869fbd4166d41ff20d2c934e154deacb1c8c4e68d55d96f10176c73e42cfe75",
|
|
2198
2388
|
"size_bytes": 583
|
|
2199
2389
|
},
|
|
2390
|
+
{
|
|
2391
|
+
"path": "src/runner/adapters/base.ts",
|
|
2392
|
+
"sha256": "57dea3b395b95a08aedc19421fd0c456fc2119c768122e4be047ad601eb6c07d",
|
|
2393
|
+
"size_bytes": 5298
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
"path": "src/runner/adapters/codex-preparation.ts",
|
|
2397
|
+
"sha256": "ddd9b70bb9d968d572ca737794ca26839098ceba56247ad74e9fd48101166c8b",
|
|
2398
|
+
"size_bytes": 3434
|
|
2399
|
+
},
|
|
2200
2400
|
{
|
|
2201
2401
|
"path": "src/runner/adapters/codex.ts",
|
|
2202
|
-
"sha256": "
|
|
2203
|
-
"size_bytes":
|
|
2402
|
+
"sha256": "a9b440cd282d7b6cf8abdfaacd6215c257c9f97db45d4a284c4fdd41b5dadc1d",
|
|
2403
|
+
"size_bytes": 11119
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
"path": "src/runner/adapters/custom-preparation.ts",
|
|
2407
|
+
"sha256": "a3da8708984d2e1ad9740275f2ebd6b327a9c8a1cb337e20f5542badfc3bab7b",
|
|
2408
|
+
"size_bytes": 8404
|
|
2204
2409
|
},
|
|
2205
2410
|
{
|
|
2206
2411
|
"path": "src/runner/adapters/custom.ts",
|
|
2207
|
-
"sha256": "
|
|
2208
|
-
"size_bytes":
|
|
2412
|
+
"sha256": "0f1c7a96deec516949d69227e417f2119ea3db3af87006e828a65543d6295e44",
|
|
2413
|
+
"size_bytes": 11473
|
|
2209
2414
|
},
|
|
2210
2415
|
{
|
|
2211
2416
|
"path": "src/runner/adapters/index.ts",
|
|
@@ -2299,8 +2504,28 @@
|
|
|
2299
2504
|
},
|
|
2300
2505
|
{
|
|
2301
2506
|
"path": "src/runner/process-supervision.ts",
|
|
2302
|
-
"sha256": "
|
|
2303
|
-
"size_bytes":
|
|
2507
|
+
"sha256": "501e213a4b85325bc983f721b58b36f14efbb9bc34b120c1e9996c739a7f23db",
|
|
2508
|
+
"size_bytes": 444
|
|
2509
|
+
},
|
|
2510
|
+
{
|
|
2511
|
+
"path": "src/runner/process-supervision/run.ts",
|
|
2512
|
+
"sha256": "a90d9636b9e09a2b55e1da9947c0c1a520de6d64947d3ef7a66397958486a80c",
|
|
2513
|
+
"size_bytes": 13225
|
|
2514
|
+
},
|
|
2515
|
+
{
|
|
2516
|
+
"path": "src/runner/process-supervision/signals.ts",
|
|
2517
|
+
"sha256": "3cc6bfc0b0bbabfcbefbc5d394c86a187ef09b2302f6479c0f6ac8bb20778ecd",
|
|
2518
|
+
"size_bytes": 2697
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"path": "src/runner/process-supervision/state.ts",
|
|
2522
|
+
"sha256": "e5dc414b66b868e98baa25c552f7ff8ee51b14f3954ff766d799113705437dda",
|
|
2523
|
+
"size_bytes": 2208
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"path": "src/runner/process-supervision/streams.ts",
|
|
2527
|
+
"sha256": "2cb89a6010e528530260cfb45a6ed9c91e6a38a916d4bcd8574e6371e4e7eb0a",
|
|
2528
|
+
"size_bytes": 834
|
|
2304
2529
|
},
|
|
2305
2530
|
{
|
|
2306
2531
|
"path": "src/runner/result-manifest-policy.ts",
|
|
@@ -2332,11 +2557,6 @@
|
|
|
2332
2557
|
"sha256": "c4871cf95fb907704fcfc8e3f48eb76c362591a4f6289fb83b66ce2bf45d00d8",
|
|
2333
2558
|
"size_bytes": 15341
|
|
2334
2559
|
},
|
|
2335
|
-
{
|
|
2336
|
-
"path": "src/runner/test-helpers.ts",
|
|
2337
|
-
"sha256": "f52013a1f647b1a343a09ee6b39795c0d5b6392917eeefdabe0a20f6b0edf861",
|
|
2338
|
-
"size_bytes": 4732
|
|
2339
|
-
},
|
|
2340
2560
|
{
|
|
2341
2561
|
"path": "src/runner/trace-artifacts.ts",
|
|
2342
2562
|
"sha256": "d0a6f6ae2b25df049fb0838ab52a1d77219bd3b5475e23c6ac6925cb4dc851e3",
|
|
@@ -2354,8 +2574,8 @@
|
|
|
2354
2574
|
},
|
|
2355
2575
|
{
|
|
2356
2576
|
"path": "src/runner/usecases/scenario-materialize-task.ts",
|
|
2357
|
-
"sha256": "
|
|
2358
|
-
"size_bytes":
|
|
2577
|
+
"sha256": "56805a4c9f762a60370c3c33e582c1b673ab58819d58b49d134d446d71b98709",
|
|
2578
|
+
"size_bytes": 9905
|
|
2359
2579
|
},
|
|
2360
2580
|
{
|
|
2361
2581
|
"path": "src/runner/usecases/task-run-inspect.ts",
|
|
@@ -2389,99 +2609,99 @@
|
|
|
2389
2609
|
},
|
|
2390
2610
|
{
|
|
2391
2611
|
"path": "src/runtime/approvals/index.ts",
|
|
2392
|
-
"sha256": "
|
|
2612
|
+
"sha256": "cd92ba1198c676b1be67fccc2a4b0ea16a2356f8a606512b492a88eaf95551be",
|
|
2393
2613
|
"size_bytes": 296
|
|
2394
2614
|
},
|
|
2395
2615
|
{
|
|
2396
|
-
"path": "src/runtime/approvals/
|
|
2397
|
-
"sha256": "8b310952385e197213e0c43d57bf9a2256504efba935acebcf2ca0d587a587d8",
|
|
2398
|
-
"size_bytes": 5226
|
|
2399
|
-
},
|
|
2400
|
-
{
|
|
2401
|
-
"path": "src/runtime/approvals/types.ts",
|
|
2616
|
+
"path": "src/runtime/approvals/model.ts",
|
|
2402
2617
|
"sha256": "481348a394bebbf4b7170e939f46f64d1efece9221c84c6f812f41fc3ca394e8",
|
|
2403
2618
|
"size_bytes": 944
|
|
2404
2619
|
},
|
|
2405
2620
|
{
|
|
2406
|
-
"path": "src/runtime/
|
|
2407
|
-
"sha256": "
|
|
2408
|
-
"size_bytes":
|
|
2621
|
+
"path": "src/runtime/approvals/runtime.ts",
|
|
2622
|
+
"sha256": "26523820fdd3c74aa48974174973eb268cc2fac8eb4076dc16e936997073cad6",
|
|
2623
|
+
"size_bytes": 5226
|
|
2409
2624
|
},
|
|
2410
2625
|
{
|
|
2411
|
-
"path": "src/runtime/behavior/
|
|
2412
|
-
"sha256": "
|
|
2413
|
-
"size_bytes":
|
|
2626
|
+
"path": "src/runtime/behavior/index.ts",
|
|
2627
|
+
"sha256": "2f6551bfa097bd264c7f10b90663b8560859baaa3a48a666bb83b2e35e8b21e3",
|
|
2628
|
+
"size_bytes": 215
|
|
2414
2629
|
},
|
|
2415
2630
|
{
|
|
2416
|
-
"path": "src/runtime/behavior/
|
|
2631
|
+
"path": "src/runtime/behavior/model.ts",
|
|
2417
2632
|
"sha256": "253f723069cea44d2b0b0beafd7feb290faade5daa4f96e647bd87972a4aeb0d",
|
|
2418
2633
|
"size_bytes": 891
|
|
2419
2634
|
},
|
|
2635
|
+
{
|
|
2636
|
+
"path": "src/runtime/behavior/resolve.ts",
|
|
2637
|
+
"sha256": "631cfdc6bcfec8c481d22a6be2d983af1d5caf7ec793f36cf6a2beeb780df5a1",
|
|
2638
|
+
"size_bytes": 3686
|
|
2639
|
+
},
|
|
2420
2640
|
{
|
|
2421
2641
|
"path": "src/runtime/capabilities/backend.ts",
|
|
2422
|
-
"sha256": "
|
|
2642
|
+
"sha256": "1547680fbfbe413f1191bd48ea87955a7b3adc8772a34ce5521a27d00402f182",
|
|
2423
2643
|
"size_bytes": 4088
|
|
2424
2644
|
},
|
|
2425
2645
|
{
|
|
2426
2646
|
"path": "src/runtime/capabilities/index.ts",
|
|
2427
|
-
"sha256": "
|
|
2647
|
+
"sha256": "1c1dcdea31d2ac636b9b9d85f736c897edff7316063d56de37c3f1fdd253d90f",
|
|
2428
2648
|
"size_bytes": 591
|
|
2429
2649
|
},
|
|
2650
|
+
{
|
|
2651
|
+
"path": "src/runtime/capabilities/model.ts",
|
|
2652
|
+
"sha256": "2c4d516324972eaff7a28415abe05531b428bb66429dd8c4029f971bab5730be",
|
|
2653
|
+
"size_bytes": 1145
|
|
2654
|
+
},
|
|
2430
2655
|
{
|
|
2431
2656
|
"path": "src/runtime/capabilities/recipe.ts",
|
|
2432
|
-
"sha256": "
|
|
2657
|
+
"sha256": "10611b84f3d8f73b6c124943ff57dfa234b0761d1d5df76842160d807bbeb4a0",
|
|
2433
2658
|
"size_bytes": 6462
|
|
2434
2659
|
},
|
|
2435
2660
|
{
|
|
2436
2661
|
"path": "src/runtime/capabilities/registry.ts",
|
|
2437
|
-
"sha256": "
|
|
2662
|
+
"sha256": "9c5bcfadb65483c70ef2ee5fc908d4f9ec4e2ace9b141018d09a47a7e6b39c41",
|
|
2438
2663
|
"size_bytes": 3109
|
|
2439
2664
|
},
|
|
2440
2665
|
{
|
|
2441
2666
|
"path": "src/runtime/capabilities/runner.ts",
|
|
2442
|
-
"sha256": "
|
|
2667
|
+
"sha256": "26f923f7ea7d5fc1c32a3bc0f33f1f9c1d47255b6407243809bd929b7e4b0f5e",
|
|
2443
2668
|
"size_bytes": 2995
|
|
2444
2669
|
},
|
|
2445
|
-
{
|
|
2446
|
-
"path": "src/runtime/capabilities/types.ts",
|
|
2447
|
-
"sha256": "2c4d516324972eaff7a28415abe05531b428bb66429dd8c4029f971bab5730be",
|
|
2448
|
-
"size_bytes": 1145
|
|
2449
|
-
},
|
|
2450
2670
|
{
|
|
2451
2671
|
"path": "src/runtime/execution-context.ts",
|
|
2452
|
-
"sha256": "
|
|
2453
|
-
"size_bytes":
|
|
2672
|
+
"sha256": "cf3d7c99e2304f1fd395a1345ee852a1e7e2192fc0ad1defb584c35eb251b1e8",
|
|
2673
|
+
"size_bytes": 6694
|
|
2454
2674
|
},
|
|
2455
2675
|
{
|
|
2456
2676
|
"path": "src/runtime/execution-profile/index.ts",
|
|
2457
|
-
"sha256": "
|
|
2677
|
+
"sha256": "9cb967cfa57f92068310d36689d753ee26a8579a043a5eb557dc5133ee48236e",
|
|
2458
2678
|
"size_bytes": 214
|
|
2459
2679
|
},
|
|
2460
2680
|
{
|
|
2461
|
-
"path": "src/runtime/execution-profile/
|
|
2462
|
-
"sha256": "81483a13fe55b37f04d7e15b65d6ea44ea2f46bf73b12ec45c56b6a0f8cdc7e5",
|
|
2463
|
-
"size_bytes": 3051
|
|
2464
|
-
},
|
|
2465
|
-
{
|
|
2466
|
-
"path": "src/runtime/execution-profile/types.ts",
|
|
2681
|
+
"path": "src/runtime/execution-profile/model.ts",
|
|
2467
2682
|
"sha256": "3fd4b7a4773b2086e5f9c3a123889f4a764f0b1788a5bc9dd6b72caeb3930ac1",
|
|
2468
2683
|
"size_bytes": 894
|
|
2469
2684
|
},
|
|
2470
2685
|
{
|
|
2471
|
-
"path": "src/runtime/
|
|
2472
|
-
"sha256": "
|
|
2473
|
-
"size_bytes":
|
|
2686
|
+
"path": "src/runtime/execution-profile/resolve.ts",
|
|
2687
|
+
"sha256": "743efdacb4ce5675696de287af75a1dc974ed86fd5b6c07566571fe498e084e1",
|
|
2688
|
+
"size_bytes": 3051
|
|
2474
2689
|
},
|
|
2475
2690
|
{
|
|
2476
|
-
"path": "src/runtime/explain/
|
|
2477
|
-
"sha256": "
|
|
2478
|
-
"size_bytes":
|
|
2691
|
+
"path": "src/runtime/explain/index.ts",
|
|
2692
|
+
"sha256": "6d4129789b25f10d52040b65ac1b9ffc9a1138576a770f943f3407c672bf69d2",
|
|
2693
|
+
"size_bytes": 217
|
|
2479
2694
|
},
|
|
2480
2695
|
{
|
|
2481
|
-
"path": "src/runtime/explain/
|
|
2696
|
+
"path": "src/runtime/explain/model.ts",
|
|
2482
2697
|
"sha256": "df738f4c04a9ec00a4f6f0f5cdf01782b93f91d04045fba524e46c0cb1aebfc5",
|
|
2483
2698
|
"size_bytes": 1126
|
|
2484
2699
|
},
|
|
2700
|
+
{
|
|
2701
|
+
"path": "src/runtime/explain/resolve.ts",
|
|
2702
|
+
"sha256": "f75d1e2b1b5fd8a9619c1088f60ac795f333393673093aeee43b7ade55cb50be",
|
|
2703
|
+
"size_bytes": 2730
|
|
2704
|
+
},
|
|
2485
2705
|
{
|
|
2486
2706
|
"path": "src/runtime/harness/index.ts",
|
|
2487
2707
|
"sha256": "b49b1e68a08865fe4d09351781c622c501cedc3b8c3a9764706b5f769ec5e53a",
|
|
@@ -2539,58 +2759,53 @@
|
|
|
2539
2759
|
},
|
|
2540
2760
|
{
|
|
2541
2761
|
"path": "src/runtime/protocol/index.ts",
|
|
2542
|
-
"sha256": "
|
|
2762
|
+
"sha256": "7e34551db1b8ff2ce6d14a94d6f0345f9b2e6c35082cf5c0b0b3356d10564f59",
|
|
2543
2763
|
"size_bytes": 657
|
|
2544
2764
|
},
|
|
2545
2765
|
{
|
|
2546
|
-
"path": "src/runtime/protocol/
|
|
2547
|
-
"sha256": "13eea9f729faa73340b07238fb591ccce45d186865cbc9aa70bc4eb73cb8ea6a",
|
|
2548
|
-
"size_bytes": 1852
|
|
2549
|
-
},
|
|
2550
|
-
{
|
|
2551
|
-
"path": "src/runtime/protocol/types.ts",
|
|
2766
|
+
"path": "src/runtime/protocol/model.ts",
|
|
2552
2767
|
"sha256": "72126a1c785961cd1151a8ec7b75071778d034913ca8dcfa6fcf2ee505c98367",
|
|
2553
2768
|
"size_bytes": 1595
|
|
2554
2769
|
},
|
|
2555
2770
|
{
|
|
2556
|
-
"path": "src/runtime/
|
|
2557
|
-
"sha256": "
|
|
2558
|
-
"size_bytes":
|
|
2771
|
+
"path": "src/runtime/protocol/resolve.ts",
|
|
2772
|
+
"sha256": "624fabd768e8a323f054b978bff6ccad1e6085a38422e52452da651e1d1b4a14",
|
|
2773
|
+
"size_bytes": 1852
|
|
2559
2774
|
},
|
|
2560
2775
|
{
|
|
2561
|
-
"path": "src/runtime/
|
|
2562
|
-
"sha256": "
|
|
2563
|
-
"size_bytes":
|
|
2776
|
+
"path": "src/runtime/shared/repo-cli-version.ts",
|
|
2777
|
+
"sha256": "d043bd4e857185c4d9f70a7652b6d0cbbcb50d07ddde07a494e7ce1f8497a9aa",
|
|
2778
|
+
"size_bytes": 3605
|
|
2564
2779
|
},
|
|
2565
2780
|
{
|
|
2566
|
-
"path": "src/runtime/
|
|
2567
|
-
"sha256": "
|
|
2568
|
-
"size_bytes":
|
|
2781
|
+
"path": "src/runtime/shared/runtime-artifacts.ts",
|
|
2782
|
+
"sha256": "36ec5cbb157f3b1ec00467b77c351ee6727309ca6dd60feefbcc6b46d0805cd8",
|
|
2783
|
+
"size_bytes": 617
|
|
2569
2784
|
},
|
|
2570
2785
|
{
|
|
2571
|
-
"path": "src/shared/
|
|
2572
|
-
"sha256": "
|
|
2573
|
-
"size_bytes":
|
|
2786
|
+
"path": "src/runtime/shared/runtime-source.ts",
|
|
2787
|
+
"sha256": "206316c6cbf3ba1ac6c1a8038d7cbadd77a15f1650ca77189dfe621bc4d8f1d4",
|
|
2788
|
+
"size_bytes": 7308
|
|
2574
2789
|
},
|
|
2575
2790
|
{
|
|
2576
|
-
"path": "src/shared/
|
|
2577
|
-
"sha256": "
|
|
2578
|
-
"size_bytes":
|
|
2791
|
+
"path": "src/runtime/shared/version-compare.ts",
|
|
2792
|
+
"sha256": "b5641bcab785b677b9bfe9d86bb2a553c226ee7c93529b31bd425850a040ff15",
|
|
2793
|
+
"size_bytes": 1130
|
|
2579
2794
|
},
|
|
2580
2795
|
{
|
|
2581
|
-
"path": "src/
|
|
2582
|
-
"sha256": "
|
|
2583
|
-
"size_bytes":
|
|
2796
|
+
"path": "src/runtime/task-intake/index.ts",
|
|
2797
|
+
"sha256": "b78e01b2e26c395f8c0c42d1482048ac66aa3e49cff8545c3a298c079160eaa6",
|
|
2798
|
+
"size_bytes": 526
|
|
2584
2799
|
},
|
|
2585
2800
|
{
|
|
2586
|
-
"path": "src/
|
|
2587
|
-
"sha256": "
|
|
2588
|
-
"size_bytes":
|
|
2801
|
+
"path": "src/runtime/task-intake/resolve.ts",
|
|
2802
|
+
"sha256": "39d9767564f2873c58fb0d68c60f23af8e33ab112052b7543665766a7fc64382",
|
|
2803
|
+
"size_bytes": 13848
|
|
2589
2804
|
},
|
|
2590
2805
|
{
|
|
2591
|
-
"path": "src/
|
|
2592
|
-
"sha256": "
|
|
2593
|
-
"size_bytes":
|
|
2806
|
+
"path": "src/runtime/task-intake/types.ts",
|
|
2807
|
+
"sha256": "e97317f5b594e6771a9ee76af2c92654f0c7fe8e22a5f9747eb62fc5837c5933",
|
|
2808
|
+
"size_bytes": 3419
|
|
2594
2809
|
},
|
|
2595
2810
|
{
|
|
2596
2811
|
"path": "src/shared/env.ts",
|
|
@@ -2599,13 +2814,8 @@
|
|
|
2599
2814
|
},
|
|
2600
2815
|
{
|
|
2601
2816
|
"path": "src/shared/errors.ts",
|
|
2602
|
-
"sha256": "
|
|
2603
|
-
"size_bytes":
|
|
2604
|
-
},
|
|
2605
|
-
{
|
|
2606
|
-
"path": "src/shared/git-log.ts",
|
|
2607
|
-
"sha256": "dd6321a9ea88a319a902f4bb4b8cc09957f4713f3647865faf9b558e7aeac608",
|
|
2608
|
-
"size_bytes": 535
|
|
2817
|
+
"sha256": "d01cd4230c2799fce3018aacf51874af7bfd5a83a545511326e93b4e89293667",
|
|
2818
|
+
"size_bytes": 3621
|
|
2609
2819
|
},
|
|
2610
2820
|
{
|
|
2611
2821
|
"path": "src/shared/git-path.ts",
|
|
@@ -2627,40 +2837,15 @@
|
|
|
2627
2837
|
"sha256": "5fb86dfa71d8b1db11ff24e32cac43eb7ce2a3d7b0d7c084afb9aacd4160e2eb",
|
|
2628
2838
|
"size_bytes": 4218
|
|
2629
2839
|
},
|
|
2630
|
-
{
|
|
2631
|
-
"path": "src/shared/repo-cli-version.ts",
|
|
2632
|
-
"sha256": "8cc901a52a5b59955831e262bb5f2a616ee0021d323c33cdab2f8ba7d2f6dad4",
|
|
2633
|
-
"size_bytes": 3602
|
|
2634
|
-
},
|
|
2635
|
-
{
|
|
2636
|
-
"path": "src/shared/runtime-artifacts.ts",
|
|
2637
|
-
"sha256": "36ec5cbb157f3b1ec00467b77c351ee6727309ca6dd60feefbcc6b46d0805cd8",
|
|
2638
|
-
"size_bytes": 617
|
|
2639
|
-
},
|
|
2640
|
-
{
|
|
2641
|
-
"path": "src/shared/runtime-source.ts",
|
|
2642
|
-
"sha256": "e14449747e472158a645ed6ddeaa2af28234e5d2d0784e2d93a3a554ed438759",
|
|
2643
|
-
"size_bytes": 7305
|
|
2644
|
-
},
|
|
2645
2840
|
{
|
|
2646
2841
|
"path": "src/shared/strings.ts",
|
|
2647
2842
|
"sha256": "b266926e09aac485e48f559f81acce7cce89913426e322bc37ebf7d930a08961",
|
|
2648
2843
|
"size_bytes": 315
|
|
2649
2844
|
},
|
|
2650
2845
|
{
|
|
2651
|
-
"path": "src/shared/
|
|
2652
|
-
"sha256": "
|
|
2653
|
-
"size_bytes":
|
|
2654
|
-
},
|
|
2655
|
-
{
|
|
2656
|
-
"path": "src/shared/task-doc-state.ts",
|
|
2657
|
-
"sha256": "8ef9e439d2e9711d46894562fe8995bdc91293efb08151c43bf3c4e9f156b7dd",
|
|
2658
|
-
"size_bytes": 674
|
|
2659
|
-
},
|
|
2660
|
-
{
|
|
2661
|
-
"path": "src/shared/version-compare.ts",
|
|
2662
|
-
"sha256": "b5641bcab785b677b9bfe9d86bb2a553c226ee7c93529b31bd425850a040ff15",
|
|
2663
|
-
"size_bytes": 1130
|
|
2846
|
+
"path": "src/shared/trace-events.ts",
|
|
2847
|
+
"sha256": "fb19c42e93726ac06bbe4848ba18c5038183aa6c35c17ad35816c12ee7391274",
|
|
2848
|
+
"size_bytes": 866
|
|
2664
2849
|
},
|
|
2665
2850
|
{
|
|
2666
2851
|
"path": "src/shared/workflow-artifacts.ts",
|
|
@@ -2673,29 +2858,29 @@
|
|
|
2673
2858
|
"size_bytes": 916
|
|
2674
2859
|
},
|
|
2675
2860
|
{
|
|
2676
|
-
"path": "src/
|
|
2677
|
-
"sha256": "
|
|
2678
|
-
"size_bytes":
|
|
2861
|
+
"path": "src/task-doc/conflicts.ts",
|
|
2862
|
+
"sha256": "686a1fd3bf720e69f0939ce3aa6d6a7e6ca91ebeb6423f37f8c5313c9bc39780",
|
|
2863
|
+
"size_bytes": 1702
|
|
2679
2864
|
},
|
|
2680
2865
|
{
|
|
2681
|
-
"path": "src/
|
|
2682
|
-
"sha256": "
|
|
2683
|
-
"size_bytes":
|
|
2866
|
+
"path": "src/task-doc/state.ts",
|
|
2867
|
+
"sha256": "8ef9e439d2e9711d46894562fe8995bdc91293efb08151c43bf3c4e9f156b7dd",
|
|
2868
|
+
"size_bytes": 674
|
|
2684
2869
|
},
|
|
2685
2870
|
{
|
|
2686
|
-
"path": "src/
|
|
2687
|
-
"sha256": "
|
|
2688
|
-
"size_bytes":
|
|
2871
|
+
"path": "src/test-helpers/fs.ts",
|
|
2872
|
+
"sha256": "38fe84c724f86af169a78895ce3e733a2af53f3fff13b2a5f2ad74bab13ca765",
|
|
2873
|
+
"size_bytes": 505
|
|
2689
2874
|
},
|
|
2690
2875
|
{
|
|
2691
|
-
"path": "src/testing/
|
|
2692
|
-
"sha256": "
|
|
2693
|
-
"size_bytes":
|
|
2876
|
+
"path": "src/testing/index.ts",
|
|
2877
|
+
"sha256": "a3d9751abe6451a52d3cb4bb9dd8259274bfaf7b312f0152fec64c40a6780516",
|
|
2878
|
+
"size_bytes": 168
|
|
2694
2879
|
},
|
|
2695
2880
|
{
|
|
2696
|
-
"path": "src/testing/
|
|
2697
|
-
"sha256": "
|
|
2698
|
-
"size_bytes":
|
|
2881
|
+
"path": "src/testing/runtime-env.ts",
|
|
2882
|
+
"sha256": "bd56dd45adc51803a09345d15e503e200d9f8e7622e934a7f5e571ab5a5ed288",
|
|
2883
|
+
"size_bytes": 96
|
|
2699
2884
|
},
|
|
2700
2885
|
{
|
|
2701
2886
|
"path": "src/workflow-runtime/build.ts",
|