@jtf19/vibecoding-kit 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +84 -0
- package/CHANGELOG.md +28 -0
- package/CLAUDE.md +137 -0
- package/CODE_OF_CONDUCT.md +30 -0
- package/CONTRIBUTING.md +69 -0
- package/LICENSE +67 -0
- package/README.md +162 -0
- package/SECURITY.md +34 -0
- package/adapters/claude/install.md +70 -0
- package/adapters/claude/plugin.json +38 -0
- package/adapters/claude/settings.example.json +15 -0
- package/adapters/codex/hooks.example.json +15 -0
- package/adapters/codex/install.md +72 -0
- package/adapters/codex/plugin.json +58 -0
- package/adapters/cursor/hooks.example.json +17 -0
- package/adapters/cursor/install.md +72 -0
- package/adapters/cursor/plugin.json +42 -0
- package/adapters/opencode/install.md +95 -0
- package/adapters/opencode/plugin.js +56 -0
- package/adapters/opencode/plugin.json +58 -0
- package/adapters/pi/extension.ts +56 -0
- package/adapters/pi/install.md +95 -0
- package/adapters/pi/plugin.json +58 -0
- package/bin/vibe-cli-usage.mjs +43 -0
- package/bin/vibe.mjs +120 -0
- package/docs/acceptance-checklist.md +1226 -0
- package/docs/architecture-debt-burndown.md +537 -0
- package/docs/architecture.md +77 -0
- package/docs/ci-evidence-onboarding.md +143 -0
- package/docs/development.md +71 -0
- package/docs/evidence-authoring.md +188 -0
- package/docs/golden-path.md +179 -0
- package/docs/install-acceptance-checklist.md +90 -0
- package/docs/install-claude.md +41 -0
- package/docs/install-codex.md +41 -0
- package/docs/install-cursor.md +41 -0
- package/docs/install-experience-roadmap.md +394 -0
- package/docs/install.md +119 -0
- package/docs/maintainer-guide.md +197 -0
- package/docs/phase-1-implementation.md +848 -0
- package/docs/phase-2-roadmap.md +142 -0
- package/docs/quick-recipes.md +115 -0
- package/docs/readiness-interpretation.md +105 -0
- package/docs/readiness-troubleshooting.md +209 -0
- package/docs/release-check-reference.md +63 -0
- package/docs/release-guide.md +481 -0
- package/docs/release-notes.md +75 -0
- package/docs/runtime-contract.md +1010 -0
- package/docs/runtime-maintainer-validation.md +212 -0
- package/docs/runtime-roadmap.md +2265 -0
- package/docs/skill-authoring-guide.md +150 -0
- package/docs/submodule-guide.md +131 -0
- package/docs/team-adoption.md +113 -0
- package/docs/user-guide.md +108 -0
- package/docs/vibecoding-fork-analysis.md +398 -0
- package/docs/workflow-chaining.md +539 -0
- package/examples/ci/README.md +61 -0
- package/examples/ci/ci-evidence-input.example.json +56 -0
- package/examples/ci/generate-diff-coverage.mjs +90 -0
- package/examples/ci/generate-test-evidence.mjs +82 -0
- package/examples/ci/github-actions-readiness.yml +108 -0
- package/examples/claude-project/README.md +57 -0
- package/examples/codex-project/README.md +57 -0
- package/examples/cursor-project/README.md +57 -0
- package/examples/full-chain/README.md +63 -0
- package/examples/full-chain/architecture-design.md +128 -0
- package/examples/full-chain/commit-readiness.json +31 -0
- package/examples/full-chain/delivery-traceability.yaml +32 -0
- package/examples/full-chain/diff-coverage.json +73 -0
- package/examples/full-chain/evidence.json +20 -0
- package/examples/full-chain/implementation-plan.md +54 -0
- package/examples/full-chain/product-acceptance.md +86 -0
- package/examples/full-chain/product-discovery.md +84 -0
- package/examples/full-chain/product-spec.md +88 -0
- package/examples/full-chain/scenario-acceptance.yaml +32 -0
- package/examples/full-chain/test-evidence.json +29 -0
- package/examples/full-chain/ui-design-contract.md +87 -0
- package/examples/golden-path/README.md +84 -0
- package/examples/golden-path/diff-coverage.json +66 -0
- package/examples/golden-path/implementation-plan.md +62 -0
- package/examples/golden-path/product-spec.md +96 -0
- package/examples/golden-path/test-evidence.json +29 -0
- package/examples/runtime-fixtures/architecture-design.md +128 -0
- package/examples/runtime-fixtures/commit-readiness.json +31 -0
- package/examples/runtime-fixtures/delivery-traceability.yaml +32 -0
- package/examples/runtime-fixtures/diff-coverage.json +73 -0
- package/examples/runtime-fixtures/evidence.json +20 -0
- package/examples/runtime-fixtures/implementation-plan.md +54 -0
- package/examples/runtime-fixtures/negative/commit-readiness-boundary-escalated.json +27 -0
- package/examples/runtime-fixtures/negative/delivery-traceability-bad-ref.yaml +32 -0
- package/examples/runtime-fixtures/negative/diff-coverage-changed-file-without-task-ref.json +40 -0
- package/examples/runtime-fixtures/negative/diff-coverage-operation-mismatch.json +38 -0
- package/examples/runtime-fixtures/negative/diff-coverage-required-task-missing.json +24 -0
- package/examples/runtime-fixtures/negative/diff-coverage-unexpected-file.json +20 -0
- package/examples/runtime-fixtures/negative/test-evidence-missing-output-digest.json +23 -0
- package/examples/runtime-fixtures/negative/test-evidence-risky-task-missing.json +29 -0
- package/examples/runtime-fixtures/product-acceptance.md +86 -0
- package/examples/runtime-fixtures/product-discovery.md +84 -0
- package/examples/runtime-fixtures/product-spec.md +88 -0
- package/examples/runtime-fixtures/scenario-acceptance.yaml +32 -0
- package/examples/runtime-fixtures/test-evidence.json +29 -0
- package/examples/runtime-fixtures/ui-design-contract.md +87 -0
- package/hooks/post-tool-compact/README.md +47 -0
- package/hooks/session-start/README.md +112 -0
- package/hooks/session-start/session-start-state-boundary-contract.mjs +161 -0
- package/hooks/session-start/session-start.md +29 -0
- package/hooks/session-start/session-start.mjs +49 -0
- package/hooks/workflow-handoff/README.md +44 -0
- package/hooks/workflow-handoff/workflow-handoff.md +11 -0
- package/package.json +72 -0
- package/skills/using-vibecoding/SKILL.md +396 -0
- package/skills/vibe-brainstorming/SKILL.md +98 -0
- package/skills/vibe-context-compact/SKILL.md +95 -0
- package/skills/vibe-debugging/SKILL.md +87 -0
- package/skills/vibe-dispatching-parallel-work/SKILL.md +144 -0
- package/skills/vibe-executing-plans/SKILL.md +114 -0
- package/skills/vibe-finishing-a-development-branch/SKILL.md +110 -0
- package/skills/vibe-implementation/SKILL.md +84 -0
- package/skills/vibe-planning/SKILL.md +102 -0
- package/skills/vibe-product-acceptance/SKILL.md +106 -0
- package/skills/vibe-product-discovery/SKILL.md +107 -0
- package/skills/vibe-product-spec/SKILL.md +105 -0
- package/skills/vibe-receiving-code-review/SKILL.md +110 -0
- package/skills/vibe-requesting-code-review/SKILL.md +106 -0
- package/skills/vibe-review/SKILL.md +106 -0
- package/skills/vibe-subagent-driven-development/SKILL.md +198 -0
- package/skills/vibe-systematic-debugging/SKILL.md +106 -0
- package/skills/vibe-test-driven-development/SKILL.md +112 -0
- package/skills/vibe-ui-design/SKILL.md +107 -0
- package/skills/vibe-verification/SKILL.md +84 -0
- package/skills/vibe-verification-before-completion/SKILL.md +170 -0
- package/skills/vibe-workspace-isolation/SKILL.md +158 -0
- package/skills/vibe-writing-plans/SKILL.md +137 -0
- package/skills/vibe-writing-skills/SKILL.md +118 -0
- package/templates/AGENTS.md +88 -0
- package/templates/CLAUDE.md +88 -0
- package/templates/VIBE-CODING.md +157 -0
- package/templates/architecture-design.md +139 -0
- package/templates/delivery-traceability.yaml +52 -0
- package/templates/evidence/README.md +117 -0
- package/templates/evidence/diff-coverage.json +34 -0
- package/templates/evidence/test-evidence.json +29 -0
- package/templates/implementation-plan.md +73 -0
- package/templates/product-acceptance.md +84 -0
- package/templates/product-discovery.md +81 -0
- package/templates/product-spec.md +84 -0
- package/templates/scenario-acceptance.yaml +37 -0
- package/templates/ui-design-contract.md +86 -0
- package/tools/vibe-architecture-check/README.md +66 -0
- package/tools/vibe-architecture-check/index.mjs +691 -0
- package/tools/vibe-compact/README.md +65 -0
- package/tools/vibe-compact/compact-contract.mjs +63 -0
- package/tools/vibe-compact/index.mjs +111 -0
- package/tools/vibe-doctor/README.md +200 -0
- package/tools/vibe-doctor/index.mjs +1721 -0
- package/tools/vibe-init/README.md +231 -0
- package/tools/vibe-init/index.mjs +369 -0
- package/tools/vibe-init/init-cli-args.mjs +100 -0
- package/tools/vibe-init/init-entry-merge-model.mjs +33 -0
- package/tools/vibe-init/init-install-manifest-model.mjs +137 -0
- package/tools/vibe-init/init-installed-agent-experience-contract.mjs +172 -0
- package/tools/vibe-init/init-platform-model.mjs +11 -0
- package/tools/vibe-init/init-presentation.mjs +149 -0
- package/tools/vibe-lifecycle/README.md +37 -0
- package/tools/vibe-lifecycle/index.mjs +365 -0
- package/tools/vibe-lifecycle/lifecycle-cli-args.mjs +104 -0
- package/tools/vibe-lifecycle/lifecycle-summary-model.mjs +67 -0
- package/tools/vibe-lifecycle/lifecycle-uninstall-plan-model.mjs +11 -0
- package/tools/vibe-plugin-pack/README.md +105 -0
- package/tools/vibe-plugin-pack/index.mjs +302 -0
- package/tools/vibe-plugin-pack/plugin-pack-cli.mjs +39 -0
- package/tools/vibe-plugin-pack/plugin-pack-manifest.mjs +37 -0
- package/tools/vibe-profile/index.mjs +212 -0
- package/tools/vibe-release-check/README.md +123 -0
- package/tools/vibe-release-check/command-manifest/release-check-base-commands.mjs +23 -0
- package/tools/vibe-release-check/command-manifest/release-check-closeout-commands.mjs +16 -0
- package/tools/vibe-release-check/command-manifest/release-check-command-metadata.mjs +32 -0
- package/tools/vibe-release-check/command-manifest/release-check-completion-commands.mjs +41 -0
- package/tools/vibe-release-check/command-manifest/release-check-full-chain-commands.mjs +12 -0
- package/tools/vibe-release-check/command-manifest/release-check-golden-path-commands.mjs +12 -0
- package/tools/vibe-release-check/command-manifest/release-check-install-commands.mjs +26 -0
- package/tools/vibe-release-check/command-manifest/release-check-learning-smoke-commands.mjs +21 -0
- package/tools/vibe-release-check/command-manifest/release-check-methodology-commands.mjs +27 -0
- package/tools/vibe-release-check/command-manifest/release-check-runtime-smoke-commands.mjs +116 -0
- package/tools/vibe-release-check/command-manifest/release-check-token-smoke-commands.mjs +21 -0
- package/tools/vibe-release-check/index.mjs +223 -0
- package/tools/vibe-release-check/release-check-behavior-smoke.mjs +177 -0
- package/tools/vibe-release-check/release-check-cli.mjs +37 -0
- package/tools/vibe-release-check/release-check-command-manifest.mjs +49 -0
- package/tools/vibe-release-check/release-check-completion-fixtures.mjs +151 -0
- package/tools/vibe-release-check/release-check-completion-suite.mjs +110 -0
- package/tools/vibe-release-check/release-check-dispatch.mjs +116 -0
- package/tools/vibe-release-check/release-check-full-chain-suite.mjs +55 -0
- package/tools/vibe-release-check/release-check-golden-path-suite.mjs +85 -0
- package/tools/vibe-release-check/release-check-install-marker-specs.mjs +133 -0
- package/tools/vibe-release-check/release-check-install-suite.mjs +112 -0
- package/tools/vibe-release-check/release-check-json-assertion-helpers.mjs +157 -0
- package/tools/vibe-release-check/release-check-json-markers.mjs +33 -0
- package/tools/vibe-release-check/release-check-learning-fixture-specs.mjs +199 -0
- package/tools/vibe-release-check/release-check-learning-suite.mjs +249 -0
- package/tools/vibe-release-check/release-check-live-behavior-smoke-fixture.mjs +406 -0
- package/tools/vibe-release-check/release-check-methodology-suite.mjs +108 -0
- package/tools/vibe-release-check/release-check-package-boundary-smoke.mjs +111 -0
- package/tools/vibe-release-check/release-check-platform-transcript-smoke-fixture.mjs +150 -0
- package/tools/vibe-release-check/release-check-readonly-marker-data.mjs +1 -0
- package/tools/vibe-release-check/release-check-readonly-marker-smoke-specs.mjs +170 -0
- package/tools/vibe-release-check/release-check-run-summary.mjs +67 -0
- package/tools/vibe-release-check/release-check-runtime-automation-fixtures.mjs +1 -0
- package/tools/vibe-release-check/release-check-runtime-automation-governance-reply-trace-smoke-helpers.mjs +224 -0
- package/tools/vibe-release-check/release-check-runtime-automation-governance-smoke-specs.mjs +215 -0
- package/tools/vibe-release-check/release-check-runtime-automation-governance-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-automation-methodology-smoke-specs.mjs +157 -0
- package/tools/vibe-release-check/release-check-runtime-automation-methodology-suite.mjs +130 -0
- package/tools/vibe-release-check/release-check-runtime-automation-platform-smoke-helpers.mjs +306 -0
- package/tools/vibe-release-check/release-check-runtime-automation-platform-suite.mjs +30 -0
- package/tools/vibe-release-check/release-check-runtime-automation-smoke-fixtures.mjs +53 -0
- package/tools/vibe-release-check/release-check-runtime-automation-source-candidate-smoke-helpers.mjs +506 -0
- package/tools/vibe-release-check/release-check-runtime-automation-source-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-automation-subagents-lifecycle-smoke-helpers.mjs +305 -0
- package/tools/vibe-release-check/release-check-runtime-automation-subagents-suite.mjs +25 -0
- package/tools/vibe-release-check/release-check-runtime-automation-suite.mjs +25 -0
- package/tools/vibe-release-check/release-check-runtime-daemon-bounded-run-smoke-helpers.mjs +243 -0
- package/tools/vibe-release-check/release-check-runtime-daemon-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-dispatch-fixtures.mjs +129 -0
- package/tools/vibe-release-check/release-check-runtime-dispatch-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-execution-approval-smoke-helpers.mjs +274 -0
- package/tools/vibe-release-check/release-check-runtime-execution-approval-suite.mjs +5 -0
- package/tools/vibe-release-check/release-check-runtime-execution-base-suite.mjs +388 -0
- package/tools/vibe-release-check/release-check-runtime-execution-recovery-suite.mjs +412 -0
- package/tools/vibe-release-check/release-check-runtime-execution-scheduler-suite.mjs +261 -0
- package/tools/vibe-release-check/release-check-runtime-execution-suite.mjs +11 -0
- package/tools/vibe-release-check/release-check-runtime-flow-smoke.mjs +347 -0
- package/tools/vibe-release-check/release-check-runtime-handoff-fixture-specs.mjs +211 -0
- package/tools/vibe-release-check/release-check-runtime-handoff-fixtures.mjs +11 -0
- package/tools/vibe-release-check/release-check-runtime-handoff-smoke-specs.mjs +86 -0
- package/tools/vibe-release-check/release-check-runtime-handoff-suite.mjs +316 -0
- package/tools/vibe-release-check/release-check-runtime-ledger-fixture-specs.mjs +9 -0
- package/tools/vibe-release-check/release-check-runtime-ledger-fixtures.mjs +51 -0
- package/tools/vibe-release-check/release-check-runtime-ledger-suite.mjs +24 -0
- package/tools/vibe-release-check/release-check-runtime-scheduler-fixture-specs.mjs +129 -0
- package/tools/vibe-release-check/release-check-runtime-scheduler-fixtures.mjs +10 -0
- package/tools/vibe-release-check/release-check-runtime-sdd-suite.mjs +535 -0
- package/tools/vibe-release-check/release-check-runtime-smoke-harness.mjs +140 -0
- package/tools/vibe-release-check/release-check-runtime-surface-expectations.mjs +106 -0
- package/tools/vibe-release-check/release-check-runtime-surface-smoke.mjs +112 -0
- package/tools/vibe-release-check/release-check-runtime-task-artifact-suite.mjs +105 -0
- package/tools/vibe-release-check/release-check-runtime-task-fixture-specs.mjs +270 -0
- package/tools/vibe-release-check/release-check-runtime-task-fixtures.mjs +19 -0
- package/tools/vibe-release-check/release-check-runtime.mjs +53 -0
- package/tools/vibe-release-check/release-check-stage103-118-fixtures.mjs +214 -0
- package/tools/vibe-release-check/release-check-stage103-118-smoke-specs.mjs +97 -0
- package/tools/vibe-release-check/release-check-stage103-118-smoke.mjs +861 -0
- package/tools/vibe-release-check/release-check-stage11-smoke.mjs +66 -0
- package/tools/vibe-release-check/release-check-stage119-120-fixture-specs.mjs +119 -0
- package/tools/vibe-release-check/release-check-stage119-120-smoke.mjs +325 -0
- package/tools/vibe-release-check/release-check-stage12-smoke.mjs +59 -0
- package/tools/vibe-release-check/release-check-stage121-136-fixture-specs.mjs +26 -0
- package/tools/vibe-release-check/release-check-stage121-136-fixtures.mjs +591 -0
- package/tools/vibe-release-check/release-check-stage121-136-smoke.mjs +917 -0
- package/tools/vibe-release-check/release-check-stage13-smoke.mjs +78 -0
- package/tools/vibe-release-check/release-check-stage137-140-smoke.mjs +534 -0
- package/tools/vibe-release-check/release-check-stage14-smoke.mjs +101 -0
- package/tools/vibe-release-check/release-check-stage141-148-smoke.mjs +1143 -0
- package/tools/vibe-release-check/release-check-stage15-smoke.mjs +132 -0
- package/tools/vibe-release-check/release-check-stage50-53-smoke.mjs +429 -0
- package/tools/vibe-release-check/release-check-subagent-adapter-bridge-smoke.mjs +162 -0
- package/tools/vibe-release-check/release-check-suite-plan-smoke.mjs +86 -0
- package/tools/vibe-release-check/release-check-suites.mjs +164 -0
- package/tools/vibe-release-check/release-check-test-run-smoke.mjs +59 -0
- package/tools/vibe-release-check/release-check-timing.mjs +98 -0
- package/tools/vibe-release-check/release-check-token-suite.mjs +260 -0
- package/tools/vibe-release-check/release-check-workflow-entry-suite.mjs +195 -0
- package/tools/vibe-release-check/release-check-workflow-governance-fixtures.mjs +138 -0
- package/tools/vibe-release-check/release-check-workflow-governance-smoke-suite.mjs +768 -0
- package/tools/vibe-release-check/release-check-workflow-ux-smoke.mjs +456 -0
- package/tools/vibe-runtime/README.md +2637 -0
- package/tools/vibe-runtime/index.mjs +3117 -0
- package/tools/vibe-runtime/runtime-adapter-bootstrap-matrix.mjs +264 -0
- package/tools/vibe-runtime/runtime-adapter-entry-acceptance.mjs +310 -0
- package/tools/vibe-runtime/runtime-adapter-packaging-consistency-command.mjs +131 -0
- package/tools/vibe-runtime/runtime-adapter-packaging-consistency.mjs +253 -0
- package/tools/vibe-runtime/runtime-advice-hub-model.mjs +175 -0
- package/tools/vibe-runtime/runtime-agent-session-start-contract.mjs +138 -0
- package/tools/vibe-runtime/runtime-artifact-ref-validation.mjs +281 -0
- package/tools/vibe-runtime/runtime-automatic-verification-gate-contract.mjs +134 -0
- package/tools/vibe-runtime/runtime-automation-boundary-text.mjs +7 -0
- package/tools/vibe-runtime/runtime-automation-command.mjs +367 -0
- package/tools/vibe-runtime/runtime-automation-plan-model.mjs +239 -0
- package/tools/vibe-runtime/runtime-automation-policy-model.mjs +175 -0
- package/tools/vibe-runtime/runtime-automation-readiness.mjs +347 -0
- package/tools/vibe-runtime/runtime-autopilot-lab-profile-contract.mjs +223 -0
- package/tools/vibe-runtime/runtime-behavioral-evaluation-contract.mjs +529 -0
- package/tools/vibe-runtime/runtime-behavioral-negative-gate-matrix.mjs +274 -0
- package/tools/vibe-runtime/runtime-bounded-attempt-policy-model.mjs +13 -0
- package/tools/vibe-runtime/runtime-bounded-foreground-command-executor-contract.mjs +288 -0
- package/tools/vibe-runtime/runtime-capability-registry.mjs +250 -0
- package/tools/vibe-runtime/runtime-cli-args.mjs +550 -0
- package/tools/vibe-runtime/runtime-cli-command-specs.mjs +63 -0
- package/tools/vibe-runtime/runtime-cli-dispatch.mjs +21 -0
- package/tools/vibe-runtime/runtime-cli-evidence-option-specs.mjs +193 -0
- package/tools/vibe-runtime/runtime-cli-evidence-options.mjs +28 -0
- package/tools/vibe-runtime/runtime-cli-from-options.mjs +222 -0
- package/tools/vibe-runtime/runtime-cli-low-risk-option-specs.mjs +128 -0
- package/tools/vibe-runtime/runtime-cli-main.mjs +32 -0
- package/tools/vibe-runtime/runtime-cli-option-default-families.mjs +454 -0
- package/tools/vibe-runtime/runtime-cli-option-defaults.mjs +33 -0
- package/tools/vibe-runtime/runtime-cli-option-handlers.mjs +82 -0
- package/tools/vibe-runtime/runtime-cli-usage.mjs +316 -0
- package/tools/vibe-runtime/runtime-cli-value-options.mjs +74 -0
- package/tools/vibe-runtime/runtime-close-loop-dashboard.mjs +283 -0
- package/tools/vibe-runtime/runtime-closeout-parity-contract.mjs +214 -0
- package/tools/vibe-runtime/runtime-command-container.mjs +26 -0
- package/tools/vibe-runtime/runtime-command-surface-registry.mjs +383 -0
- package/tools/vibe-runtime/runtime-command-wrapper-deps.mjs +13 -0
- package/tools/vibe-runtime/runtime-commit-readiness-envelope.mjs +281 -0
- package/tools/vibe-runtime/runtime-completion-boundary-text.mjs +7 -0
- package/tools/vibe-runtime/runtime-completion-bundle-contract.mjs +71 -0
- package/tools/vibe-runtime/runtime-completion-chain-assembly.mjs +48 -0
- package/tools/vibe-runtime/runtime-completion-command.mjs +50 -0
- package/tools/vibe-runtime/runtime-completion-evidence-bundle.mjs +269 -0
- package/tools/vibe-runtime/runtime-completion-evidence-descriptors.mjs +156 -0
- package/tools/vibe-runtime/runtime-completion-local-evidence-gates.mjs +164 -0
- package/tools/vibe-runtime/runtime-completion-presentation.mjs +71 -0
- package/tools/vibe-runtime/runtime-completion-readiness-summary.mjs +159 -0
- package/tools/vibe-runtime/runtime-confirmed-one-shot-plan.mjs +300 -0
- package/tools/vibe-runtime/runtime-context-budget-entry-defaults-command.mjs +77 -0
- package/tools/vibe-runtime/runtime-context-budget-entry-defaults.mjs +341 -0
- package/tools/vibe-runtime/runtime-contract-marker-registry.mjs +13 -0
- package/tools/vibe-runtime/runtime-contributor-guardrail-command.mjs +78 -0
- package/tools/vibe-runtime/runtime-contributor-guardrail-evidence.mjs +319 -0
- package/tools/vibe-runtime/runtime-control-plane-command.mjs +237 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-artifacts.mjs +123 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-boundary-model.mjs +75 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-cases.mjs +547 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-command.mjs +527 -0
- package/tools/vibe-runtime/runtime-control-plane-evals-report-validation.mjs +209 -0
- package/tools/vibe-runtime/runtime-control-plane-planner-artifacts.mjs +457 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-command.mjs +563 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-input.mjs +99 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-listing.mjs +48 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-presentation.mjs +246 -0
- package/tools/vibe-runtime/runtime-control-plane-planning-validation.mjs +529 -0
- package/tools/vibe-runtime/runtime-control-plane-readonly-command.mjs +537 -0
- package/tools/vibe-runtime/runtime-control-plane-readonly-deps.mjs +146 -0
- package/tools/vibe-runtime/runtime-control-plane-release-evidence.mjs +525 -0
- package/tools/vibe-runtime/runtime-control-plane-release-gates.mjs +369 -0
- package/tools/vibe-runtime/runtime-control-plane-router-planning-model.mjs +152 -0
- package/tools/vibe-runtime/runtime-control-plane-routing-artifacts.mjs +588 -0
- package/tools/vibe-runtime/runtime-controlled-change-delivery-contract.mjs +165 -0
- package/tools/vibe-runtime/runtime-controlled-execution-gate-contract.mjs +141 -0
- package/tools/vibe-runtime/runtime-controlled-long-running-automation-contract.mjs +184 -0
- package/tools/vibe-runtime/runtime-controlled-subagent-orchestration-contract.mjs +169 -0
- package/tools/vibe-runtime/runtime-daemon-command.mjs +166 -0
- package/tools/vibe-runtime/runtime-daemon-state-lifecycle-model.mjs +359 -0
- package/tools/vibe-runtime/runtime-delivery-methodology-command.mjs +17 -0
- package/tools/vibe-runtime/runtime-delivery-methodology-gates.mjs +277 -0
- package/tools/vibe-runtime/runtime-diff-coverage-envelope.mjs +301 -0
- package/tools/vibe-runtime/runtime-dispatch-command.mjs +484 -0
- package/tools/vibe-runtime/runtime-dispatch-readonly-artifacts.mjs +406 -0
- package/tools/vibe-runtime/runtime-dispatch-state-lifecycle-model.mjs +199 -0
- package/tools/vibe-runtime/runtime-durable-state-recovery-contract.mjs +172 -0
- package/tools/vibe-runtime/runtime-entry-advice-model.mjs +201 -0
- package/tools/vibe-runtime/runtime-entry-deps-builder.mjs +54 -0
- package/tools/vibe-runtime/runtime-entry-presentation.mjs +82 -0
- package/tools/vibe-runtime/runtime-entry-summary-model.mjs +343 -0
- package/tools/vibe-runtime/runtime-entry-trigger-discipline.mjs +341 -0
- package/tools/vibe-runtime/runtime-entry-trigger-tightening-command.mjs +79 -0
- package/tools/vibe-runtime/runtime-entry-trigger-tightening.mjs +357 -0
- package/tools/vibe-runtime/runtime-eval-catalog-model.mjs +101 -0
- package/tools/vibe-runtime/runtime-eval-transcript-fixtures.mjs +218 -0
- package/tools/vibe-runtime/runtime-evidence-intake-envelope.mjs +278 -0
- package/tools/vibe-runtime/runtime-evidence-repair-model.mjs +180 -0
- package/tools/vibe-runtime/runtime-executable-plan-contract.mjs +428 -0
- package/tools/vibe-runtime/runtime-execution-approval-lifecycle-models.mjs +278 -0
- package/tools/vibe-runtime/runtime-execution-candidate-approval-artifacts.mjs +227 -0
- package/tools/vibe-runtime/runtime-execution-command.mjs +544 -0
- package/tools/vibe-runtime/runtime-execution-enabled-bridge-model.mjs +113 -0
- package/tools/vibe-runtime/runtime-execution-enabled-closeout-boundary.mjs +89 -0
- package/tools/vibe-runtime/runtime-execution-enabled-preflight-model.mjs +185 -0
- package/tools/vibe-runtime/runtime-execution-enabled-profile-contract.mjs +127 -0
- package/tools/vibe-runtime/runtime-execution-enabled-run-envelope.mjs +153 -0
- package/tools/vibe-runtime/runtime-execution-evidence-binder.mjs +537 -0
- package/tools/vibe-runtime/runtime-execution-plan-artifacts.mjs +136 -0
- package/tools/vibe-runtime/runtime-execution-policy-artifacts.mjs +377 -0
- package/tools/vibe-runtime/runtime-execution-presentation.mjs +174 -0
- package/tools/vibe-runtime/runtime-execution-readonly-artifacts.mjs +228 -0
- package/tools/vibe-runtime/runtime-execution-run-preflight-artifacts.mjs +265 -0
- package/tools/vibe-runtime/runtime-execution-safety-artifacts.mjs +131 -0
- package/tools/vibe-runtime/runtime-execution-state-write-lifecycle-model.mjs +99 -0
- package/tools/vibe-runtime/runtime-experience-friction-matrix.mjs +395 -0
- package/tools/vibe-runtime/runtime-experience-learning-pattern.mjs +354 -0
- package/tools/vibe-runtime/runtime-experience-regression-dashboard.mjs +398 -0
- package/tools/vibe-runtime/runtime-experience-upgrade-command.mjs +92 -0
- package/tools/vibe-runtime/runtime-experience-upgrade-prioritizer.mjs +451 -0
- package/tools/vibe-runtime/runtime-foreground-worker-plan.mjs +275 -0
- package/tools/vibe-runtime/runtime-git-diff-read-model.mjs +322 -0
- package/tools/vibe-runtime/runtime-governance-attestation.mjs +304 -0
- package/tools/vibe-runtime/runtime-governance-command.mjs +609 -0
- package/tools/vibe-runtime/runtime-governance-convergence-reports.mjs +601 -0
- package/tools/vibe-runtime/runtime-governance-pr-models.mjs +551 -0
- package/tools/vibe-runtime/runtime-governance-presentation.mjs +67 -0
- package/tools/vibe-runtime/runtime-governance-route-model.mjs +194 -0
- package/tools/vibe-runtime/runtime-governance-surface-reports.mjs +495 -0
- package/tools/vibe-runtime/runtime-hooks-boundary-model.mjs +356 -0
- package/tools/vibe-runtime/runtime-hooks-command.mjs +286 -0
- package/tools/vibe-runtime/runtime-human-completion-evidence-model.mjs +220 -0
- package/tools/vibe-runtime/runtime-human-friendly-aliases.mjs +250 -0
- package/tools/vibe-runtime/runtime-implementation-methodology-command.mjs +17 -0
- package/tools/vibe-runtime/runtime-implementation-methodology-gates.mjs +164 -0
- package/tools/vibe-runtime/runtime-implementation-task-registry.mjs +334 -0
- package/tools/vibe-runtime/runtime-install-experience-command.mjs +120 -0
- package/tools/vibe-runtime/runtime-install-experience-score.mjs +334 -0
- package/tools/vibe-runtime/runtime-installed-multiround-ux-acceptance.mjs +149 -0
- package/tools/vibe-runtime/runtime-interaction-command-domain-registry.mjs +46 -0
- package/tools/vibe-runtime/runtime-interaction-command.mjs +648 -0
- package/tools/vibe-runtime/runtime-interaction-completion-command.mjs +220 -0
- package/tools/vibe-runtime/runtime-interaction-entry-command.mjs +130 -0
- package/tools/vibe-runtime/runtime-interaction-workflow-envelopes.mjs +412 -0
- package/tools/vibe-runtime/runtime-learning-advice-model.mjs +157 -0
- package/tools/vibe-runtime/runtime-learning-artifact-model.mjs +509 -0
- package/tools/vibe-runtime/runtime-learning-audit-model.mjs +106 -0
- package/tools/vibe-runtime/runtime-learning-interaction-command.mjs +220 -0
- package/tools/vibe-runtime/runtime-learning-observation-model.mjs +124 -0
- package/tools/vibe-runtime/runtime-learning-presentation.mjs +84 -0
- package/tools/vibe-runtime/runtime-learning-run-preview-model.mjs +184 -0
- package/tools/vibe-runtime/runtime-lease-command.mjs +95 -0
- package/tools/vibe-runtime/runtime-lease-state-lifecycle-model.mjs +247 -0
- package/tools/vibe-runtime/runtime-list-presentation.mjs +7 -0
- package/tools/vibe-runtime/runtime-live-behavior-transcript-model.mjs +164 -0
- package/tools/vibe-runtime/runtime-local-behavior-eval-contracts-command.mjs +76 -0
- package/tools/vibe-runtime/runtime-local-behavior-eval-contracts.mjs +382 -0
- package/tools/vibe-runtime/runtime-local-commit-automation-gate.mjs +254 -0
- package/tools/vibe-runtime/runtime-local-json-input.mjs +32 -0
- package/tools/vibe-runtime/runtime-methodology-coverage-map.mjs +398 -0
- package/tools/vibe-runtime/runtime-methodology-coverage-marker-specs.mjs +61 -0
- package/tools/vibe-runtime/runtime-methodology-coverage-presentation.mjs +26 -0
- package/tools/vibe-runtime/runtime-methodology-gate-model.mjs +154 -0
- package/tools/vibe-runtime/runtime-methodology-gate-output-envelope.mjs +4 -0
- package/tools/vibe-runtime/runtime-methodology-interaction-command.mjs +147 -0
- package/tools/vibe-runtime/runtime-methodology-presentation.mjs +76 -0
- package/tools/vibe-runtime/runtime-methodology-route-model.mjs +93 -0
- package/tools/vibe-runtime/runtime-next-action-console.mjs +388 -0
- package/tools/vibe-runtime/runtime-next-action-evidence-prompts-command.mjs +84 -0
- package/tools/vibe-runtime/runtime-next-action-evidence-prompts.mjs +327 -0
- package/tools/vibe-runtime/runtime-observability-command.mjs +96 -0
- package/tools/vibe-runtime/runtime-observability-presentation.mjs +30 -0
- package/tools/vibe-runtime/runtime-observability-readiness-model.mjs +204 -0
- package/tools/vibe-runtime/runtime-patch-queue-contract.mjs +151 -0
- package/tools/vibe-runtime/runtime-plan-action-manifest.mjs +334 -0
- package/tools/vibe-runtime/runtime-planner-route-model.mjs +75 -0
- package/tools/vibe-runtime/runtime-platform-acceptance-command.mjs +216 -0
- package/tools/vibe-runtime/runtime-platform-capability-artifacts.mjs +156 -0
- package/tools/vibe-runtime/runtime-platform-capability-model.mjs +105 -0
- package/tools/vibe-runtime/runtime-platform-command.mjs +329 -0
- package/tools/vibe-runtime/runtime-platform-presentation.mjs +78 -0
- package/tools/vibe-runtime/runtime-platform-session-artifacts.mjs +857 -0
- package/tools/vibe-runtime/runtime-platform-transcript-example-pack.mjs +293 -0
- package/tools/vibe-runtime/runtime-platform-transcript-intake-model.mjs +247 -0
- package/tools/vibe-runtime/runtime-platform-transcript-replay-model.mjs +371 -0
- package/tools/vibe-runtime/runtime-policy-catalog.mjs +54 -0
- package/tools/vibe-runtime/runtime-product-methodology-command.mjs +17 -0
- package/tools/vibe-runtime/runtime-product-methodology-gates.mjs +316 -0
- package/tools/vibe-runtime/runtime-progressive-entry-ux.mjs +237 -0
- package/tools/vibe-runtime/runtime-queue-command.mjs +98 -0
- package/tools/vibe-runtime/runtime-queue-state-lifecycle-model.mjs +318 -0
- package/tools/vibe-runtime/runtime-readiness-gate-split.mjs +196 -0
- package/tools/vibe-runtime/runtime-readonly-local-json-output-envelope.mjs +24 -0
- package/tools/vibe-runtime/runtime-recovery-classification-models.mjs +412 -0
- package/tools/vibe-runtime/runtime-recovery-command.mjs +107 -0
- package/tools/vibe-runtime/runtime-recovery-presentation.mjs +65 -0
- package/tools/vibe-runtime/runtime-recovery-state-lifecycle-model.mjs +419 -0
- package/tools/vibe-runtime/runtime-release-command-deps.mjs +4 -0
- package/tools/vibe-runtime/runtime-release-command.mjs +225 -0
- package/tools/vibe-runtime/runtime-release-state-lifecycle-model.mjs +48 -0
- package/tools/vibe-runtime/runtime-reply-artifact-lifecycle-model.mjs +84 -0
- package/tools/vibe-runtime/runtime-reply-command.mjs +488 -0
- package/tools/vibe-runtime/runtime-retry-command.mjs +223 -0
- package/tools/vibe-runtime/runtime-retry-run-gate-model.mjs +151 -0
- package/tools/vibe-runtime/runtime-review-envelope.mjs +449 -0
- package/tools/vibe-runtime/runtime-review-feedback-gate.mjs +160 -0
- package/tools/vibe-runtime/runtime-runbook-executor-preview-contract.mjs +361 -0
- package/tools/vibe-runtime/runtime-scheduler-command.mjs +8 -0
- package/tools/vibe-runtime/runtime-scheduler-risk-artifacts.mjs +775 -0
- package/tools/vibe-runtime/runtime-scheduler-state-lifecycle-model.mjs +53 -0
- package/tools/vibe-runtime/runtime-sdd-consumption-command.mjs +386 -0
- package/tools/vibe-runtime/runtime-sdd-evidence-chain-model.mjs +200 -0
- package/tools/vibe-runtime/runtime-sdd-handoff-chain-model.mjs +168 -0
- package/tools/vibe-runtime/runtime-sdd-implementer-artifact-model.mjs +90 -0
- package/tools/vibe-runtime/runtime-sdd-loop-command.mjs +659 -0
- package/tools/vibe-runtime/runtime-sdd-plan-preflight-model.mjs +121 -0
- package/tools/vibe-runtime/runtime-sdd-review-package-command.mjs +197 -0
- package/tools/vibe-runtime/runtime-sdd-review-package-model.mjs +183 -0
- package/tools/vibe-runtime/runtime-sdd-task-brief-model.mjs +144 -0
- package/tools/vibe-runtime/runtime-self-test-gate-profile.mjs +225 -0
- package/tools/vibe-runtime/runtime-sequential-stage-runbook.mjs +406 -0
- package/tools/vibe-runtime/runtime-session-checkpoint-model.mjs +217 -0
- package/tools/vibe-runtime/runtime-session-skill-command.mjs +241 -0
- package/tools/vibe-runtime/runtime-session-start-example-command.mjs +122 -0
- package/tools/vibe-runtime/runtime-session-start-example-pack.mjs +290 -0
- package/tools/vibe-runtime/runtime-session-start-shape-acceptance.mjs +344 -0
- package/tools/vibe-runtime/runtime-skill-contract-schema.mjs +221 -0
- package/tools/vibe-runtime/runtime-skill-route-registry.mjs +47 -0
- package/tools/vibe-runtime/runtime-skill-runtime-traceability-map.mjs +268 -0
- package/tools/vibe-runtime/runtime-source-merge-apply-boundary-model.mjs +130 -0
- package/tools/vibe-runtime/runtime-source-merge-artifacts.mjs +920 -0
- package/tools/vibe-runtime/runtime-source-merge-command.mjs +160 -0
- package/tools/vibe-runtime/runtime-source-merge-entry-command.mjs +153 -0
- package/tools/vibe-runtime/runtime-source-patch-plan-model.mjs +119 -0
- package/tools/vibe-runtime/runtime-stage-scriptlet.mjs +430 -0
- package/tools/vibe-runtime/runtime-staged-commit-readiness.mjs +469 -0
- package/tools/vibe-runtime/runtime-state-directory-model.mjs +7 -0
- package/tools/vibe-runtime/runtime-state-io.mjs +41 -0
- package/tools/vibe-runtime/runtime-state-paths.mjs +231 -0
- package/tools/vibe-runtime/runtime-state-presence-model.mjs +6 -0
- package/tools/vibe-runtime/runtime-state-risk-paths.mjs +70 -0
- package/tools/vibe-runtime/runtime-subagent-adapter-dispatch-command.mjs +266 -0
- package/tools/vibe-runtime/runtime-subagent-boundary-contracts.mjs +118 -0
- package/tools/vibe-runtime/runtime-subagent-permission-command.mjs +78 -0
- package/tools/vibe-runtime/runtime-subagent-permission-gate-model.mjs +131 -0
- package/tools/vibe-runtime/runtime-subagent-permission-visibility.mjs +294 -0
- package/tools/vibe-runtime/runtime-subagents-artifact-specs.mjs +257 -0
- package/tools/vibe-runtime/runtime-subagents-command.mjs +10 -0
- package/tools/vibe-runtime/runtime-subagents-eligibility-model.mjs +340 -0
- package/tools/vibe-runtime/runtime-subagents-platform-session-proxies.mjs +54 -0
- package/tools/vibe-runtime/runtime-subagents-presentation.mjs +91 -0
- package/tools/vibe-runtime/runtime-subagents-risk-artifacts.mjs +853 -0
- package/tools/vibe-runtime/runtime-subagents-stage-artifact-model.mjs +538 -0
- package/tools/vibe-runtime/runtime-subagents-tail-routing-model.mjs +48 -0
- package/tools/vibe-runtime/runtime-suite-plan-model.mjs +194 -0
- package/tools/vibe-runtime/runtime-superpowers-comparison-matrix.mjs +399 -0
- package/tools/vibe-runtime/runtime-superpowers-gap-matrix.mjs +307 -0
- package/tools/vibe-runtime/runtime-superpowers-parity-command.mjs +102 -0
- package/tools/vibe-runtime/runtime-superpowers-parity-profile-contract.mjs +183 -0
- package/tools/vibe-runtime/runtime-superpowers-parity-scorecard.mjs +460 -0
- package/tools/vibe-runtime/runtime-superpowers-regression-guard.mjs +270 -0
- package/tools/vibe-runtime/runtime-superpowers-style-eval-pack.mjs +367 -0
- package/tools/vibe-runtime/runtime-task-commit-gates.mjs +62 -0
- package/tools/vibe-runtime/runtime-task-commit-readiness.mjs +66 -0
- package/tools/vibe-runtime/runtime-task-commit-sidecar.mjs +65 -0
- package/tools/vibe-runtime/runtime-tdd-trace-contract.mjs +277 -0
- package/tools/vibe-runtime/runtime-test-evidence-model.mjs +196 -0
- package/tools/vibe-runtime/runtime-test-run-command-deps.mjs +7 -0
- package/tools/vibe-runtime/runtime-test-run-command.mjs +108 -0
- package/tools/vibe-runtime/runtime-token-economy-model.mjs +336 -0
- package/tools/vibe-runtime/runtime-token-interaction-command.mjs +381 -0
- package/tools/vibe-runtime/runtime-token-savior-budget.mjs +370 -0
- package/tools/vibe-runtime/runtime-tokens-command-deps.mjs +17 -0
- package/tools/vibe-runtime/runtime-tokens-command.mjs +117 -0
- package/tools/vibe-runtime/runtime-tokens-presentation.mjs +45 -0
- package/tools/vibe-runtime/runtime-trace-command.mjs +283 -0
- package/tools/vibe-runtime/runtime-trace-source-registry.mjs +132 -0
- package/tools/vibe-runtime/runtime-verification-gate-chain-model.mjs +131 -0
- package/tools/vibe-runtime/runtime-verification-repair-loop-plan.mjs +188 -0
- package/tools/vibe-runtime/runtime-workflow-alias-boundary-text.mjs +7 -0
- package/tools/vibe-runtime/runtime-workflow-alias-interaction-command.mjs +145 -0
- package/tools/vibe-runtime/runtime-workflow-command-deps.mjs +41 -0
- package/tools/vibe-runtime/runtime-workflow-command.mjs +191 -0
- package/tools/vibe-runtime/runtime-workflow-discipline-summary.mjs +164 -0
- package/tools/vibe-runtime/runtime-workflow-entry-envelopes.mjs +156 -0
- package/tools/vibe-runtime/runtime-workflow-ledger-command.mjs +239 -0
- package/tools/vibe-runtime/runtime-workflow-ledger-state-lifecycle-model.mjs +46 -0
- package/tools/vibe-runtime/runtime-workflow-loop-contract.mjs +259 -0
- package/tools/vibe-runtime/runtime-workflow-next-step-gate-model.mjs +106 -0
- package/tools/vibe-runtime/runtime-workflow-presentation.mjs +355 -0
- package/tools/vibe-runtime/runtime-workflow-readiness-model.mjs +176 -0
- package/tools/vibe-runtime/runtime-workflow-run-plan-model.mjs +207 -0
- package/tools/vibe-runtime/runtime-workflow-start-model.mjs +229 -0
- package/tools/vibe-runtime/runtime-workflow-state-artifacts.mjs +381 -0
- package/tools/vibe-runtime/runtime-workflow-state-helpers.mjs +456 -0
- package/tools/vibe-runtime/runtime-workflow-state-summary.mjs +65 -0
- package/tools/vibe-runtime/runtime-workflow-state-validation.mjs +104 -0
- package/tools/vibe-runtime/runtime-workflow-ux-model.mjs +205 -0
- package/tools/vibe-runtime/runtime-workspace-boundary-text.mjs +7 -0
- package/tools/vibe-runtime/runtime-workspace-isolation-command.mjs +295 -0
- package/tools/vibe-runtime/state-core-paths.mjs +113 -0
- package/tools/vibe-runtime/state-extension-paths.mjs +198 -0
- package/tools/vibe-runtime/state-safe-paths.mjs +2 -0
- package/tools/vibe-runtime-check/README.md +110 -0
- package/tools/vibe-runtime-check/architecture-tool-contracts.mjs +150 -0
- package/tools/vibe-runtime-check/index.mjs +186 -0
- package/tools/vibe-runtime-check/install-summary-adoption-contracts.mjs +115 -0
- package/tools/vibe-runtime-check/marker-contract-core.mjs +20 -0
- package/tools/vibe-runtime-check/product-artifact-contracts.mjs +24 -0
- package/tools/vibe-runtime-check/release-check-install-placement-contracts.mjs +166 -0
- package/tools/vibe-runtime-check/release-runtime-suite-layer-contracts.mjs +137 -0
- package/tools/vibe-runtime-check/runtime-architecture-manifest-drift-contracts.mjs +128 -0
- package/tools/vibe-runtime-check/runtime-automation-readiness-contracts.mjs +404 -0
- package/tools/vibe-runtime-check/runtime-capability-registry-contracts.mjs +299 -0
- package/tools/vibe-runtime-check/runtime-check-diagnostics-presentation.mjs +71 -0
- package/tools/vibe-runtime-check/runtime-cli-surface-contracts.mjs +156 -0
- package/tools/vibe-runtime-check/runtime-close-loop-contracts.mjs +163 -0
- package/tools/vibe-runtime-check/runtime-contract-delivery-registry.mjs +19 -0
- package/tools/vibe-runtime-check/runtime-contract-implementation-registry.mjs +23 -0
- package/tools/vibe-runtime-check/runtime-contract-local-evidence-registry.mjs +43 -0
- package/tools/vibe-runtime-check/runtime-contract-product-registry.mjs +83 -0
- package/tools/vibe-runtime-check/runtime-contract-registry.mjs +19 -0
- package/tools/vibe-runtime-check/runtime-control-plane-contracts.mjs +14 -0
- package/tools/vibe-runtime-check/runtime-doc-contract-marker-specs.mjs +349 -0
- package/tools/vibe-runtime-check/runtime-doc-contracts.mjs +24 -0
- package/tools/vibe-runtime-check/runtime-doc-marker-contracts.mjs +25 -0
- package/tools/vibe-runtime-check/runtime-entry-size-contracts.mjs +477 -0
- package/tools/vibe-runtime-check/runtime-experience-cli-contract-specs.mjs +98 -0
- package/tools/vibe-runtime-check/runtime-experience-cli-contracts.mjs +12 -0
- package/tools/vibe-runtime-check/runtime-experience-contracts.mjs +187 -0
- package/tools/vibe-runtime-check/runtime-governance-learning-token-contract-specs.mjs +92 -0
- package/tools/vibe-runtime-check/runtime-governance-learning-token-contracts.mjs +12 -0
- package/tools/vibe-runtime-check/runtime-high-risk-boundary-contracts.mjs +35 -0
- package/tools/vibe-runtime-check/runtime-high-risk-boundary-matrix.mjs +75 -0
- package/tools/vibe-runtime-check/runtime-index-import-boundary-contracts.mjs +192 -0
- package/tools/vibe-runtime-check/runtime-optimization-boundary-contracts.mjs +49 -0
- package/tools/vibe-runtime-check/runtime-pure-model-boundary-contracts.mjs +176 -0
- package/tools/vibe-runtime-check/runtime-release-closeout-contracts.mjs +25 -0
- package/tools/vibe-runtime-check/runtime-roadmap-marker-specs.mjs +559 -0
- package/tools/vibe-runtime-check/runtime-source-bundle.mjs +119 -0
- package/tools/vibe-runtime-check/runtime-tool-readme-contracts.mjs +93 -0
- package/tools/vibe-runtime-check/runtime-tool-readme-marker-specs.mjs +952 -0
- package/tools/vibe-runtime-check/workflow-skill-contracts.mjs +129 -0
- package/tools/vibe-runtime-check/workflow-skill-route-registry-contracts.mjs +106 -0
- package/tools/vibe-runtime-check/workflow-ux-contracts.mjs +46 -0
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
export function createWorkflowPresentation({ printList }) {
|
|
2
|
+
function printHumanFriendlyAlias(envelope) {
|
|
3
|
+
const alias = envelope.human_friendly_alias;
|
|
4
|
+
console.log('Vibecoding Runtime Human-friendly Alias');
|
|
5
|
+
console.log(`Kind: ${alias.alias_kind}; pass=${alias.human_friendly_alias_invariants.pass}`);
|
|
6
|
+
for (const label of alias.labels) {
|
|
7
|
+
const section = alias.sections[label] || {};
|
|
8
|
+
console.log(`${label}: pass=${section.pass}; ${section.summary}; execution_authorized=false`);
|
|
9
|
+
}
|
|
10
|
+
if (alias.next_evidence) console.log(`Next evidence: ${alias.next_evidence.kind}; ${alias.next_evidence.action}`);
|
|
11
|
+
console.log(`Source bindings: plan_action_manifest=${alias.source_bindings.plan_action_manifest_digest || 'not-provided'}; close_loop_dashboard=${alias.source_bindings.close_loop_dashboard_digest || 'not-provided'}; evidence=${alias.source_bindings.evidence_intake_digest || 'not-provided'}; diff=${alias.source_bindings.diff_coverage_digest || 'not-provided'}; review=${alias.source_bindings.review_intake_digest || 'not-provided'}; tdd=${alias.source_bindings.tdd_trace_digest || 'not-provided'}; registry=${alias.source_bindings.registry_digest}`);
|
|
12
|
+
printList('Allowed followup', alias.allowed_followup);
|
|
13
|
+
printList('Forbidden actions', alias.forbidden_actions);
|
|
14
|
+
console.log('Boundary: writes=false; human_friendly_alias_artifact=false; command_execution=false; check_execution=false; test_execution=false; repair_execution=false; git=false; git_write=false; commit=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
15
|
+
console.log(`Human-friendly alias digest: ${alias.human_friendly_alias_digest}`);
|
|
16
|
+
if (alias.evidence_gaps?.length > 0) printList('Evidence gaps', alias.evidence_gaps.map((gap) => `${gap.kind}: ${gap.action}`));
|
|
17
|
+
if (alias.human_friendly_alias_invariants.findings.length > 0) printList('Findings', alias.human_friendly_alias_invariants.findings);
|
|
18
|
+
console.log(`Manual action: ${alias.manual_action}`);
|
|
19
|
+
console.log(`Action: ${envelope.action}`);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
function printNextActionConsole(envelope) {
|
|
23
|
+
const panel = envelope.next_action_console;
|
|
24
|
+
console.log('Vibecoding Runtime One-screen Next Action Console');
|
|
25
|
+
console.log(`Stage: ${panel.stage}; Kind: ${panel.console_kind}; pass=${panel.ok}`);
|
|
26
|
+
console.log(`Current position: friction=${panel.current_position.friction_level}; score=${panel.current_position.friction_score}; top=${panel.current_position.top_friction}`);
|
|
27
|
+
console.log(`Recommended next action: ${panel.recommended_next_action.id}; target=${panel.recommended_next_action.target_stage}`);
|
|
28
|
+
console.log(`Action: ${panel.recommended_next_action.action}`);
|
|
29
|
+
console.log(`Why now: ${panel.why_now}`);
|
|
30
|
+
printList('Copy-ready command preview', panel.copy_ready_command_preview.map((item) => `${item.id}: ${item.command}`));
|
|
31
|
+
printList('Evidence needed next', panel.evidence_needed_next.map((item) => `${item.id}: ${item.reason}`));
|
|
32
|
+
printList('Do not do yet', panel.do_not_do_yet);
|
|
33
|
+
console.log('Boundary: writes=false; next_action_console_artifact=false; command_execution=false; check_execution=false; test_execution=false; workflow_execution=false; skill_execution=false; runtime_action=false; evidence_write=false; git=false; git_write=false; commit=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
34
|
+
console.log(`Next action console digest: ${panel.console_digest}`);
|
|
35
|
+
console.log(`Contract action: ${envelope.action}`);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function printEntryTriggerDiscipline(envelope) {
|
|
39
|
+
const discipline = envelope.entry_trigger_discipline;
|
|
40
|
+
console.log('Vibecoding Runtime Entry Trigger Discipline Contract');
|
|
41
|
+
console.log(`Stage: ${discipline.stage}; Kind: ${discipline.discipline_kind}; pass=${discipline.pass}`);
|
|
42
|
+
console.log(`Intent: ${discipline.intent}; Transcript: ${discipline.source_bindings.transcript_file}; Messages: ${discipline.transcript_summary.message_count}`);
|
|
43
|
+
console.log(`Expected route: ${discipline.expected_route.required_workflow.join(' -> ')}`);
|
|
44
|
+
console.log(`Protocol layers: L0=${discipline.protocol_layers.l0_lightweight_routing}; L1=${discipline.protocol_layers.l1_full_workflow_when_risky}; L2=${discipline.protocol_layers.l2_confirmed_execution_only}`);
|
|
45
|
+
for (const gate of discipline.trigger_results) console.log(`- ${gate.gate}: pass=${gate.pass}`);
|
|
46
|
+
if (discipline.missed_workflow_risks.length > 0) printList('Missed workflow risks', discipline.missed_workflow_risks);
|
|
47
|
+
console.log(`Minimum next action: ${discipline.minimum_next_action}`);
|
|
48
|
+
console.log('Boundary: writes=false; entry_discipline_artifact=false; transcript_write=false; source_write=false; sidecar_write=false; state_directory_created=false; command_execution=false; check_execution=false; test_execution=false; workflow_execution=false; skill_execution=false; runtime_action=false; auto_execution=false; git=false; git_write=false; git_add=false; commit=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
49
|
+
console.log(`Entry discipline digest: ${discipline.discipline_digest}`);
|
|
50
|
+
console.log(`Action: ${envelope.action}`);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function printCloseLoopDashboard(envelope) {
|
|
54
|
+
const dashboard = envelope.close_loop_dashboard;
|
|
55
|
+
console.log('Vibecoding Runtime Close-loop Dashboard');
|
|
56
|
+
console.log(`Stage: ${dashboard.stage}; Kind: ${dashboard.dashboard_kind}; pass=${dashboard.dashboard_invariants.pass}`);
|
|
57
|
+
console.log(`Plan: pass=${dashboard.plan_status.pass}; action_items=${dashboard.plan_status.action_item_count}; execution_authorized=false`);
|
|
58
|
+
console.log(`Docs: expectations=${dashboard.docs_status.expectation_count}; gaps=${dashboard.docs_status.gaps.length}`);
|
|
59
|
+
console.log(`Code: expectations=${dashboard.code_status.expectation_count}; gaps=${dashboard.code_status.gaps.length}`);
|
|
60
|
+
console.log(`Self-test: gates=${dashboard.self_test_status.gate_count}; planned_not_run=${dashboard.self_test_status.planned_not_run_count}; test_execution_authorized=false`);
|
|
61
|
+
console.log(`Commit: gates=${dashboard.commit_status.readiness_gate_count}; subject_guard_pass=${dashboard.commit_status.subject_guard_pass}; commit_ready=false; commit_execution_authorized=false`);
|
|
62
|
+
console.log(`One-shot: confirmation_provided=${dashboard.one_shot_status.confirmation_provided}; plan_confirmed=${dashboard.one_shot_status.plan_confirmed}; ready_for_runtime_execution=false; actions_executed=false; execution_authorized=false`);
|
|
63
|
+
console.log(`Source bindings: plan_action_manifest=${dashboard.source_bindings.plan_action_manifest_digest}; self_test_gate_profile=${dashboard.source_bindings.self_test_gate_profile_digest}; commit_readiness=${dashboard.source_bindings.commit_readiness_digest}; confirmed_one_shot_plan=${dashboard.source_bindings.confirmed_one_shot_plan_digest || 'not-provided'}; automation_readiness=${dashboard.source_bindings.automation_readiness_digest}; registry=${dashboard.source_bindings.registry_digest}`);
|
|
64
|
+
printList('Allowed followup', dashboard.allowed_followup);
|
|
65
|
+
printList('Forbidden actions', dashboard.forbidden_actions);
|
|
66
|
+
console.log('Boundary: writes=false; close_loop_dashboard_artifact=false; command_execution=false; test_execution=false; check_execution=false; git=false; git_write=false; commit=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
67
|
+
console.log(`Close-loop dashboard digest: ${dashboard.close_loop_dashboard_digest}`);
|
|
68
|
+
if (dashboard.dashboard_invariants.findings.length > 0) printList('Findings', dashboard.dashboard_invariants.findings);
|
|
69
|
+
console.log(`Manual action: ${dashboard.manual_action}`);
|
|
70
|
+
console.log(`Action: ${envelope.action}`);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function printWorkflowReadiness(envelope) {
|
|
74
|
+
const readiness = envelope.workflow_readiness;
|
|
75
|
+
console.log('Vibecoding Runtime Workflow Readiness');
|
|
76
|
+
console.log(`Stage: ${readiness.stage}; Intent: ${readiness.normalized_intent}; Ready: ${readiness.ready_to_start ? 'true' : 'false'}`);
|
|
77
|
+
console.log(`First skill: ${readiness.route_summary.first_skill}`);
|
|
78
|
+
console.log(`Workflow: ${readiness.route_summary.selected_workflow.join(' -> ')}`);
|
|
79
|
+
console.log(`Required gates: ${readiness.required_gate_kinds.length > 0 ? readiness.required_gate_kinds.join(', ') : 'none'}`);
|
|
80
|
+
for (const gate of readiness.gate_previews) console.log(`- ${gate.kind}: ${gate.outcome}; blocked=${gate.blocked_count}`);
|
|
81
|
+
console.log(`Runtime readiness: ${readiness.runtime_readiness_summary.grade} (${readiness.runtime_readiness_summary.overall_score})`);
|
|
82
|
+
console.log(`Advice lane: ${readiness.advice_hub_summary.primary_lane}; command=${readiness.advice_hub_summary.recommended_command}`);
|
|
83
|
+
console.log(`Manual action: ${readiness.manual_action}`);
|
|
84
|
+
console.log(`Verification: ${readiness.verification_hint}`);
|
|
85
|
+
console.log('Boundary: writes=false; workflow_readiness_artifact=false; methodology_gate_write=false; command_execution=false; runtime_action=false; git=false; worktree=false; pr=false; push=false; merge=false; platform_api=false; subagent=false; mcp=false');
|
|
86
|
+
console.log(`Readiness digest: ${readiness.readiness_digest}`);
|
|
87
|
+
if (readiness.blocked_reasons.length > 0) printList('Blocked reasons', readiness.blocked_reasons);
|
|
88
|
+
console.log(`Action: ${envelope.action}`);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
function printWorkflowCockpit(envelope) {
|
|
92
|
+
const cockpit = envelope.workflow_cockpit;
|
|
93
|
+
console.log('Vibecoding Runtime Workflow Cockpit');
|
|
94
|
+
console.log(`Stage: ${cockpit.stage}; Phase: ${cockpit.current_phase}; Intent: ${cockpit.normalized_intent}`);
|
|
95
|
+
console.log(`Next skill: ${cockpit.recommended_next_skill}`);
|
|
96
|
+
console.log(`Readiness: ${cockpit.readiness_summary.ready_to_start ? 'ready' : 'blocked'}`);
|
|
97
|
+
console.log(`Plan lint: ${cockpit.plan_lint_summary.status}`);
|
|
98
|
+
if (cockpit.self_check_summary) {
|
|
99
|
+
const summary = cockpit.self_check_summary;
|
|
100
|
+
console.log(`Self-check loop: profile=${summary.profile_check.status}; entry=${summary.entry_check.current_phase}; readiness_blockers=${summary.readiness_check.blocker_count}; completion=${summary.completion_check.status}`);
|
|
101
|
+
console.log(`Evidence gaps: blockers=${summary.evidence_gap_count}; required=${summary.required_evidence_count}`);
|
|
102
|
+
}
|
|
103
|
+
console.log(`Primary advice: ${cockpit.advice_summary.primary_lane} -> ${cockpit.advice_summary.primary_command}`);
|
|
104
|
+
printList('Required evidence', cockpit.required_evidence);
|
|
105
|
+
printList('Forbidden actions', cockpit.forbidden_actions);
|
|
106
|
+
console.log(`Manual action: ${cockpit.next_manual_action}`);
|
|
107
|
+
console.log('Boundary: writes=false; workflow_cockpit_artifact=false; command_execution=false; runtime_action=false; git=false; worktree=false; platform_api=false; subagent=false');
|
|
108
|
+
console.log(`Cockpit digest: ${cockpit.cockpit_digest}`);
|
|
109
|
+
if (cockpit.blocked_reasons.length > 0) printList('Blocked reasons', cockpit.blocked_reasons);
|
|
110
|
+
console.log(`Action: ${envelope.action}`);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
function printWorkflowReceipt(envelope) {
|
|
114
|
+
const receipt = envelope.workflow_receipt;
|
|
115
|
+
console.log('Vibecoding Runtime Workflow Receipt');
|
|
116
|
+
console.log(`Stage: ${receipt.stage}; Layer: ${receipt.recommended_layer}; Intent: ${receipt.normalized_intent}`);
|
|
117
|
+
console.log(`Selected skill: ${receipt.selected_skill}`);
|
|
118
|
+
console.log(`Visible sentence: ${receipt.user_visible_sentence}`);
|
|
119
|
+
console.log(`Handoff required: ${receipt.handoff_required ? 'true' : 'false'}`);
|
|
120
|
+
printList('False-claim guardrails', receipt.false_claim_guardrails);
|
|
121
|
+
console.log('Boundary: writes=false; workflow_receipt_artifact=false; skill_execution=false; command_execution=false; runtime_action=false; platform_api=false; subagent=false');
|
|
122
|
+
console.log(`Receipt digest: ${receipt.receipt_digest}`);
|
|
123
|
+
console.log(`Action: ${envelope.action}`);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
function printWorkflowStart(envelope) {
|
|
127
|
+
const start = envelope.workflow_start;
|
|
128
|
+
console.log('Vibecoding Runtime Workflow Start');
|
|
129
|
+
console.log(`Stage: ${start.stage}; Intent: ${start.normalized_intent}`);
|
|
130
|
+
console.log(`Entry: ${start.entry_contract_summary.required_decision}; pass=${start.entry_contract_summary.pass ? 'true' : 'false'}`);
|
|
131
|
+
console.log(`Visible receipt: ${start.receipt_summary.user_visible_sentence}`);
|
|
132
|
+
console.log(`Phase: ${start.cockpit_summary.current_phase}; Next skill: ${start.cockpit_summary.recommended_next_skill}`);
|
|
133
|
+
console.log(`Readiness: ${start.readiness_summary.ready_to_start ? 'ready' : 'blocked'}`);
|
|
134
|
+
console.log(`Plan lint: ${start.plan_lint_summary.status}`);
|
|
135
|
+
console.log(`Entry summary: ${start.entry_summary?.entry_classification || 'unknown'}; state_gap_expected=${start.entry_summary?.state_gap_is_expected ? 'true' : 'false'}; blockers=${start.entry_summary?.readiness_blocker_count ?? start.blocked_reasons.length}`);
|
|
136
|
+
console.log(`First decision: ${start.entry_summary?.first_user_decision || start.next_manual_action}`);
|
|
137
|
+
if (start.start_here_contract) {
|
|
138
|
+
const contract = start.start_here_contract;
|
|
139
|
+
console.log(`Start Here Contract: profile=${contract.automation_profile}; first_skill=${contract.expected_first_skill}; skill_path=${contract.skill_path}`);
|
|
140
|
+
console.log(`Visible first sentence: ${contract.visible_first_sentence}`);
|
|
141
|
+
console.log(`Next gate: ${contract.next_gate}; validation_strategy_required=${contract.validation_strategy_required_before_change}`);
|
|
142
|
+
printList('Stop conditions', contract.stop_conditions);
|
|
143
|
+
}
|
|
144
|
+
if (start.profile_contract_summary?.skill_first_receipt) {
|
|
145
|
+
const profileReceipt = start.profile_contract_summary.skill_first_receipt;
|
|
146
|
+
console.log(`Skill-first receipt: skill=${profileReceipt.selected_skill}; next_gate=${profileReceipt.next_gate}; skill_execution_claimed=${profileReceipt.skill_execution_claimed}`);
|
|
147
|
+
console.log(`Route reason: ${profileReceipt.route_reason}`);
|
|
148
|
+
printList('Must not do yet', profileReceipt.must_not_do_yet);
|
|
149
|
+
}
|
|
150
|
+
printList('Forbidden actions', start.forbidden_actions);
|
|
151
|
+
console.log(`Manual action: ${start.next_manual_action}`);
|
|
152
|
+
console.log('Boundary: writes=false; workflow_start_artifact=false; skill_execution=false; command_execution=false; runtime_action=false; git=false; platform_api=false; subagent=false');
|
|
153
|
+
console.log(`Start digest: ${start.start_digest}`);
|
|
154
|
+
if (start.blocked_reasons.length > 0) printList('Blocked reasons', start.blocked_reasons);
|
|
155
|
+
console.log(`Action: ${envelope.action}`);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
function printSessionStart(envelope) {
|
|
159
|
+
const alias = envelope.session_start_alias;
|
|
160
|
+
const start = envelope.workflow_start;
|
|
161
|
+
console.log('Vibecoding Runtime Session Start');
|
|
162
|
+
console.log(`Stage: ${alias.stage}; Kind: ${alias.alias_kind}; canonical=${alias.canonical_command}`);
|
|
163
|
+
console.log(`Selected skill: ${alias.selected_skill}`);
|
|
164
|
+
console.log(`Manual action: ${alias.next_manual_action}`);
|
|
165
|
+
if (start?.start_here_contract) {
|
|
166
|
+
const contract = start.start_here_contract;
|
|
167
|
+
console.log(`Start Here Contract: profile=${contract.automation_profile}; first_skill=${contract.expected_first_skill}; skill_path=${contract.skill_path}`);
|
|
168
|
+
console.log(`Visible first sentence: ${contract.visible_first_sentence}`);
|
|
169
|
+
console.log(`Next gate: ${contract.next_gate}; validation_strategy_required=${contract.validation_strategy_required_before_change}`);
|
|
170
|
+
printList('Stop conditions', contract.stop_conditions);
|
|
171
|
+
}
|
|
172
|
+
printList('Forbidden actions', start?.forbidden_actions || []);
|
|
173
|
+
console.log('Boundary: writes=false; session_start_alias_artifact=false; workflow_start_artifact=false; skill_execution=false; command_execution=false; runtime_action=false; git=false; git_write=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; business_source_write=false');
|
|
174
|
+
console.log(`Alias digest: ${alias.alias_digest}`);
|
|
175
|
+
console.log(`Workflow start digest: ${alias.workflow_start_digest}`);
|
|
176
|
+
console.log(`Action: ${envelope.action}`);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
function printSkillSelect(envelope) {
|
|
180
|
+
const alias = envelope.skill_select_alias;
|
|
181
|
+
const receipt = envelope.workflow_receipt;
|
|
182
|
+
console.log('Vibecoding Runtime Skill Select');
|
|
183
|
+
console.log(`Stage: ${alias.stage}; Kind: ${alias.alias_kind}; canonical=${alias.canonical_command}`);
|
|
184
|
+
console.log(`Selected skill: ${alias.selected_skill}`);
|
|
185
|
+
console.log(`Visible sentence: ${alias.user_visible_sentence}`);
|
|
186
|
+
console.log(`Skill execution claimed: ${alias.skill_execution_claimed}`);
|
|
187
|
+
console.log(`Workflow execution claimed: ${alias.workflow_execution_claimed}`);
|
|
188
|
+
printList('False-claim guardrails', receipt?.false_claim_guardrails || []);
|
|
189
|
+
console.log('Boundary: writes=false; skill_select_alias_artifact=false; workflow_receipt_artifact=false; skill_execution=false; workflow_execution=false; command_execution=false; runtime_action=false; git=false; git_write=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; business_source_write=false');
|
|
190
|
+
console.log(`Alias digest: ${alias.alias_digest}`);
|
|
191
|
+
console.log(`Receipt digest: ${alias.workflow_receipt_digest}`);
|
|
192
|
+
console.log(`Action: ${envelope.action}`);
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
function printSessionCheckpoint(envelope) {
|
|
196
|
+
const checkpoint = envelope.session_checkpoint;
|
|
197
|
+
console.log('Vibecoding Runtime Session Checkpoint');
|
|
198
|
+
console.log(`Stage: ${checkpoint.stage}; Kind: ${checkpoint.checkpoint_kind}`);
|
|
199
|
+
console.log(`Intent: ${checkpoint.route.normalized_intent}; Selected skill: ${checkpoint.selected_skill}`);
|
|
200
|
+
console.log(`Next gate: ${checkpoint.route.next_gate}`);
|
|
201
|
+
console.log(`Manual action: ${checkpoint.next_manual_action}`);
|
|
202
|
+
console.log(`Evidence source: ${checkpoint.evidence_summary.source_file || 'not provided'}`);
|
|
203
|
+
printList('Blocked gates', checkpoint.blocked_gates);
|
|
204
|
+
printList('Forbidden actions', checkpoint.forbidden_actions);
|
|
205
|
+
console.log('Boundary: writes=false; session_checkpoint_artifact=false; skill_execution=false; command_execution=false; runtime_action=false; git=false; git_write=false; platform_api=false; subagent=false; business_source_write=false');
|
|
206
|
+
console.log(`Checkpoint digest: ${checkpoint.checkpoint_digest}`);
|
|
207
|
+
console.log(`Action: ${envelope.action}`);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
function printSessionHandoff(envelope) {
|
|
211
|
+
const handoff = envelope.session_handoff;
|
|
212
|
+
console.log('Vibecoding Runtime Session Handoff');
|
|
213
|
+
console.log(`Stage: ${handoff.stage}; Kind: ${handoff.checkpoint_kind}`);
|
|
214
|
+
console.log(`Current skill: ${handoff.handoff_contract.current_skill}; Next skill/gate: ${handoff.handoff_contract.next_skill}`);
|
|
215
|
+
console.log(`Manual action: ${handoff.next_manual_action}`);
|
|
216
|
+
console.log(`Stop condition: ${handoff.handoff_contract.stop_condition}`);
|
|
217
|
+
printList('Risks', handoff.handoff_contract.handoff.risks);
|
|
218
|
+
printList('Forbidden actions', handoff.forbidden_actions);
|
|
219
|
+
console.log('Boundary: writes=false; session_handoff_artifact=false; skill_execution=false; command_execution=false; runtime_action=false; git=false; git_write=false; platform_api=false; subagent=false; business_source_write=false');
|
|
220
|
+
console.log(`Handoff digest: ${handoff.handoff_digest}`);
|
|
221
|
+
console.log(`Action: ${envelope.action}`);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
function printSessionResume(envelope) {
|
|
225
|
+
const resume = envelope.session_resume;
|
|
226
|
+
console.log('Vibecoding Runtime Session Resume');
|
|
227
|
+
console.log(`Stage: ${resume.stage}; Kind: ${resume.resume_kind}; source=${resume.source_file}`);
|
|
228
|
+
console.log(`Selected skill: ${resume.selected_skill}`);
|
|
229
|
+
console.log(`Next gate: ${resume.route.next_gate || 'manual_workflow_judgment'}`);
|
|
230
|
+
console.log(`Manual action: ${resume.next_manual_action}`);
|
|
231
|
+
console.log(`Source verification: ${resume.resume_verification.pass ? 'pass' : 'blocked'}`);
|
|
232
|
+
printList('Blocked gates', resume.blocked_gates);
|
|
233
|
+
console.log('Boundary: writes=false; session_resume_artifact=false; skill_execution=false; command_execution=false; runtime_action=false; git=false; git_write=false; platform_api=false; subagent=false; business_source_write=false');
|
|
234
|
+
console.log(`Resume digest: ${resume.resume_digest}`);
|
|
235
|
+
console.log(`Action: ${envelope.action}`);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
function printWorkflowRunPlan(envelope) {
|
|
239
|
+
const plan = envelope.workflow_run_plan;
|
|
240
|
+
console.log('Vibecoding Runtime Workflow Run Plan');
|
|
241
|
+
console.log(`Stage: ${plan.stage}; Kind: ${plan.plan_kind}; pass=${plan.ok}`);
|
|
242
|
+
console.log(`Intent: ${plan.normalized_intent}; Selected skill: ${plan.selected_skill}; claimed_used=${plan.selected_skill_claimed_used}`);
|
|
243
|
+
console.log(`Workflow start: ${plan.workflow_start_summary.entry_classification}; blockers=${plan.workflow_start_summary.readiness_blocker_count}`);
|
|
244
|
+
printList('Required inputs', plan.required_inputs.map((item) => `${item.id}: ${item.status}; required=${item.required}`));
|
|
245
|
+
console.log(`Expected handoff: ${plan.expected_handoff.handoff_kind}; sidecar_required=${plan.expected_handoff.handoff_sidecar_required}; sidecar_written=${plan.expected_handoff.handoff_sidecar_written}`);
|
|
246
|
+
printList('Evidence requirements', plan.evidence_requirements.map((item) => `${item.id}: ${item.status}; required=${item.required}`));
|
|
247
|
+
printList('Stop conditions', plan.stop_conditions);
|
|
248
|
+
printList('Single-step chain', plan.single_step_chain.map((item) => `${item.step_id}: ${item.target_skill}; execution_authorized=${item.execution_authorized}; sidecar_write_authorized=${item.sidecar_write_authorized}`));
|
|
249
|
+
printList('Forbidden actions', plan.forbidden_actions);
|
|
250
|
+
console.log('Boundary: writes=false; workflow_run_plan_artifact=false; evidence_write=false; workflow_execution=false; skill_execution=false; command_execution=false; check_execution=false; test_execution=false; runtime_action=false; auto_execution=false; git=false; git_write=false; commit=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
251
|
+
console.log(`Run plan digest: ${plan.run_plan_digest}`);
|
|
252
|
+
if (plan.workflow_run_plan_invariants.findings.length > 0) printList('Findings', plan.workflow_run_plan_invariants.findings);
|
|
253
|
+
console.log(`Action: ${envelope.action}`);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function printEntryRuntimeSummary(envelope) {
|
|
257
|
+
const summary = envelope.entry_runtime_summary;
|
|
258
|
+
console.log('Vibecoding Runtime Entry Summary');
|
|
259
|
+
console.log(`Stage: ${summary.stage}; Intent: ${summary.normalized_intent}; pass=${summary.ok}`);
|
|
260
|
+
console.log(`Entry: ${summary.entry_decision.classification}; skill=${summary.entry_decision.selected_skill}; blockers=${summary.entry_decision.readiness_blocker_count}`);
|
|
261
|
+
console.log(`Token profile: ${summary.token_budget.recommended_profile}; max_context_tokens=${summary.token_budget.max_context_tokens}`);
|
|
262
|
+
console.log(`Learning: ${summary.learning_advice.recommended_next_learning_step}; automatic_promotion=${summary.learning_advice.automatic_promotion}`);
|
|
263
|
+
console.log(`Context load: ${summary.context_load_plan.plan_kind}; profile=${summary.context_load_plan.recommended_profile}; full_skill_text_loaded=${summary.context_load_plan.full_skill_text_loaded}`);
|
|
264
|
+
printList('Context load order', summary.context_load_plan.load_order.map((item) => `${item.id}: ${item.load}; limit=${item.token_limit}; ${item.reason}`));
|
|
265
|
+
printList('Expansion triggers', summary.defer_policy.expansion_triggers.map((item) => `${item.id}: ${item.load}; ${item.condition}`));
|
|
266
|
+
printList('Never defer', summary.defer_policy.never_defer);
|
|
267
|
+
printList('Surface now', summary.surface_now.map((item) => `${item.id}: ${item.value}; ${item.reason}`));
|
|
268
|
+
printList('Defer until needed', summary.defer_until_needed.map((item) => `${item.id}: ${item.value}; ${item.reason}`));
|
|
269
|
+
printList('Forbidden actions', summary.forbidden_actions);
|
|
270
|
+
console.log(`Manual action: ${summary.next_manual_action}`);
|
|
271
|
+
console.log('Boundary: writes=false; entry_runtime_summary_artifact=false; command_execution=false; check_execution=false; test_execution=false; workflow_execution=false; skill_execution=false; runtime_action=false; auto_execution=false; git=false; git_write=false; commit=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
272
|
+
console.log(`Entry summary digest: ${summary.summary_digest}`);
|
|
273
|
+
if (summary.entry_runtime_summary_invariants.findings.length > 0) printList('Findings', summary.entry_runtime_summary_invariants.findings);
|
|
274
|
+
console.log(`Action: ${envelope.action}`);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
function printProgressiveEntryUx(envelope) {
|
|
278
|
+
const contract = envelope.progressive_entry_ux;
|
|
279
|
+
console.log('Vibecoding Runtime Progressive Entry UX');
|
|
280
|
+
console.log(`Stage: ${contract.stage}; Kind: ${contract.contract_kind}; pass=${contract.entry_ux_invariants.pass}`);
|
|
281
|
+
console.log(`Intent: ${contract.normalized_intent}`);
|
|
282
|
+
console.log(`Recommended workflow: ${contract.recommended_workflow}`);
|
|
283
|
+
console.log(`Why: ${contract.why_this_route}`);
|
|
284
|
+
console.log(`Minimum next action: ${contract.minimum_next_action}`);
|
|
285
|
+
console.log(`Visible sentence: ${contract.visible_sentence}`);
|
|
286
|
+
console.log(`Bootstrap policy: ${contract.bootstrap_policy.marker}; session_create=${contract.bootstrap_policy.session_create}; skill_execution_claimed=${contract.bootstrap_policy.skill_execution_claimed}`);
|
|
287
|
+
printList('Do not do yet', contract.do_not_do_yet);
|
|
288
|
+
console.log(`Gap binding: provided=${contract.source_bindings.gap_matrix_provided}; file=${contract.source_bindings.gap_file || 'none'}; stage116_gap_found=${contract.source_bindings.stage116_gap_found}`);
|
|
289
|
+
console.log('Boundary: writes=false; progressive_entry_ux_artifact=false; command_execution=false; skill_execution=false; workflow_execution=false; runtime_action=false; git=false; git_write=false; commit=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
290
|
+
console.log(`Entry UX digest: ${contract.contract_digest}`);
|
|
291
|
+
if (contract.entry_ux_invariants.findings.length > 0) printList('Findings', contract.entry_ux_invariants.findings);
|
|
292
|
+
console.log(`Manual action: ${contract.manual_action}`);
|
|
293
|
+
console.log(`Action: ${envelope.action}`);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
function printWorkflowSequence(envelope) {
|
|
297
|
+
const sequence = envelope.workflow_sequence;
|
|
298
|
+
console.log('Vibecoding Runtime Workflow Sequence');
|
|
299
|
+
console.log(`Stage: ${sequence.stage}; Intent: ${sequence.normalized_intent}`);
|
|
300
|
+
printList('Phase order', sequence.phase_order);
|
|
301
|
+
printList('Entry criteria', sequence.phase_entry_criteria);
|
|
302
|
+
printList('Exit evidence', sequence.phase_exit_evidence);
|
|
303
|
+
printList('Handoff points', sequence.handoff_points);
|
|
304
|
+
printList('Stop conditions', sequence.stop_conditions);
|
|
305
|
+
console.log('Boundary: writes=false; workflow_sequence_artifact=false; skill_execution=false; command_execution=false; runtime_action=false; git=false; platform_api=false; subagent=false');
|
|
306
|
+
console.log(`Sequence digest: ${sequence.sequence_digest}`);
|
|
307
|
+
console.log(`Action: ${envelope.action}`);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
function printWorkflowLoopContract(envelope) {
|
|
311
|
+
const contract = envelope.workflow_loop_contract;
|
|
312
|
+
console.log('Vibecoding Runtime Workflow Loop Contract');
|
|
313
|
+
console.log(`Stage: ${contract.stage}; Kind: ${contract.contract_kind}; pass=${contract.loop_contract_invariants.pass}`);
|
|
314
|
+
console.log(`Intent: ${contract.normalized_intent}`);
|
|
315
|
+
printList('Loop phases', contract.loop_phases);
|
|
316
|
+
for (const phase of contract.phase_contracts) {
|
|
317
|
+
console.log(`- ${phase.phase}: ${phase.recommended_skill_or_command}; exit=${phase.exit_receipt}`);
|
|
318
|
+
}
|
|
319
|
+
console.log(`Source bindings: workflow_start=${contract.source_bindings.workflow_start_digest}; workflow_sequence=${contract.source_bindings.workflow_sequence_digest}; automation_readiness=${contract.source_bindings.automation_readiness_digest}; registry=${contract.source_bindings.registry_digest}`);
|
|
320
|
+
if (contract.next_gate_summary) {
|
|
321
|
+
const gate = contract.next_gate_summary;
|
|
322
|
+
console.log(`Next gate: current=${gate.current_gate}; pass=${gate.pass}; next=${gate.next_gate}`);
|
|
323
|
+
printList('Next gate evidence', gate.required_evidence);
|
|
324
|
+
printList('Next gate blocked actions', gate.blocked_actions);
|
|
325
|
+
}
|
|
326
|
+
printList('Allowed followup', contract.allowed_followup);
|
|
327
|
+
printList('Forbidden actions', contract.forbidden_actions);
|
|
328
|
+
console.log('Boundary: writes=false; workflow_loop_contract_artifact=false; automation_plan_artifact=false; command_execution=false; runtime_action=false; test_execution=false; repair_execution=false; git=false; pr=false; push=false; merge=false; platform_api=false; external_network=false; model_invocation=false; subagent=false; mcp=false; business_source_write=false');
|
|
329
|
+
console.log(`Loop contract digest: ${contract.loop_contract_digest}`);
|
|
330
|
+
if (contract.loop_contract_invariants.findings.length > 0) printList('Findings', contract.loop_contract_invariants.findings);
|
|
331
|
+
console.log(`Manual action: ${contract.manual_action}`);
|
|
332
|
+
console.log(`Action: ${envelope.action}`);
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
return {
|
|
336
|
+
printHumanFriendlyAlias,
|
|
337
|
+
printNextActionConsole,
|
|
338
|
+
printEntryTriggerDiscipline,
|
|
339
|
+
printCloseLoopDashboard,
|
|
340
|
+
printWorkflowReadiness,
|
|
341
|
+
printWorkflowCockpit,
|
|
342
|
+
printWorkflowReceipt,
|
|
343
|
+
printWorkflowStart,
|
|
344
|
+
printSessionStart,
|
|
345
|
+
printSkillSelect,
|
|
346
|
+
printSessionCheckpoint,
|
|
347
|
+
printSessionHandoff,
|
|
348
|
+
printSessionResume,
|
|
349
|
+
printWorkflowRunPlan,
|
|
350
|
+
printEntryRuntimeSummary,
|
|
351
|
+
printProgressiveEntryUx,
|
|
352
|
+
printWorkflowSequence,
|
|
353
|
+
printWorkflowLoopContract,
|
|
354
|
+
};
|
|
355
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
import {
|
|
2
|
+
normalizeSkillRouteRegistryIntent,
|
|
3
|
+
skillRouteRegistryIntents,
|
|
4
|
+
} from './runtime-skill-route-registry.mjs';
|
|
5
|
+
|
|
6
|
+
export function workflowReadinessBoundaryAssertions() {
|
|
7
|
+
return {
|
|
8
|
+
writes: false,
|
|
9
|
+
state_directory_created: false,
|
|
10
|
+
workflow_readiness_artifact: false,
|
|
11
|
+
methodology_gate_write: false,
|
|
12
|
+
sidecar_write: false,
|
|
13
|
+
skill_execution: false,
|
|
14
|
+
command_execution: false,
|
|
15
|
+
runtime_action: false,
|
|
16
|
+
auto_execution: false,
|
|
17
|
+
external_network: false,
|
|
18
|
+
model_invocation: false,
|
|
19
|
+
platform_api: false,
|
|
20
|
+
git: false,
|
|
21
|
+
worktree: false,
|
|
22
|
+
pr: false,
|
|
23
|
+
push: false,
|
|
24
|
+
merge: false,
|
|
25
|
+
tag: false,
|
|
26
|
+
subagent: false,
|
|
27
|
+
mcp: false,
|
|
28
|
+
daemon: false,
|
|
29
|
+
shell_interception: false,
|
|
30
|
+
business_source_write: false,
|
|
31
|
+
source_merge: false,
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export function normalizeWorkflowReadinessIntent(intent) {
|
|
36
|
+
const value = String(intent || '').trim().toLowerCase().replace(/_/g, '-');
|
|
37
|
+
if (value === 'release') return 'release';
|
|
38
|
+
const normalized = normalizeSkillRouteRegistryIntent(value);
|
|
39
|
+
const known = new Set([...skillRouteRegistryIntents(), 'release']);
|
|
40
|
+
return known.has(normalized) ? normalized : 'unknown';
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function workflowReadinessRouteIntent(intent) {
|
|
44
|
+
if (intent === 'release') return 'completion';
|
|
45
|
+
if (intent === 'unknown') return 'unknown';
|
|
46
|
+
return intent;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function workflowReadinessAdviceIntent(intent) {
|
|
50
|
+
if (intent === 'debug') return 'bug';
|
|
51
|
+
if (intent === 'review') return 'review';
|
|
52
|
+
if (intent === 'completion' || intent === 'release') return 'closeout';
|
|
53
|
+
if (intent === 'unknown') return 'unknown';
|
|
54
|
+
return 'feature';
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export function workflowReadinessGateKinds(route, intent, methodologyGateKinds) {
|
|
58
|
+
const selected = intent === 'release' ? ['completion'] : intent === 'unknown' ? [] : route.gate_kinds || [];
|
|
59
|
+
return [...new Set(selected)].filter((kind) => methodologyGateKinds.has(kind));
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function workflowReadinessGatePreview(envelope) {
|
|
63
|
+
const gate = envelope.methodology_gate;
|
|
64
|
+
return {
|
|
65
|
+
kind: gate.kind,
|
|
66
|
+
outcome: gate.outcome,
|
|
67
|
+
blocked_count: gate.blocked_reasons.length,
|
|
68
|
+
blocked_reasons: gate.blocked_reasons,
|
|
69
|
+
criteria: gate.criteria.map((item) => ({ id: item.id, status: item.status, blocked_reason: item.blocked_reason || '' })),
|
|
70
|
+
writes: false,
|
|
71
|
+
methodology_gate_artifact: false,
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export function workflowReadinessRuntimeSummary(envelope) {
|
|
76
|
+
return {
|
|
77
|
+
stage: envelope.safety.stage,
|
|
78
|
+
readiness_kind: envelope.mode,
|
|
79
|
+
overall_score: envelope.readiness.overall_score,
|
|
80
|
+
grade: envelope.readiness.grade,
|
|
81
|
+
blocked_count: envelope.readiness.blocked_reasons.length,
|
|
82
|
+
warnings: envelope.readiness.warnings.slice(0, 5),
|
|
83
|
+
state_present: envelope.state_present,
|
|
84
|
+
writes: false,
|
|
85
|
+
observability_snapshot: false,
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export function workflowReadinessAdviceHubSummary(envelope) {
|
|
90
|
+
const advice = envelope.advice_hub;
|
|
91
|
+
return {
|
|
92
|
+
stage: advice.stage,
|
|
93
|
+
advice_kind: advice.advice_kind,
|
|
94
|
+
normalized_intent: advice.normalized_intent,
|
|
95
|
+
primary_lane: advice.primary_lane,
|
|
96
|
+
recommended_command: advice.primary_recommendation.recommended_command,
|
|
97
|
+
manual_action: advice.primary_recommendation.manual_action,
|
|
98
|
+
verification_hint: advice.primary_recommendation.verification_hint,
|
|
99
|
+
advice_digest: advice.advice_digest,
|
|
100
|
+
writes: false,
|
|
101
|
+
state_directory_created: false,
|
|
102
|
+
};
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export function workflowReadinessManualAction(intent, ready, route, blockedReasons) {
|
|
106
|
+
if (intent === 'unknown') return 'Clarify the workflow goal, scope, constraints, and acceptance criteria before entering implementation, review, or completion.';
|
|
107
|
+
if (!ready) return `Do not enter ${route.first_skill} yet. Resolve the blocked workflow gate evidence first: ${blockedReasons.slice(0, 3).join('; ')}`;
|
|
108
|
+
if (intent === 'implementation') return 'Enter the implementation workflow only after preserving the plan/TDD handoff; keep execution bounded to the accepted plan.';
|
|
109
|
+
if (intent === 'review') return 'Enter review with explicit scope, evidence, severity focus, and required-change criteria.';
|
|
110
|
+
if (intent === 'completion' || intent === 'release') return 'Enter completion verification with fresh command evidence before making completion or release claims.';
|
|
111
|
+
if (intent === 'debug') return 'Enter implementation only after reproduction, evidence, and root-cause status are recorded.';
|
|
112
|
+
return `Enter ${route.first_skill} and preserve the workflow handoff before the next stage.`;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export function workflowReadinessVerificationHint(intent) {
|
|
116
|
+
if (intent === 'implementation') return 'Check the plan and TDD gate previews; then run targeted syntax/unit/smoke checks for the files changed during implementation.';
|
|
117
|
+
if (intent === 'review') return 'Review scoped diffs and evidence only; prioritize blockers and high-risk issues before non-blocking style feedback.';
|
|
118
|
+
if (intent === 'completion' || intent === 'release') return 'Use Stage 84-style final verification: syntax, behavior, negative boundary, no-state where relevant, release/runtime checks, and diff check.';
|
|
119
|
+
if (intent === 'debug') return 'Verify a minimal reproduction and one root-cause hypothesis before changing code.';
|
|
120
|
+
if (intent === 'unknown') return 'No workflow readiness can be trusted until the intent is clarified.';
|
|
121
|
+
return 'Verify the required gate previews before entering the next workflow step.';
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export function buildWorkflowReadinessModel({
|
|
125
|
+
inputIntent,
|
|
126
|
+
normalizedIntent,
|
|
127
|
+
route,
|
|
128
|
+
requiredGateKinds,
|
|
129
|
+
gatePreviews,
|
|
130
|
+
runtimeReadiness,
|
|
131
|
+
adviceHub,
|
|
132
|
+
digestObject,
|
|
133
|
+
}) {
|
|
134
|
+
const blockedReasons = [...new Set([
|
|
135
|
+
...(normalizedIntent === 'unknown' ? ['unknown workflow readiness intent; clarify goal, scope, constraints, and acceptance before starting'] : []),
|
|
136
|
+
...gatePreviews.flatMap((gate) => gate.blocked_reasons.map((reason) => `${gate.kind}: ${reason}`)),
|
|
137
|
+
])];
|
|
138
|
+
const readyToStart = normalizedIntent !== 'unknown' && blockedReasons.length === 0;
|
|
139
|
+
const boundaryAssertions = workflowReadinessBoundaryAssertions();
|
|
140
|
+
const readiness = {
|
|
141
|
+
version: 1,
|
|
142
|
+
stage: 'Stage 85',
|
|
143
|
+
readiness_kind: 'workflow-readiness-gate',
|
|
144
|
+
input_intent: inputIntent,
|
|
145
|
+
normalized_intent: normalizedIntent,
|
|
146
|
+
route_summary: {
|
|
147
|
+
stage: route.stage,
|
|
148
|
+
route_kind: route.route_kind,
|
|
149
|
+
intent: route.intent,
|
|
150
|
+
first_skill: route.first_skill,
|
|
151
|
+
selected_workflow: route.selected_workflow,
|
|
152
|
+
gate_kinds: route.gate_kinds,
|
|
153
|
+
rationale: route.rationale,
|
|
154
|
+
stop_condition: route.stop_condition,
|
|
155
|
+
route_digest: route.route_digest,
|
|
156
|
+
},
|
|
157
|
+
required_gate_kinds: requiredGateKinds,
|
|
158
|
+
gate_previews: gatePreviews,
|
|
159
|
+
runtime_readiness_summary: workflowReadinessRuntimeSummary(runtimeReadiness),
|
|
160
|
+
advice_hub_summary: workflowReadinessAdviceHubSummary(adviceHub),
|
|
161
|
+
ready_to_start: readyToStart,
|
|
162
|
+
blocked_reasons: blockedReasons,
|
|
163
|
+
manual_action: workflowReadinessManualAction(normalizedIntent, readyToStart, route, blockedReasons),
|
|
164
|
+
verification_hint: workflowReadinessVerificationHint(normalizedIntent),
|
|
165
|
+
boundary_assertions: boundaryAssertions,
|
|
166
|
+
writes: false,
|
|
167
|
+
state_directory_created: false,
|
|
168
|
+
local_only: true,
|
|
169
|
+
deterministic: true,
|
|
170
|
+
};
|
|
171
|
+
return {
|
|
172
|
+
readiness: { ...readiness, readiness_digest: digestObject(readiness) },
|
|
173
|
+
blockedReasons,
|
|
174
|
+
boundaryAssertions,
|
|
175
|
+
};
|
|
176
|
+
}
|