@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,456 @@
|
|
|
1
|
+
import fs from 'node:fs';
|
|
2
|
+
import path from 'node:path';
|
|
3
|
+
import {
|
|
4
|
+
completionEvidenceBundleFixtures,
|
|
5
|
+
} from './release-check-completion-fixtures.mjs';
|
|
6
|
+
import {
|
|
7
|
+
assertJsonMarkers,
|
|
8
|
+
parseJsonOutput,
|
|
9
|
+
repoRoot,
|
|
10
|
+
run,
|
|
11
|
+
} from './release-check-runtime.mjs';
|
|
12
|
+
|
|
13
|
+
function assertEntrySummaryContextStrategy(entrySummary) {
|
|
14
|
+
assertJsonMarkers([
|
|
15
|
+
['entry_runtime_summary.context_load_plan.plan_kind', entrySummary.entry_runtime_summary?.context_load_plan?.plan_kind, 'entry-context-load-plan'],
|
|
16
|
+
['entry_runtime_summary.context_load_plan.full_skill_text_loaded', entrySummary.entry_runtime_summary?.context_load_plan?.full_skill_text_loaded, false],
|
|
17
|
+
['entry_runtime_summary.defer_policy.policy_kind', entrySummary.entry_runtime_summary?.defer_policy?.policy_kind, 'entry-context-defer-policy'],
|
|
18
|
+
['entry_runtime_summary.defer_policy.hidden_discard', entrySummary.entry_runtime_summary?.defer_policy?.hidden_discard, false],
|
|
19
|
+
['entry_runtime_summary.defer_policy.prompt_mutation', entrySummary.entry_runtime_summary?.defer_policy?.prompt_mutation, false],
|
|
20
|
+
], 'workflow --entry-summary --json');
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function assertAutomationPlanContextStrategy(automationPlan) {
|
|
24
|
+
assertJsonMarkers([
|
|
25
|
+
['automation_plan.context_load_plan.plan_kind', automationPlan.automation_plan?.context_load_plan?.plan_kind, 'entry-context-load-plan'],
|
|
26
|
+
['automation_plan.context_load_plan.full_skill_text_loaded', automationPlan.automation_plan?.context_load_plan?.full_skill_text_loaded, false],
|
|
27
|
+
['automation_plan.defer_policy.policy_kind', automationPlan.automation_plan?.defer_policy?.policy_kind, 'entry-context-defer-policy'],
|
|
28
|
+
['automation_plan.defer_policy.hidden_discard', automationPlan.automation_plan?.defer_policy?.hidden_discard, false],
|
|
29
|
+
], 'automation --plan --json');
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
function assertLearningRunObservationPreview(target, absoluteTarget, options) {
|
|
33
|
+
const runFile = path.join(absoluteTarget, 'learning-run-input.json');
|
|
34
|
+
fs.writeFileSync(runFile, `${JSON.stringify({
|
|
35
|
+
command: 'automation',
|
|
36
|
+
mode: 'automation-plan',
|
|
37
|
+
ok: true,
|
|
38
|
+
domain: 'workflow',
|
|
39
|
+
confidence_delta: 0.2,
|
|
40
|
+
preferences: ['Keep automation read-only until an explicit approval boundary exists.'],
|
|
41
|
+
project_constraints: ['Do not mutate workflow skills, templates, hooks, or business source from learning preview.'],
|
|
42
|
+
observations: ['P2 should produce a candidate instinct preview without a learning sidecar write.'],
|
|
43
|
+
action: 'read-only automation plan completed with token-saving context strategy',
|
|
44
|
+
})}\n`);
|
|
45
|
+
const preview = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'learning', '--observe-from-run', '--from-file', path.join(target, 'learning-run-input.json'), '--json', '--root', target], {}, options), 'learning --observe-from-run --json');
|
|
46
|
+
assertJsonMarkers([
|
|
47
|
+
['command', preview.command, 'learning'],
|
|
48
|
+
['mode', preview.mode, 'learning-run-observation-preview'],
|
|
49
|
+
['learning_observation_preview.preview_kind', preview.learning_observation_preview?.preview_kind, 'learning-observation-preview'],
|
|
50
|
+
['learning_observation_preview.status', preview.learning_observation_preview?.status, 'observation_recorded'],
|
|
51
|
+
['candidate_instinct_preview.preview_kind', preview.candidate_instinct_preview?.preview_kind, 'candidate-instinct-preview'],
|
|
52
|
+
['candidate_instinct_preview.automatic_promotion', preview.candidate_instinct_preview?.automatic_promotion, false],
|
|
53
|
+
['candidate_instinct_preview.writes_formal_skills', preview.candidate_instinct_preview?.writes_formal_skills, false],
|
|
54
|
+
['safety.writes', preview.safety?.writes, false],
|
|
55
|
+
['safety.learning_observation_artifact', preview.safety?.learning_observation_artifact, false],
|
|
56
|
+
['safety.candidate_instinct_artifact', preview.safety?.candidate_instinct_artifact, false],
|
|
57
|
+
['safety.state_directory_created', preview.safety?.state_directory_created, false],
|
|
58
|
+
], 'learning --observe-from-run --json');
|
|
59
|
+
if (!preview.learning_observation_preview?.learning_observation_preview_digest) throw new Error('learning run preview missing observation digest');
|
|
60
|
+
if (!preview.candidate_instinct_preview?.candidate_instinct_preview_digest) throw new Error('learning run preview missing candidate digest');
|
|
61
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'learning', '--observe-from-run', '--from-file', path.join(target, 'learning-run-input.json'), '--confirm', '--root', target], {
|
|
62
|
+
allowFailure: true,
|
|
63
|
+
expectOutput: ['learning --observe-from-run is read-only'],
|
|
64
|
+
}, options);
|
|
65
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('learning run preview smoke created unexpected state directory');
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function assertAutomationAndLearningPreview(target, absoluteTarget, options) {
|
|
69
|
+
const automationPlan = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'automation', '--plan', '--prompt', '开始P0', '--json', '--root', target], {}, options), 'automation --plan --json');
|
|
70
|
+
assertJsonMarkers([
|
|
71
|
+
['command', automationPlan.command, 'automation'],
|
|
72
|
+
['mode', automationPlan.mode, 'automation-plan'],
|
|
73
|
+
['automation_plan.stage', automationPlan.automation_plan?.stage, 'Stage 146'],
|
|
74
|
+
['automation_plan.plan_kind', automationPlan.automation_plan?.plan_kind, 'read-only-automation-plan'],
|
|
75
|
+
['automation_plan.profile', automationPlan.automation_plan?.profile, 'advice-only'],
|
|
76
|
+
['automation_plan.max_risk', automationPlan.automation_plan?.max_risk, 'low'],
|
|
77
|
+
['automation_plan.requires_confirm', automationPlan.automation_plan?.requires_confirm, false],
|
|
78
|
+
['automation_plan.boundary_assertions.automation_plan_artifact', automationPlan.automation_plan?.boundary_assertions?.automation_plan_artifact, false],
|
|
79
|
+
['automation_plan.boundary_assertions.state_directory_created', automationPlan.automation_plan?.boundary_assertions?.state_directory_created, false],
|
|
80
|
+
['automation_plan.boundary_assertions.command_execution', automationPlan.automation_plan?.boundary_assertions?.command_execution, false],
|
|
81
|
+
['automation_plan.boundary_assertions.test_execution', automationPlan.automation_plan?.boundary_assertions?.test_execution, false],
|
|
82
|
+
['automation_plan.boundary_assertions.git_diff_read', automationPlan.automation_plan?.boundary_assertions?.git_diff_read, false],
|
|
83
|
+
['automation_plan.boundary_assertions.subagent', automationPlan.automation_plan?.boundary_assertions?.subagent, false],
|
|
84
|
+
['automation_plan.boundary_assertions.business_source_write', automationPlan.automation_plan?.boundary_assertions?.business_source_write, false],
|
|
85
|
+
['safety.stage', automationPlan.safety?.stage, 'Stage 146'],
|
|
86
|
+
], 'automation --plan --json');
|
|
87
|
+
assertAutomationPlanContextStrategy(automationPlan);
|
|
88
|
+
if (!automationPlan.automation_plan?.plan_digest) throw new Error('automation plan missing plan_digest');
|
|
89
|
+
if (!automationPlan.source_envelopes?.workflow_start_digest) throw new Error('automation plan missing workflow start source digest');
|
|
90
|
+
if (!automationPlan.source_envelopes?.token_savior_budget_digest) throw new Error('automation plan missing token budget source digest');
|
|
91
|
+
if (!automationPlan.source_envelopes?.learning_advice_digest) throw new Error('automation plan missing learning advice source digest');
|
|
92
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'automation', '--plan', '--prompt', '开始P0', '--confirm', '--root', target], {
|
|
93
|
+
allowFailure: true,
|
|
94
|
+
expectOutput: ['automation --plan is read-only'],
|
|
95
|
+
}, options);
|
|
96
|
+
assertLearningRunObservationPreview(target, absoluteTarget, options);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
function assertWorkflowRunPlan(target, options) {
|
|
100
|
+
const runPlan = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--run-plan', '--prompt', 'Fix-login-error', '--json', '--root', target], {}, options), 'workflow --run-plan --json');
|
|
101
|
+
assertJsonMarkers([
|
|
102
|
+
['command', runPlan.command, 'workflow'],
|
|
103
|
+
['mode', runPlan.mode, 'workflow-skill-run-plan'],
|
|
104
|
+
['workflow_run_plan.stage', runPlan.workflow_run_plan?.stage, 'P7'],
|
|
105
|
+
['workflow_run_plan.plan_kind', runPlan.workflow_run_plan?.plan_kind, 'workflow-skill-run-plan'],
|
|
106
|
+
['workflow_run_plan.normalized_intent', runPlan.workflow_run_plan?.normalized_intent, 'debug'],
|
|
107
|
+
['workflow_run_plan.selected_skill', runPlan.workflow_run_plan?.selected_skill, 'vibe-systematic-debugging'],
|
|
108
|
+
['workflow_run_plan.selected_skill_claimed_used', runPlan.workflow_run_plan?.selected_skill_claimed_used, false],
|
|
109
|
+
['workflow_run_plan.expected_handoff.handoff_sidecar_required', runPlan.workflow_run_plan?.expected_handoff?.handoff_sidecar_required, true],
|
|
110
|
+
['workflow_run_plan.expected_handoff.handoff_sidecar_written', runPlan.workflow_run_plan?.expected_handoff?.handoff_sidecar_written, false],
|
|
111
|
+
['workflow_run_plan.single_step_chain.0.execution_authorized', runPlan.workflow_run_plan?.single_step_chain?.[0]?.execution_authorized, false],
|
|
112
|
+
['workflow_run_plan.single_step_chain.0.sidecar_write_authorized', runPlan.workflow_run_plan?.single_step_chain?.[0]?.sidecar_write_authorized, false],
|
|
113
|
+
['workflow_run_plan.workflow_run_plan_invariants.pass', runPlan.workflow_run_plan?.workflow_run_plan_invariants?.pass, true],
|
|
114
|
+
['workflow_run_plan.boundary_assertions.workflow_run_plan_artifact', runPlan.workflow_run_plan?.boundary_assertions?.workflow_run_plan_artifact, false],
|
|
115
|
+
['workflow_run_plan.boundary_assertions.skill_execution', runPlan.workflow_run_plan?.boundary_assertions?.skill_execution, false],
|
|
116
|
+
['workflow_run_plan.boundary_assertions.evidence_write', runPlan.workflow_run_plan?.boundary_assertions?.evidence_write, false],
|
|
117
|
+
['workflow_run_plan.boundary_assertions.subagent', runPlan.workflow_run_plan?.boundary_assertions?.subagent, false],
|
|
118
|
+
['safety.stage', runPlan.safety?.stage, 'P7'],
|
|
119
|
+
], 'workflow --run-plan --json');
|
|
120
|
+
if (!runPlan.workflow_run_plan?.run_plan_digest) throw new Error('workflow run plan missing run_plan_digest');
|
|
121
|
+
if (!runPlan.source_envelopes?.workflow_start_digest) throw new Error('workflow run plan missing workflow start source digest');
|
|
122
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--run-plan', '--intent', 'debug', '--root', target], {
|
|
123
|
+
expectOutput: ['Vibecoding Runtime Workflow Run Plan', 'Stage: P7', 'Selected skill: vibe-systematic-debugging', 'execution_authorized=false', 'Boundary: writes=false; workflow_run_plan_artifact=false'],
|
|
124
|
+
}, options);
|
|
125
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--run-plan', '--intent', 'debug', '--confirm', '--root', target], {
|
|
126
|
+
allowFailure: true,
|
|
127
|
+
expectOutput: ['workflow read-only modes do not accept'],
|
|
128
|
+
}, options);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
function assertSessionContinuityAliases(target, absoluteTarget, options) {
|
|
132
|
+
const checkpoint = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'session', '--checkpoint', '--prompt', 'Fix-login-error', '--json', '--root', target], {}, options), 'session --checkpoint --json');
|
|
133
|
+
assertJsonMarkers([
|
|
134
|
+
['command', checkpoint.command, 'session'],
|
|
135
|
+
['mode', checkpoint.mode, 'session-checkpoint'],
|
|
136
|
+
['session_checkpoint.stage', checkpoint.session_checkpoint?.stage, 'Stage 23'],
|
|
137
|
+
['session_checkpoint.checkpoint_kind', checkpoint.session_checkpoint?.checkpoint_kind, 'session-checkpoint'],
|
|
138
|
+
['session_checkpoint.selected_skill', checkpoint.session_checkpoint?.selected_skill, 'vibe-systematic-debugging'],
|
|
139
|
+
['session_checkpoint.boundary_assertions.session_checkpoint_artifact', checkpoint.session_checkpoint?.boundary_assertions?.session_checkpoint_artifact, false],
|
|
140
|
+
['session_checkpoint.boundary_assertions.skill_execution', checkpoint.session_checkpoint?.boundary_assertions?.skill_execution, false],
|
|
141
|
+
['session_checkpoint.boundary_assertions.command_execution', checkpoint.session_checkpoint?.boundary_assertions?.command_execution, false],
|
|
142
|
+
['session_checkpoint.boundary_assertions.git_write', checkpoint.session_checkpoint?.boundary_assertions?.git_write, false],
|
|
143
|
+
['safety.stage', checkpoint.safety?.stage, 'Stage 23'],
|
|
144
|
+
], 'session --checkpoint --json');
|
|
145
|
+
if (!checkpoint.session_checkpoint?.checkpoint_digest) throw new Error('session checkpoint missing checkpoint_digest');
|
|
146
|
+
const checkpointFile = path.join(absoluteTarget, 'session-checkpoint.json');
|
|
147
|
+
fs.writeFileSync(checkpointFile, `${JSON.stringify(checkpoint)}\n`, 'utf8');
|
|
148
|
+
|
|
149
|
+
const handoff = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'session', '--handoff', '--prompt', 'Fix-login-error', '--json', '--root', target], {}, options), 'session --handoff --json');
|
|
150
|
+
assertJsonMarkers([
|
|
151
|
+
['command', handoff.command, 'session'],
|
|
152
|
+
['mode', handoff.mode, 'session-handoff'],
|
|
153
|
+
['session_handoff.stage', handoff.session_handoff?.stage, 'Stage 23'],
|
|
154
|
+
['session_handoff.checkpoint_kind', handoff.session_handoff?.checkpoint_kind, 'session-handoff'],
|
|
155
|
+
['session_handoff.selected_skill', handoff.session_handoff?.selected_skill, 'vibe-systematic-debugging'],
|
|
156
|
+
['session_handoff.boundary_assertions.session_handoff_artifact', handoff.session_handoff?.boundary_assertions?.session_handoff_artifact, false],
|
|
157
|
+
['session_handoff.boundary_assertions.workflow_execution', handoff.session_handoff?.boundary_assertions?.workflow_execution, false],
|
|
158
|
+
['session_handoff.boundary_assertions.subagent', handoff.session_handoff?.boundary_assertions?.subagent, false],
|
|
159
|
+
['safety.stage', handoff.safety?.stage, 'Stage 23'],
|
|
160
|
+
], 'session --handoff --json');
|
|
161
|
+
if (!handoff.session_handoff?.handoff_digest) throw new Error('session handoff missing handoff_digest');
|
|
162
|
+
|
|
163
|
+
const resume = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'session', '--resume', '--from-file', path.join(target, 'session-checkpoint.json'), '--json', '--root', target], {}, options), 'session --resume --json');
|
|
164
|
+
assertJsonMarkers([
|
|
165
|
+
['command', resume.command, 'session'],
|
|
166
|
+
['mode', resume.mode, 'session-resume'],
|
|
167
|
+
['session_resume.stage', resume.session_resume?.stage, 'Stage 23'],
|
|
168
|
+
['session_resume.resume_kind', resume.session_resume?.resume_kind, 'session-resume'],
|
|
169
|
+
['session_resume.source_checkpoint_kind', resume.session_resume?.source_checkpoint_kind, 'session-checkpoint'],
|
|
170
|
+
['session_resume.selected_skill', resume.session_resume?.selected_skill, 'vibe-systematic-debugging'],
|
|
171
|
+
['session_resume.resume_verification.pass', resume.session_resume?.resume_verification?.pass, true],
|
|
172
|
+
['session_resume.boundary_assertions.session_resume_artifact', resume.session_resume?.boundary_assertions?.session_resume_artifact, false],
|
|
173
|
+
['session_resume.boundary_assertions.skill_execution', resume.session_resume?.boundary_assertions?.skill_execution, false],
|
|
174
|
+
['session_resume.boundary_assertions.git_write', resume.session_resume?.boundary_assertions?.git_write, false],
|
|
175
|
+
['safety.stage', resume.safety?.stage, 'Stage 23'],
|
|
176
|
+
], 'session --resume --json');
|
|
177
|
+
if (!resume.session_resume?.resume_digest) throw new Error('session resume missing resume_digest');
|
|
178
|
+
|
|
179
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'session', '--checkpoint', '--prompt', 'Fix-login-error', '--root', target], {
|
|
180
|
+
expectOutput: ['Vibecoding Runtime Session Checkpoint', 'Stage: Stage 23', 'Selected skill: vibe-systematic-debugging', 'Boundary: writes=false; session_checkpoint_artifact=false'],
|
|
181
|
+
}, options);
|
|
182
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'session', '--resume', '--from-file', path.join(target, 'session-checkpoint.json'), '--root', target], {
|
|
183
|
+
expectOutput: ['Vibecoding Runtime Session Resume', 'Stage: Stage 23', 'Source verification: pass', 'Boundary: writes=false; session_resume_artifact=false'],
|
|
184
|
+
}, options);
|
|
185
|
+
|
|
186
|
+
for (const [mode, flag] of [['--checkpoint', '--confirm'], ['--handoff', '--run'], ['--resume', '--confirm']]) {
|
|
187
|
+
const args = mode === '--resume'
|
|
188
|
+
? ['tools/vibe-runtime/index.mjs', 'session', mode, '--from-file', path.join(target, 'session-checkpoint.json'), flag, '--root', target]
|
|
189
|
+
: ['tools/vibe-runtime/index.mjs', 'session', mode, '--intent', 'debug', flag, '--root', target];
|
|
190
|
+
run('node', args, {
|
|
191
|
+
allowFailure: true,
|
|
192
|
+
expectOutput: [`session ${mode} is read-only`],
|
|
193
|
+
}, options);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
function assertSessionSkillAliases(target, start, receipt, options) {
|
|
198
|
+
const sessionStart = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'session', '--start', '--prompt', 'Fix-login-error', '--json', '--root', target], {}, options), 'session --start --json');
|
|
199
|
+
assertJsonMarkers([
|
|
200
|
+
['command', sessionStart.command, 'session'],
|
|
201
|
+
['mode', sessionStart.mode, 'agent-session-start-alias'],
|
|
202
|
+
['session_start_alias.stage', sessionStart.session_start_alias?.stage, 'Stage 16'],
|
|
203
|
+
['session_start_alias.alias_kind', sessionStart.session_start_alias?.alias_kind, 'agent-session-start-alias'],
|
|
204
|
+
['session_start_alias.canonical_command', sessionStart.session_start_alias?.canonical_command, 'workflow --start'],
|
|
205
|
+
['session_start_alias.canonical_mode', sessionStart.session_start_alias?.canonical_mode, 'unified-workflow-start'],
|
|
206
|
+
['session_start_alias.selected_skill', sessionStart.session_start_alias?.selected_skill, start.workflow_start?.receipt_summary?.selected_skill],
|
|
207
|
+
['session_start_alias.start_contract_digest', sessionStart.session_start_alias?.start_contract_digest, start.workflow_start?.start_here_contract?.contract_digest],
|
|
208
|
+
['session_start_alias.workflow_start_digest', sessionStart.session_start_alias?.workflow_start_digest, start.workflow_start?.start_digest],
|
|
209
|
+
['session_start_alias.skill_execution_claimed', sessionStart.session_start_alias?.skill_execution_claimed, false],
|
|
210
|
+
['session_start_alias.command_execution_claimed', sessionStart.session_start_alias?.command_execution_claimed, false],
|
|
211
|
+
['session_start_alias.subagent_dispatch_claimed', sessionStart.session_start_alias?.subagent_dispatch_claimed, false],
|
|
212
|
+
['session_start_alias.git_write_claimed', sessionStart.session_start_alias?.git_write_claimed, false],
|
|
213
|
+
['workflow_start.start_here_contract.expected_first_skill', sessionStart.workflow_start?.start_here_contract?.expected_first_skill, start.workflow_start?.start_here_contract?.expected_first_skill],
|
|
214
|
+
['workflow_start.start_here_contract.skill_path', sessionStart.workflow_start?.start_here_contract?.skill_path, start.workflow_start?.start_here_contract?.skill_path],
|
|
215
|
+
['workflow_start.boundary_assertions.workflow_start_artifact', sessionStart.workflow_start?.boundary_assertions?.workflow_start_artifact, false],
|
|
216
|
+
['safety.stage', sessionStart.safety?.stage, 'Stage 93'],
|
|
217
|
+
], 'session --start --json');
|
|
218
|
+
if (!sessionStart.session_start_alias?.alias_digest) throw new Error('session start alias missing alias_digest');
|
|
219
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'session', '--start', '--prompt', 'Fix-login-error', '--root', target], {
|
|
220
|
+
expectOutput: ['Vibecoding Runtime Session Start', 'Stage: Stage 16', 'canonical=workflow --start', 'Selected skill: vibe-systematic-debugging', 'Boundary: writes=false; session_start_alias_artifact=false'],
|
|
221
|
+
}, options);
|
|
222
|
+
|
|
223
|
+
const skillSelect = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'skill', '--select', '--intent', 'review', '--json', '--root', target], {}, options), 'skill --select --json');
|
|
224
|
+
assertJsonMarkers([
|
|
225
|
+
['command', skillSelect.command, 'skill'],
|
|
226
|
+
['mode', skillSelect.mode, 'skill-select-alias'],
|
|
227
|
+
['skill_select_alias.stage', skillSelect.skill_select_alias?.stage, 'Stage 16'],
|
|
228
|
+
['skill_select_alias.alias_kind', skillSelect.skill_select_alias?.alias_kind, 'skill-select-alias'],
|
|
229
|
+
['skill_select_alias.canonical_command', skillSelect.skill_select_alias?.canonical_command, 'workflow --receipt'],
|
|
230
|
+
['skill_select_alias.canonical_mode', skillSelect.skill_select_alias?.canonical_mode, 'visible-skill-invocation'],
|
|
231
|
+
['skill_select_alias.selected_skill', skillSelect.skill_select_alias?.selected_skill, receipt.workflow_receipt?.selected_skill],
|
|
232
|
+
['skill_select_alias.workflow_receipt_digest', skillSelect.skill_select_alias?.workflow_receipt_digest, receipt.workflow_receipt?.receipt_digest],
|
|
233
|
+
['skill_select_alias.skill_execution_claimed', skillSelect.skill_select_alias?.skill_execution_claimed, false],
|
|
234
|
+
['skill_select_alias.workflow_execution_claimed', skillSelect.skill_select_alias?.workflow_execution_claimed, false],
|
|
235
|
+
['skill_select_alias.command_execution_claimed', skillSelect.skill_select_alias?.command_execution_claimed, false],
|
|
236
|
+
['skill_select_alias.subagent_dispatch_claimed', skillSelect.skill_select_alias?.subagent_dispatch_claimed, false],
|
|
237
|
+
['skill_select_alias.git_write_claimed', skillSelect.skill_select_alias?.git_write_claimed, false],
|
|
238
|
+
['workflow_receipt.selected_skill', skillSelect.workflow_receipt?.selected_skill, receipt.workflow_receipt?.selected_skill],
|
|
239
|
+
['workflow_receipt.boundary_assertions.workflow_receipt_artifact', skillSelect.workflow_receipt?.boundary_assertions?.workflow_receipt_artifact, false],
|
|
240
|
+
['safety.stage', skillSelect.safety?.stage, 'Stage 92'],
|
|
241
|
+
], 'skill --select --json');
|
|
242
|
+
if (!skillSelect.skill_select_alias?.alias_digest) throw new Error('skill select alias missing alias_digest');
|
|
243
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'skill', '--select', '--intent', 'review', '--root', target], {
|
|
244
|
+
expectOutput: ['Vibecoding Runtime Skill Select', 'Stage: Stage 16', 'canonical=workflow --receipt', 'Selected skill: vibe-requesting-code-review', 'Skill execution claimed: false', 'Boundary: writes=false; skill_select_alias_artifact=false'],
|
|
245
|
+
}, options);
|
|
246
|
+
|
|
247
|
+
const sessionCloseEvidenceFile = `${target}/session-close-done.md`;
|
|
248
|
+
fs.writeFileSync(path.join(repoRoot, sessionCloseEvidenceFile), completionEvidenceBundleFixtures.doneText, 'utf8');
|
|
249
|
+
const canonicalClose = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'completion', '--evidence-bundle', '--from-file', sessionCloseEvidenceFile, '--json', '--root', target], {}, options), 'completion --evidence-bundle for session close --json');
|
|
250
|
+
const sessionClose = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'session', '--close', '--from-file', sessionCloseEvidenceFile, '--json', '--root', target], {}, options), 'session --close --json');
|
|
251
|
+
assertJsonMarkers([
|
|
252
|
+
['command', sessionClose.command, 'session'],
|
|
253
|
+
['mode', sessionClose.mode, 'session-close-evidence-alias'],
|
|
254
|
+
['session_close_alias.stage', sessionClose.session_close_alias?.stage, 'Stage 20'],
|
|
255
|
+
['session_close_alias.alias_kind', sessionClose.session_close_alias?.alias_kind, 'session-close-evidence-alias'],
|
|
256
|
+
['session_close_alias.canonical_command', sessionClose.session_close_alias?.canonical_command, 'completion --evidence-bundle'],
|
|
257
|
+
['session_close_alias.canonical_mode', sessionClose.session_close_alias?.canonical_mode, 'completion-evidence-bundle'],
|
|
258
|
+
['session_close_alias.closeout_decision', sessionClose.session_close_alias?.closeout_decision, canonicalClose.completion_evidence_bundle?.closeout_decision],
|
|
259
|
+
['session_close_alias.delivery_gate_pass', sessionClose.session_close_alias?.delivery_gate_pass, true],
|
|
260
|
+
['session_close_alias.completion_claim_allowed', sessionClose.session_close_alias?.completion_claim_allowed, true],
|
|
261
|
+
['session_close_alias.git_action_allowed', sessionClose.session_close_alias?.git_action_allowed, false],
|
|
262
|
+
['session_close_alias.platform_action_allowed', sessionClose.session_close_alias?.platform_action_allowed, false],
|
|
263
|
+
['session_close_alias.subagent_allowed', sessionClose.session_close_alias?.subagent_allowed, false],
|
|
264
|
+
['session_close_alias.completion_evidence_bundle_digest', sessionClose.session_close_alias?.completion_evidence_bundle_digest, canonicalClose.completion_evidence_bundle?.bundle_digest],
|
|
265
|
+
['session_close_alias.human_completion_evidence_digest', sessionClose.session_close_alias?.human_completion_evidence_digest, canonicalClose.completion_evidence_bundle?.human_completion_evidence_bundle?.human_completion_evidence_digest],
|
|
266
|
+
['session_close_alias.completion_readiness_digest', sessionClose.session_close_alias?.completion_readiness_digest, canonicalClose.completion_readiness?.readiness_digest],
|
|
267
|
+
['session_close_alias.command_execution_claimed', sessionClose.session_close_alias?.command_execution_claimed, false],
|
|
268
|
+
['session_close_alias.skill_execution_claimed', sessionClose.session_close_alias?.skill_execution_claimed, false],
|
|
269
|
+
['session_close_alias.subagent_dispatch_claimed', sessionClose.session_close_alias?.subagent_dispatch_claimed, false],
|
|
270
|
+
['session_close_alias.git_write_claimed', sessionClose.session_close_alias?.git_write_claimed, false],
|
|
271
|
+
['completion_evidence_bundle.stage', sessionClose.completion_evidence_bundle?.stage, 'Stage 99'],
|
|
272
|
+
['completion_evidence_bundle.human_completion_evidence_bundle.stage', sessionClose.completion_evidence_bundle?.human_completion_evidence_bundle?.stage, 'Stage 124'],
|
|
273
|
+
['completion_evidence_bundle.boundary_assertions.completion_evidence_bundle_artifact', sessionClose.completion_evidence_bundle?.boundary_assertions?.completion_evidence_bundle_artifact, false],
|
|
274
|
+
['safety.stage', sessionClose.safety?.stage, 'Stage 124'],
|
|
275
|
+
], 'session --close --json');
|
|
276
|
+
if (!sessionClose.session_close_alias?.alias_digest) throw new Error('session close alias missing alias_digest');
|
|
277
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'session', '--close', '--from-file', sessionCloseEvidenceFile, '--root', target], {
|
|
278
|
+
expectOutput: ['Vibecoding Runtime Session Close', 'Stage: Stage 20', 'canonical=completion --evidence-bundle', 'Human delivery gate: pass', 'Boundary: writes=false; session_close_alias_artifact=false'],
|
|
279
|
+
}, options);
|
|
280
|
+
|
|
281
|
+
assertSessionContinuityAliases(target, path.join(repoRoot, target), options);
|
|
282
|
+
|
|
283
|
+
for (const [command, flag] of [['session', '--confirm'], ['session', '--write'], ['skill', '--confirm'], ['skill', '--run']]) {
|
|
284
|
+
const args = command === 'session'
|
|
285
|
+
? ['tools/vibe-runtime/index.mjs', command, '--start', '--intent', 'feature', flag, '--root', target]
|
|
286
|
+
: ['tools/vibe-runtime/index.mjs', command, '--select', '--intent', 'review', flag, '--root', target];
|
|
287
|
+
run('node', args, {
|
|
288
|
+
allowFailure: true,
|
|
289
|
+
expectOutput: [`${command} --${command === 'session' ? 'start' : 'select'} is read-only`],
|
|
290
|
+
}, options);
|
|
291
|
+
}
|
|
292
|
+
for (const flag of ['--confirm', '--run']) {
|
|
293
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'session', '--close', flag, '--root', target], {
|
|
294
|
+
allowFailure: true,
|
|
295
|
+
expectOutput: ['session --close is read-only'],
|
|
296
|
+
}, options);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
export function runWorkflowEntryExperienceSmoke(options) {
|
|
301
|
+
const target = '.tmp/vibe-workflow-entry-experience';
|
|
302
|
+
const absoluteTarget = path.join(repoRoot, target);
|
|
303
|
+
fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
304
|
+
|
|
305
|
+
try {
|
|
306
|
+
fs.mkdirSync(absoluteTarget, { recursive: true });
|
|
307
|
+
const contract = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'entry', '--contract', '--intent', 'feature', '--json', '--root', target], {}, options), 'entry --contract --json');
|
|
308
|
+
assertJsonMarkers([
|
|
309
|
+
['command', contract.command, 'entry'],
|
|
310
|
+
['mode', contract.mode, 'workflow-entry-contract'],
|
|
311
|
+
['entry_contract.stage', contract.entry_contract?.stage, 'Stage 91'],
|
|
312
|
+
['entry_contract.contract_kind', contract.entry_contract?.contract_kind, 'workflow-entry-contract'],
|
|
313
|
+
['entry_contract.expected_first_step', contract.entry_contract?.expected_first_step, 'using-vibecoding'],
|
|
314
|
+
['entry_contract.contract_pass', contract.entry_contract?.contract_pass, true],
|
|
315
|
+
['entry_contract.boundary_assertions.entry_contract_artifact', contract.entry_contract?.boundary_assertions?.entry_contract_artifact, false],
|
|
316
|
+
['entry_contract.boundary_assertions.source_write', contract.entry_contract?.boundary_assertions?.source_write, false],
|
|
317
|
+
['safety.stage', contract.safety?.stage, 'Stage 91'],
|
|
318
|
+
], 'entry --contract --json');
|
|
319
|
+
if (!contract.entry_contract?.contract_digest) throw new Error('entry contract missing contract_digest');
|
|
320
|
+
|
|
321
|
+
const receipt = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--receipt', '--intent', 'review', '--json', '--root', target], {}, options), 'workflow --receipt --json');
|
|
322
|
+
assertJsonMarkers([
|
|
323
|
+
['command', receipt.command, 'workflow'],
|
|
324
|
+
['mode', receipt.mode, 'visible-skill-invocation'],
|
|
325
|
+
['workflow_receipt.stage', receipt.workflow_receipt?.stage, 'Stage 92'],
|
|
326
|
+
['workflow_receipt.receipt_kind', receipt.workflow_receipt?.receipt_kind, 'visible-skill-invocation'],
|
|
327
|
+
['workflow_receipt.selected_skill', receipt.workflow_receipt?.selected_skill, 'vibe-requesting-code-review'],
|
|
328
|
+
['workflow_receipt.boundary_assertions.workflow_receipt_artifact', receipt.workflow_receipt?.boundary_assertions?.workflow_receipt_artifact, false],
|
|
329
|
+
['safety.stage', receipt.safety?.stage, 'Stage 92'],
|
|
330
|
+
], 'workflow --receipt --json');
|
|
331
|
+
if (!receipt.workflow_receipt?.receipt_digest) throw new Error('workflow receipt missing receipt_digest');
|
|
332
|
+
|
|
333
|
+
const start = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--start', '--prompt', 'Fix-login-error', '--json', '--root', target], {}, options), 'workflow --start --json');
|
|
334
|
+
assertJsonMarkers([
|
|
335
|
+
['command', start.command, 'workflow'],
|
|
336
|
+
['mode', start.mode, 'unified-workflow-start'],
|
|
337
|
+
['workflow_start.stage', start.workflow_start?.stage, 'Stage 93'],
|
|
338
|
+
['workflow_start.start_kind', start.workflow_start?.start_kind, 'unified-workflow-start'],
|
|
339
|
+
['workflow_start.normalized_intent', start.workflow_start?.normalized_intent, 'debug'],
|
|
340
|
+
['workflow_start.entry_contract_summary.expected_first_step', start.workflow_start?.entry_contract_summary?.expected_first_step, 'using-vibecoding'],
|
|
341
|
+
['workflow_start.receipt_summary.selected_skill', start.workflow_start?.receipt_summary?.selected_skill, 'vibe-systematic-debugging'],
|
|
342
|
+
['workflow_start.entry_summary.entry_classification', start.workflow_start?.entry_summary?.entry_classification, 'evidence_needed'],
|
|
343
|
+
['workflow_start.entry_summary.state_gap_is_expected', start.workflow_start?.entry_summary?.state_gap_is_expected, false],
|
|
344
|
+
['workflow_start.entry_summary.blocking_safety_issues.length', start.workflow_start?.entry_summary?.blocking_safety_issues?.length, 0],
|
|
345
|
+
['workflow_start.entry_summary.state_gap_count', start.workflow_start?.entry_summary?.state_gap_count, 3],
|
|
346
|
+
['workflow_start.entry_summary.planning_gap_count', start.workflow_start?.entry_summary?.planning_gap_count, 4],
|
|
347
|
+
['workflow_start.entry_summary.readiness_blocker_count', start.workflow_start?.entry_summary?.readiness_blocker_count, 12],
|
|
348
|
+
['workflow_start.boundary_assertions.workflow_start_artifact', start.workflow_start?.boundary_assertions?.workflow_start_artifact, false],
|
|
349
|
+
['safety.stage', start.safety?.stage, 'Stage 93'],
|
|
350
|
+
], 'workflow --start --json');
|
|
351
|
+
if (!start.workflow_start?.start_digest) throw new Error('workflow start missing start_digest');
|
|
352
|
+
|
|
353
|
+
assertSessionSkillAliases(target, start, receipt, options);
|
|
354
|
+
|
|
355
|
+
const cockpit = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--cockpit', '--intent', 'implementation', '--json', '--root', target], {}, options), 'workflow --cockpit --json');
|
|
356
|
+
assertJsonMarkers([
|
|
357
|
+
['command', cockpit.command, 'workflow'],
|
|
358
|
+
['mode', cockpit.mode, 'workflow-cockpit'],
|
|
359
|
+
['workflow_cockpit.stage', cockpit.workflow_cockpit?.stage, 'Stage 87'],
|
|
360
|
+
['workflow_cockpit.cockpit_kind', cockpit.workflow_cockpit?.cockpit_kind, 'workflow-cockpit'],
|
|
361
|
+
['workflow_cockpit.self_check_summary.summary_kind', cockpit.workflow_cockpit?.self_check_summary?.summary_kind, 'workflow-cockpit-self-check'],
|
|
362
|
+
['workflow_cockpit.self_check_summary.profile_check.status', cockpit.workflow_cockpit?.self_check_summary?.profile_check?.status, 'external_read_only_check'],
|
|
363
|
+
['workflow_cockpit.self_check_summary.entry_check.recommended_command', cockpit.workflow_cockpit?.self_check_summary?.entry_check?.recommended_command, 'workflow --start --prompt <request> --json'],
|
|
364
|
+
['workflow_cockpit.self_check_summary.readiness_check.ready_to_start', cockpit.workflow_cockpit?.self_check_summary?.readiness_check?.ready_to_start, false],
|
|
365
|
+
['workflow_cockpit.self_check_summary.completion_check.recommended_command', cockpit.workflow_cockpit?.self_check_summary?.completion_check?.recommended_command, 'completion --readiness --from-file <local-completion-evidence-file> --json'],
|
|
366
|
+
['workflow_cockpit.self_check_summary.boundary.command_execution', cockpit.workflow_cockpit?.self_check_summary?.boundary?.command_execution, false],
|
|
367
|
+
['workflow_cockpit.self_check_summary.boundary.skill_execution', cockpit.workflow_cockpit?.self_check_summary?.boundary?.skill_execution, false],
|
|
368
|
+
['workflow_cockpit.self_check_summary.boundary.subagent', cockpit.workflow_cockpit?.self_check_summary?.boundary?.subagent, false],
|
|
369
|
+
['workflow_cockpit.boundary_assertions.workflow_cockpit_artifact', cockpit.workflow_cockpit?.boundary_assertions?.workflow_cockpit_artifact, false],
|
|
370
|
+
['safety.stage', cockpit.safety?.stage, 'Stage 87'],
|
|
371
|
+
], 'workflow --cockpit --json');
|
|
372
|
+
if (!cockpit.workflow_cockpit?.cockpit_digest) throw new Error('workflow cockpit missing cockpit_digest');
|
|
373
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--cockpit', '--intent', 'implementation', '--root', target], {
|
|
374
|
+
expectOutput: ['Vibecoding Runtime Workflow Cockpit', 'Stage: Stage 87', 'Self-check loop:', 'Evidence gaps:', 'Boundary: writes=false; workflow_cockpit_artifact=false'],
|
|
375
|
+
}, options);
|
|
376
|
+
|
|
377
|
+
assertWorkflowRunPlan(target, options);
|
|
378
|
+
|
|
379
|
+
const entrySummary = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--entry-summary', '--prompt', '继续优化入口token和学习建议', '--json', '--root', target], {}, options), 'workflow --entry-summary --json');
|
|
380
|
+
assertJsonMarkers([
|
|
381
|
+
['command', entrySummary.command, 'workflow'],
|
|
382
|
+
['mode', entrySummary.mode, 'entry-runtime-summary'],
|
|
383
|
+
['entry_runtime_summary.stage', entrySummary.entry_runtime_summary?.stage, 'Stage 145'],
|
|
384
|
+
['entry_runtime_summary.summary_kind', entrySummary.entry_runtime_summary?.summary_kind, 'entry-runtime-summary'],
|
|
385
|
+
['entry_runtime_summary.token_budget.recommended_profile', entrySummary.entry_runtime_summary?.token_budget?.recommended_profile, 'tiny_entry'],
|
|
386
|
+
['entry_runtime_summary.learning_advice.automatic_promotion', entrySummary.entry_runtime_summary?.learning_advice?.automatic_promotion, false],
|
|
387
|
+
['entry_runtime_summary.boundary_assertions.entry_runtime_summary_artifact', entrySummary.entry_runtime_summary?.boundary_assertions?.entry_runtime_summary_artifact, false],
|
|
388
|
+
['entry_runtime_summary.boundary_assertions.command_execution', entrySummary.entry_runtime_summary?.boundary_assertions?.command_execution, false],
|
|
389
|
+
['entry_runtime_summary.boundary_assertions.skill_execution', entrySummary.entry_runtime_summary?.boundary_assertions?.skill_execution, false],
|
|
390
|
+
['entry_runtime_summary.boundary_assertions.auto_execution', entrySummary.entry_runtime_summary?.boundary_assertions?.auto_execution, false],
|
|
391
|
+
['entry_runtime_summary.boundary_assertions.subagent', entrySummary.entry_runtime_summary?.boundary_assertions?.subagent, false],
|
|
392
|
+
['safety.stage', entrySummary.safety?.stage, 'Stage 145'],
|
|
393
|
+
], 'workflow --entry-summary --json');
|
|
394
|
+
assertEntrySummaryContextStrategy(entrySummary);
|
|
395
|
+
if (!entrySummary.entry_runtime_summary?.summary_digest) throw new Error('entry runtime summary missing summary_digest');
|
|
396
|
+
if (!entrySummary.source_envelopes?.workflow_start_digest) throw new Error('entry runtime summary missing workflow start source digest');
|
|
397
|
+
if (!entrySummary.source_envelopes?.token_savior_budget_digest) throw new Error('entry runtime summary missing token budget source digest');
|
|
398
|
+
if (!entrySummary.source_envelopes?.learning_advice_digest) throw new Error('entry runtime summary missing learning advice source digest');
|
|
399
|
+
assertAutomationAndLearningPreview(target, absoluteTarget, options);
|
|
400
|
+
|
|
401
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('automation plan smoke created unexpected state directory');
|
|
402
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('workflow entry summary smoke created unexpected state directory');
|
|
403
|
+
|
|
404
|
+
const entrySummaryText = run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--entry-summary', '--prompt', '继续优化入口token和学习建议', '--root', target], {
|
|
405
|
+
expectOutput: ['Vibecoding Runtime Entry Summary', 'Stage: Stage 145', 'Token profile: tiny_entry', 'Learning:', 'Boundary: writes=false; entry_runtime_summary_artifact=false'],
|
|
406
|
+
}, options);
|
|
407
|
+
if (entrySummaryText.status !== 0) throw new Error('workflow --entry-summary text output failed');
|
|
408
|
+
|
|
409
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--entry-summary', '--prompt', '继续优化入口token和学习建议', '--confirm', '--root', target], {
|
|
410
|
+
allowFailure: true,
|
|
411
|
+
expectOutput: ['workflow read-only modes do not accept'],
|
|
412
|
+
}, options);
|
|
413
|
+
|
|
414
|
+
const sequence = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--sequence', '--intent', 'implementation', '--json', '--root', target], {}, options), 'workflow --sequence --json');
|
|
415
|
+
assertJsonMarkers([
|
|
416
|
+
['command', sequence.command, 'workflow'],
|
|
417
|
+
['mode', sequence.mode, 'execution-choreography'],
|
|
418
|
+
['workflow_sequence.stage', sequence.workflow_sequence?.stage, 'Stage 94'],
|
|
419
|
+
['workflow_sequence.sequence_kind', sequence.workflow_sequence?.sequence_kind, 'execution-choreography'],
|
|
420
|
+
['workflow_sequence.normalized_intent', sequence.workflow_sequence?.normalized_intent, 'implementation'],
|
|
421
|
+
['workflow_sequence.boundary_assertions.workflow_sequence_artifact', sequence.workflow_sequence?.boundary_assertions?.workflow_sequence_artifact, false],
|
|
422
|
+
['safety.stage', sequence.safety?.stage, 'Stage 94'],
|
|
423
|
+
], 'workflow --sequence --json');
|
|
424
|
+
if (!sequence.workflow_sequence?.sequence_digest) throw new Error('workflow sequence missing sequence_digest');
|
|
425
|
+
|
|
426
|
+
const brief = parseJsonOutput(run('node', ['tools/vibe-runtime/index.mjs', 'onboarding', '--brief', '--json', '--root', target], {}, options), 'onboarding --brief --json');
|
|
427
|
+
assertJsonMarkers([
|
|
428
|
+
['command', brief.command, 'onboarding'],
|
|
429
|
+
['mode', brief.mode, 'workflow-onboarding-brief'],
|
|
430
|
+
['onboarding_brief.stage', brief.onboarding_brief?.stage, 'Stage 95'],
|
|
431
|
+
['onboarding_brief.brief_kind', brief.onboarding_brief?.brief_kind, 'workflow-onboarding-brief'],
|
|
432
|
+
['onboarding_brief.boundary_assertions.onboarding_brief_artifact', brief.onboarding_brief?.boundary_assertions?.onboarding_brief_artifact, false],
|
|
433
|
+
['safety.stage', brief.safety?.stage, 'Stage 95'],
|
|
434
|
+
], 'onboarding --brief --json');
|
|
435
|
+
if (!brief.onboarding_brief?.brief_digest) throw new Error('onboarding brief missing brief_digest');
|
|
436
|
+
|
|
437
|
+
run('node', ['tools/vibe-doctor/index.mjs', '--workflow-entry', target], {
|
|
438
|
+
allowFailure: true,
|
|
439
|
+
expectOutput: ['Vibecoding Kit Doctor', 'workflow entry'],
|
|
440
|
+
}, options);
|
|
441
|
+
|
|
442
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--start', '--prompt', '继续分析下一轮优化点', '--root', target], {
|
|
443
|
+
expectOutput: ['Vibecoding Runtime Workflow Start', 'Stage: Stage 93', 'Entry summary: planning_needed; state_gap_expected=true', 'First decision: Confirm goal, scope, acceptance, and validation strategy before implementation', 'Boundary: writes=false; workflow_start_artifact=false'],
|
|
444
|
+
}, options);
|
|
445
|
+
|
|
446
|
+
for (const forbidden of ['--confirm', '--write', '--preflight', '--run']) {
|
|
447
|
+
run('node', ['tools/vibe-runtime/index.mjs', 'workflow', '--start', '--intent', 'feature', forbidden, '--root', target], {
|
|
448
|
+
allowFailure: true,
|
|
449
|
+
expectOutput: ['workflow read-only modes do not accept'],
|
|
450
|
+
}, options);
|
|
451
|
+
}
|
|
452
|
+
if (fs.existsSync(path.join(absoluteTarget, '.vibecoding-state'))) throw new Error('workflow entry experience smoke created unexpected state directory');
|
|
453
|
+
} finally {
|
|
454
|
+
if (!options.keepTmp) fs.rmSync(absoluteTarget, { recursive: true, force: true });
|
|
455
|
+
}
|
|
456
|
+
}
|