@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,77 @@
|
|
|
1
|
+
# Architecture
|
|
2
|
+
|
|
3
|
+
Vibecoding Kit is organized around explicit ownership. Runtime behavior, release checks, install assets, and documentation should not collapse into one large module.
|
|
4
|
+
|
|
5
|
+
## Module map
|
|
6
|
+
|
|
7
|
+
```mermaid
|
|
8
|
+
flowchart TD
|
|
9
|
+
user[User request] --> entry[CLAUDE.md / AGENTS.md]
|
|
10
|
+
entry --> skills[skills/]
|
|
11
|
+
entry --> adapters[adapters/]
|
|
12
|
+
entry --> hooks[hooks/]
|
|
13
|
+
|
|
14
|
+
cli[bin/vibe.mjs] --> init[tools/vibe-init/]
|
|
15
|
+
cli --> doctor[tools/vibe-doctor/]
|
|
16
|
+
cli --> lifecycle[tools/vibe-lifecycle/]
|
|
17
|
+
cli --> profile[tools/vibe-profile/]
|
|
18
|
+
cli --> plugin[tools/vibe-plugin-pack/]
|
|
19
|
+
|
|
20
|
+
runtime[tools/vibe-runtime/] --> state[(.vibecoding-state/ explicit only)]
|
|
21
|
+
checks[tools/vibe-runtime-check/] --> source[repo source]
|
|
22
|
+
release[tools/vibe-release-check/] --> source
|
|
23
|
+
release --> examples[examples/]
|
|
24
|
+
release --> templates[templates/]
|
|
25
|
+
|
|
26
|
+
init --> installed[Installed project .vibecoding/]
|
|
27
|
+
templates --> installed
|
|
28
|
+
skills --> installed
|
|
29
|
+
adapters --> installed
|
|
30
|
+
hooks --> installed
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Ownership boundaries
|
|
34
|
+
|
|
35
|
+
| Area | Owner responsibility | Must not own |
|
|
36
|
+
| --- | --- | --- |
|
|
37
|
+
| `bin/` | Thin CLI command routing | Runtime logic, release policy |
|
|
38
|
+
| `skills/` | Workflow skill text, boundaries, handoff discipline | Platform-specific packaging |
|
|
39
|
+
| `adapters/` | Platform adapter metadata and install notes | Shared workflow semantics |
|
|
40
|
+
| `hooks/` | Lightweight bootstrap and handoff helpers | Hidden execution or daemon behavior |
|
|
41
|
+
| `templates/` | Installed entry and evidence templates | Repo-only maintainer docs |
|
|
42
|
+
| `tools/vibe-init/` | Installed layout creation and managed block behavior | Runtime state machine |
|
|
43
|
+
| `tools/vibe-doctor/` | Repo and installed layout diagnostics | Source mutation |
|
|
44
|
+
| `tools/vibe-runtime/` | Local workflow envelopes, evidence, and explicit state commands | GitHub, npm, CI, release-check, doctor |
|
|
45
|
+
| `tools/vibe-runtime-check/` | Read-only source contracts | Runtime execution |
|
|
46
|
+
| `tools/vibe-release-check/` | Release smoke suites and package/install boundaries | Runtime core ownership |
|
|
47
|
+
| `docs/` | User, maintainer, and release guidance | Executable behavior |
|
|
48
|
+
| `examples/` | Reproducible adoption and compliance examples | Product runtime code |
|
|
49
|
+
| `fork/` | Reference submodules only | npm package contents or runtime assets |
|
|
50
|
+
|
|
51
|
+
## Dependency direction
|
|
52
|
+
|
|
53
|
+
- Runtime core can depend on stable local model helpers in its own layer.
|
|
54
|
+
- Runtime core must not depend on GitHub, npm publishing, CI, doctor, runtime-check, or release-check.
|
|
55
|
+
- Release checks may inspect package metadata, repo layout, docs, examples, and runtime command output.
|
|
56
|
+
- Install tooling may copy curated assets into `.vibecoding/`, but must not copy `fork/`.
|
|
57
|
+
- Docs can describe all layers, but docs must not be the only enforcement for package and safety boundaries.
|
|
58
|
+
|
|
59
|
+
## State lifecycle
|
|
60
|
+
|
|
61
|
+
Vibecoding Kit keeps default behavior lightweight:
|
|
62
|
+
|
|
63
|
+
1. Entry files route the agent to the minimum suitable workflow.
|
|
64
|
+
2. Skills define workflow expectations and handoff boundaries.
|
|
65
|
+
3. Runtime commands only create `.vibecoding-state/` when the invoked command explicitly allows it.
|
|
66
|
+
4. Doctor and runtime-check are read-only diagnostics.
|
|
67
|
+
5. Release-check verifies repo, install, runtime, and package boundaries before publication.
|
|
68
|
+
|
|
69
|
+
## High-risk areas
|
|
70
|
+
|
|
71
|
+
Treat these changes as high risk and require stronger validation:
|
|
72
|
+
|
|
73
|
+
- Command execution or allowlists.
|
|
74
|
+
- Scheduler, daemon, queue, retry, lease, or persistent state behavior.
|
|
75
|
+
- Source writes, source apply, merge, git operations, PR, push, tag, or release workflows.
|
|
76
|
+
- Platform API, MCP, model, or real subagent invocation.
|
|
77
|
+
- Installed layout or JSON envelope changes consumed by external agents.
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
# CI Evidence Onboarding
|
|
2
|
+
|
|
3
|
+
本文档说明如何把 Vibecoding Kit 的 local evidence 从 `L1 manual evidence` 升级到 `L2 CI generated evidence`。
|
|
4
|
+
|
|
5
|
+
核心边界:CI 可以生成 evidence,runtime 只读验证本地 JSON envelope。runtime 不运行测试、不读取 git diff、不访问 CI API、不提交、不创建 PR。
|
|
6
|
+
|
|
7
|
+
## 目标
|
|
8
|
+
|
|
9
|
+
- 让团队用 CI 生成 `test-evidence.json` 和 `diff-coverage.json`。
|
|
10
|
+
- 保持 evidence contract 与 `templates/evidence/` 一致。
|
|
11
|
+
- 让 completion readiness 基于用户或 CI 提供的本地 artifact,而不是基于 runtime 自动执行。
|
|
12
|
+
- 把需求、产品、UI、架构、implementation task、diff coverage、test evidence 和 completion bundle 串成可复验的本地证据链。
|
|
13
|
+
|
|
14
|
+
## Evidence Supply Chain v2 for CI
|
|
15
|
+
|
|
16
|
+
CI 在 P57 链路中只承担 producer 角色:它可以运行项目自己的测试、计算项目自己的 diff metadata、写出本地 JSON evidence;runtime 仍只是 consumer。
|
|
17
|
+
|
|
18
|
+
```text
|
|
19
|
+
CI/user facts
|
|
20
|
+
-> ci-evidence-input.json
|
|
21
|
+
-> test-evidence.json + diff-coverage.json
|
|
22
|
+
-> completion --evidence-bundle
|
|
23
|
+
-> completion_evidence.task_completion_summary
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
迁移到团队 CI 时,建议把 `ci-evidence-input.json` 视为 CI job 的显式交接合同:所有 command、exit code、timestamp、changed files、task refs、scenario refs 和 digest 都来自 CI 或人工输入。runtime 不访问 CI API、不读取真实 git diff、不运行自动测试。
|
|
27
|
+
|
|
28
|
+
## 推荐数据流
|
|
29
|
+
|
|
30
|
+
```mermaid
|
|
31
|
+
flowchart TD
|
|
32
|
+
A[CI runs tests] --> B[Capture command, exit_code, timestamp]
|
|
33
|
+
B --> C[Compute output_digest]
|
|
34
|
+
C --> D[Write test-evidence.json]
|
|
35
|
+
|
|
36
|
+
E[CI computes changed files or diff coverage] --> F[Bind changed files to task_refs]
|
|
37
|
+
F --> G[Compute file or diff digest]
|
|
38
|
+
G --> H[Write diff-coverage.json]
|
|
39
|
+
|
|
40
|
+
D --> I[Runtime completion evidence bundle]
|
|
41
|
+
H --> I
|
|
42
|
+
I --> J[Human readiness decision]
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
注释:CI 负责生成证据,runtime 负责只读验证证据格式、refs、digest 和边界声明。
|
|
46
|
+
|
|
47
|
+
## 最小 CI 示例
|
|
48
|
+
|
|
49
|
+
仓库内提供无依赖 Node 示例,展示如何从 CI/user-provided input 生成 team-mode evidence:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
node examples/ci/generate-test-evidence.mjs --from-file examples/ci/ci-evidence-input.example.json --out .tmp/ci-evidence/test-evidence.json
|
|
53
|
+
node examples/ci/generate-diff-coverage.mjs --from-file examples/ci/ci-evidence-input.example.json --out .tmp/ci-evidence/diff-coverage.json
|
|
54
|
+
node tools/vibe-runtime/index.mjs completion --evidence-bundle --from-product-spec examples/golden-path/product-spec.md --from-plan examples/golden-path/implementation-plan.md --from-test-evidence .tmp/ci-evidence/test-evidence.json --from-diff-coverage .tmp/ci-evidence/diff-coverage.json --json
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
这些脚本位于 `examples/ci/`,是 evidence producer 示例,不是 runtime core。迁移到真实 CI 时,把 `ci-evidence-input.example.json` 替换成 CI job 产出的命令、退出码、输出摘要、changed files、task refs 和 scenario refs。
|
|
58
|
+
|
|
59
|
+
最小输入映射:
|
|
60
|
+
|
|
61
|
+
| 输入字段 | 来源 owner | 注意事项 |
|
|
62
|
+
| --- | --- | --- |
|
|
63
|
+
| test command / exit code / timestamp | CI job | 必须来自真实执行记录,runtime 不补跑测试 |
|
|
64
|
+
| output digest | CI job 或 artifact 生成步骤 | 可以来自日志摘要或 artifact 摘要,但不能保留占位值 |
|
|
65
|
+
| planned files / changed files | CI 或团队 diff 脚本 | runtime 不读取 git diff,只验证你提供的本地 JSON |
|
|
66
|
+
| task refs / scenario refs | implementation plan / scenario artifact | refs 必须稳定,并能和计划或场景文件对齐 |
|
|
67
|
+
| boundary assertions | evidence producer | 必须声明 runtime 没有运行测试、读取 git diff 或写 git |
|
|
68
|
+
|
|
69
|
+
GitHub Actions 示例位于 `examples/ci/github-actions-readiness.yml`。它故意不放在 `.github/workflows/` 下,因此不会自动启用本仓库 CI;业务项目需要显式复制后再按自己的测试命令、task refs、scenario refs、planned files 和 changed files 修改。
|
|
70
|
+
|
|
71
|
+
## 最小 CI 步骤
|
|
72
|
+
|
|
73
|
+
1. 运行团队真实测试命令。
|
|
74
|
+
2. 记录测试命令、退出码和时间戳。
|
|
75
|
+
3. 对测试输出或日志摘要计算 digest,写入 `runs[].output_digest`。
|
|
76
|
+
4. 把测试结果绑定到 `implementation-plan.md` 中的 `task_ref`。
|
|
77
|
+
5. 生成或收集 changed files / diff coverage。
|
|
78
|
+
6. 把每个 changed file 绑定到对应 `task_coverage[].task_ref`。
|
|
79
|
+
7. 对文件内容、diff 片段或 CI artifact 摘要计算 digest。
|
|
80
|
+
8. 运行 completion evidence bundle 做只读验证。
|
|
81
|
+
|
|
82
|
+
## `test-evidence.json` 生成要求
|
|
83
|
+
|
|
84
|
+
CI 至少应填写:
|
|
85
|
+
|
|
86
|
+
- `runs[].command`:CI 实际运行的测试命令。
|
|
87
|
+
- `runs[].exit_code`:真实退出码。
|
|
88
|
+
- `runs[].timestamp`:CI 执行时间。
|
|
89
|
+
- `runs[].output_digest`:测试输出、日志或 artifact 摘要的 digest。
|
|
90
|
+
- `runs[].task_refs`:覆盖的 implementation task refs。
|
|
91
|
+
- `runs[].scenario_refs`:覆盖的 scenario refs;如果当前 team mode 没有 scenario artifact,可以使用团队约定的稳定 ref。
|
|
92
|
+
- `boundary_assertions`:声明 runtime 没有执行命令、测试或 git 操作。
|
|
93
|
+
|
|
94
|
+
## `diff-coverage.json` 生成要求
|
|
95
|
+
|
|
96
|
+
CI 至少应填写:
|
|
97
|
+
|
|
98
|
+
- `planned_files`:来自 implementation plan 的预期文件。
|
|
99
|
+
- `changed_files`:CI 观察到的实际变更文件。
|
|
100
|
+
- `unexpected_files`:不在计划内的文件;非空通常应阻塞 readiness。
|
|
101
|
+
- `missing_files`:计划中预期但未出现的文件;非空需要人工解释。
|
|
102
|
+
- `task_coverage[].task_ref`:对应 implementation task。
|
|
103
|
+
- `task_coverage[].changed_files[].operation`:例如 `add`、`modify`、`delete`、`docs`。
|
|
104
|
+
- `task_coverage[].changed_files[].digest`:文件内容、diff 片段或 artifact 摘要 digest。
|
|
105
|
+
- `boundary_assertions`:声明 runtime 没有读取 git diff、运行测试或写 git。
|
|
106
|
+
|
|
107
|
+
## 可保留但 runtime 不强制验证的信息
|
|
108
|
+
|
|
109
|
+
这些信息有助于人工审计,但当前 runtime 不把它们作为 deterministic contract:
|
|
110
|
+
|
|
111
|
+
- CI provider 名称。
|
|
112
|
+
- CI job URL。
|
|
113
|
+
- build id / run id。
|
|
114
|
+
- artifact URL。
|
|
115
|
+
- artifact digest。
|
|
116
|
+
- commit SHA。
|
|
117
|
+
- workflow name。
|
|
118
|
+
|
|
119
|
+
如果需要更高可信度,把这些信息放入 CI artifact、构建日志或受控存储中;runtime 继续只读验证本地 envelope。
|
|
120
|
+
|
|
121
|
+
## 验证命令
|
|
122
|
+
|
|
123
|
+
Team mode 最小验证:
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind product-spec --from-file product-spec.md --json
|
|
127
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind implementation-plan --from-file implementation-plan.md --json
|
|
128
|
+
node tools/vibe-runtime/index.mjs completion --evidence-bundle --from-product-spec product-spec.md --from-plan implementation-plan.md --from-test-evidence test-evidence.json --from-diff-coverage diff-coverage.json --json
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
Full compliance 验证在此基础上继续补 product discovery、UI design、architecture、traceability、acceptance 和 commit readiness artifact。
|
|
132
|
+
|
|
133
|
+
## 禁止把 CI onboarding 做成 runtime 扩权
|
|
134
|
+
|
|
135
|
+
不要为了提高可信度而让 runtime:
|
|
136
|
+
|
|
137
|
+
- 自动运行测试。
|
|
138
|
+
- 自动读取 git diff。
|
|
139
|
+
- 自动访问 CI provider API。
|
|
140
|
+
- 自动生成可信 evidence。
|
|
141
|
+
- 自动提交、push、创建 PR 或 merge。
|
|
142
|
+
|
|
143
|
+
可信度应来自 CI/provenance 层;runtime 的职责是 deterministic local validation。
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Development Guide
|
|
2
|
+
|
|
3
|
+
This guide is for contributors changing Vibecoding Kit itself.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- Node.js 18 or newer.
|
|
8
|
+
- No runtime third-party npm dependencies are required for the current toolchain.
|
|
9
|
+
|
|
10
|
+
## Common commands
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm run check
|
|
14
|
+
npm run check:arch
|
|
15
|
+
npm run check:doctor
|
|
16
|
+
npm run release:fast
|
|
17
|
+
npm run release:install
|
|
18
|
+
npm run pack:dry-run
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Use focused checks during development. Before a pull request, run the checks that match the changed area.
|
|
22
|
+
|
|
23
|
+
| Changed area | Minimum validation |
|
|
24
|
+
| --- | --- |
|
|
25
|
+
| Docs only | `npm run release:fast`, `npm run check:arch` |
|
|
26
|
+
| Skills or templates | `npm run check`, `npm run release:fast` |
|
|
27
|
+
| Install, adapters, hooks | `npm run release:install`, `npm run check:doctor` |
|
|
28
|
+
| Runtime envelopes or command surface | `npm run check`, `npm run release:runtime:experience` or a narrower runtime suite |
|
|
29
|
+
| Execution/state boundary | `npm run release:runtime:execution`, `npm run release:runtime:state`, then `npm run release:runtime` before release |
|
|
30
|
+
| Package metadata or release boundary | `npm run release:fast`, `npm run pack:dry-run` |
|
|
31
|
+
|
|
32
|
+
## Making changes
|
|
33
|
+
|
|
34
|
+
1. Identify the owner module before editing.
|
|
35
|
+
2. Keep the change narrow and avoid adding generic cross-domain helpers.
|
|
36
|
+
3. Update docs, templates, package metadata, and release checks together when a contract changes.
|
|
37
|
+
4. Preserve explicit approval gates for source writes, command execution, git, platform APIs, real subagents, and persistent state.
|
|
38
|
+
5. Add or update a smoke check when a boundary should be enforced mechanically.
|
|
39
|
+
|
|
40
|
+
## Adding or changing workflow skills
|
|
41
|
+
|
|
42
|
+
- Edit the owning `skills/<name>/SKILL.md` file.
|
|
43
|
+
- Keep trigger conditions, boundaries, handoff requirements, and stop conditions explicit.
|
|
44
|
+
- If installed behavior changes, update `templates/`, adapter docs, and install release checks.
|
|
45
|
+
|
|
46
|
+
## Changing CLI commands
|
|
47
|
+
|
|
48
|
+
- `bin/vibe.mjs` should stay a thin wrapper.
|
|
49
|
+
- Put command behavior in the owning `tools/vibe-*` module.
|
|
50
|
+
- Update `README.md`, relevant tool README files, and release-check coverage when command surface changes.
|
|
51
|
+
|
|
52
|
+
## Package and release boundaries
|
|
53
|
+
|
|
54
|
+
The npm package should include curated project assets only. It must not include:
|
|
55
|
+
|
|
56
|
+
```text
|
|
57
|
+
fork/
|
|
58
|
+
.tmp/
|
|
59
|
+
.vibecoding/
|
|
60
|
+
.vibecoding-state/
|
|
61
|
+
node_modules/
|
|
62
|
+
.git/
|
|
63
|
+
.cursor/
|
|
64
|
+
.cursor-local-assistant-v2/
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Use `package.json.files` as the package allowlist and `npm run pack:dry-run` to inspect the result.
|
|
68
|
+
|
|
69
|
+
## Submodules
|
|
70
|
+
|
|
71
|
+
`fork/` contains reference repositories. They are not runtime dependencies and are not included in npm package contents. If you use a reference project to inform a design, copy the distilled conclusion into this repository's own docs, skills, adapters, or tools instead of copying third-party source.
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
# Evidence Authoring Guide
|
|
2
|
+
|
|
3
|
+
本文档说明 Vibecoding Kit 的 evidence 文件应该如何产生、由谁负责,以及 runtime 会验证什么。
|
|
4
|
+
|
|
5
|
+
核心边界:runtime 只验证用户或 CI 提供的本地 evidence envelope;它不运行测试、不读取 git diff、不提交、不调用平台 API。
|
|
6
|
+
|
|
7
|
+
## Evidence Supply Chain v2
|
|
8
|
+
|
|
9
|
+
P57 的证据链目标是让一次交付能从“为什么做”追到“能否收口”,但每一段仍由对应 owner 提供本地 artifact:
|
|
10
|
+
|
|
11
|
+
```text
|
|
12
|
+
需求 / 产品 / UI / 架构
|
|
13
|
+
-> implementation task registry
|
|
14
|
+
-> diff coverage
|
|
15
|
+
-> test evidence
|
|
16
|
+
-> completion evidence bundle
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
链路要求:
|
|
20
|
+
|
|
21
|
+
- 需求、产品、UI、架构 artifact 给出验收来源和设计边界。
|
|
22
|
+
- `Implementation Task Registry` 是 task refs 的唯一对齐点。
|
|
23
|
+
- `diff-coverage.json` 解释哪些文件变化对应哪些 task refs。
|
|
24
|
+
- `test-evidence.json` 解释哪些测试输出覆盖哪些 task refs 和 scenario refs。
|
|
25
|
+
- completion bundle 只读汇总 evidence,不补跑测试、不读取真实 git、不替用户批准交付。
|
|
26
|
+
|
|
27
|
+
如果 completion bundle 返回 `ok=false`,先把它当作 evidence gap:阅读 `completion_evidence.task_completion_summary`,再检查 `blocked_reasons`。不要把 `ok=false` 解释成系统失败,也不要通过扩权 runtime 来“修复”缺口。
|
|
28
|
+
|
|
29
|
+
## 职责划分
|
|
30
|
+
|
|
31
|
+
| 职责 | Owner | Vibecoding runtime 是否执行 |
|
|
32
|
+
| --- | --- | --- |
|
|
33
|
+
| 运行测试 | 用户 / CI | 否 |
|
|
34
|
+
| 计算真实 diff coverage | 用户 / CI | 否 |
|
|
35
|
+
| 生成 evidence envelope | 用户 / CI / agent 辅助后人工复核 | 否 |
|
|
36
|
+
| 校验 envelope 字段、refs、digest 和边界声明 | Vibecoding runtime | 是,只读 |
|
|
37
|
+
| 判断 completion readiness | Vibecoding runtime | 是,只读 |
|
|
38
|
+
| `git add` / `commit` / `push` / PR / merge | 用户 | 否 |
|
|
39
|
+
|
|
40
|
+
## Evidence 来源模式
|
|
41
|
+
|
|
42
|
+
### 1. Manual evidence
|
|
43
|
+
|
|
44
|
+
适合个人试用、小改动或临时迁移。
|
|
45
|
+
|
|
46
|
+
要求:
|
|
47
|
+
|
|
48
|
+
- 人工记录实际运行过的 command。
|
|
49
|
+
- 保留 `timestamp`。
|
|
50
|
+
- 保留 `output_digest`,即使它来自人工记录的输出摘要。
|
|
51
|
+
- 明确 `task_refs` 和 `scenario_refs`。
|
|
52
|
+
- 明确所有边界字段为 false。
|
|
53
|
+
|
|
54
|
+
局限:manual evidence 依赖人的诚实和流程纪律,适合低风险或过渡阶段。
|
|
55
|
+
|
|
56
|
+
### 2. CI generated evidence
|
|
57
|
+
|
|
58
|
+
适合团队常规交付。
|
|
59
|
+
|
|
60
|
+
推荐流程:
|
|
61
|
+
|
|
62
|
+
```text
|
|
63
|
+
CI runs tests / coverage / diff scripts
|
|
64
|
+
-> CI writes test-evidence.json / diff-coverage.json
|
|
65
|
+
-> user downloads or commits evidence artifact
|
|
66
|
+
-> runtime validates local envelope
|
|
67
|
+
-> human reviews readiness
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
runtime 不需要访问 CI API。CI URL、job id、artifact digest 可以作为普通字段或 evidence text 保留,但 runtime 只对当前 contract 中的 deterministic 字段做判断。平台无关的 CI evidence 生成流程见 `docs/ci-evidence-onboarding.md`。
|
|
71
|
+
|
|
72
|
+
### 3. Agent assisted evidence
|
|
73
|
+
|
|
74
|
+
适合让 agent 帮忙整理 evidence,但不适合让 agent 单方面声明可信。
|
|
75
|
+
|
|
76
|
+
允许:
|
|
77
|
+
|
|
78
|
+
- agent 根据用户提供的日志草拟 JSON envelope。
|
|
79
|
+
- agent 检查 `task_refs`、`scenario_refs`、`changed_files` 是否对齐。
|
|
80
|
+
- agent 提醒缺少 digest、timestamp 或边界字段。
|
|
81
|
+
|
|
82
|
+
不允许:
|
|
83
|
+
|
|
84
|
+
- agent 未经用户或 CI 证据就声称测试已通过。
|
|
85
|
+
- agent 伪造 `output_digest` 的来源。
|
|
86
|
+
- runtime 自动运行测试、读取 git diff 或提交。
|
|
87
|
+
|
|
88
|
+
## Evidence Trust Tiers
|
|
89
|
+
|
|
90
|
+
Evidence 的可信度来自生成来源,不来自 runtime 本身。runtime 只读验证 envelope 是否完整、可对齐、边界声明是否保守;它不会单独证明测试真的在可信环境运行过。
|
|
91
|
+
|
|
92
|
+
| Tier | 名称 | 适用场景 | 最小要求 | runtime 能证明什么 |
|
|
93
|
+
| --- | --- | --- | --- | --- |
|
|
94
|
+
| `L1` | manual evidence | 个人试用、低风险修复、迁移过渡 | 人工记录 command、exit code、timestamp、digest、task refs | envelope 字段完整,refs / digest / boundary contract 可验证 |
|
|
95
|
+
| `L2` | CI generated evidence | 团队常规交付 | CI 生成 `test-evidence.json` / `diff-coverage.json`,保留 job id、artifact digest 或日志摘要 | 本地 envelope 与 task / scenario / changed files 对齐 |
|
|
96
|
+
| `L3` | provenance-backed evidence | 高风险发布、审计、合规 | CI artifact、受控存储、签名或可追溯构建日志提供来源证明 | runtime 验证本地 envelope;真实性由 CI/provenance 层证明 |
|
|
97
|
+
|
|
98
|
+
采用建议:
|
|
99
|
+
|
|
100
|
+
- 从 `L1` 跑通 team-mode 结构。
|
|
101
|
+
- 团队稳定后,把测试和 diff coverage 生成迁移到 `L2`。
|
|
102
|
+
- 只有发布审计或合规要求出现时,才要求 `L3`。
|
|
103
|
+
|
|
104
|
+
不要通过扩权 runtime 来提高 trust tier。更高可信度应来自 CI/provenance,而不是让 runtime 自动运行测试、读 git diff 或提交。
|
|
105
|
+
|
|
106
|
+
## 最小模板
|
|
107
|
+
|
|
108
|
+
复制模板后再填写真实 evidence,不要直接信任示例占位值。模板目录内的最小 onboarding 说明见 `templates/evidence/README.md`:
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
cp templates/evidence/test-evidence.json test-evidence.json
|
|
112
|
+
cp templates/evidence/diff-coverage.json diff-coverage.json
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
Windows PowerShell 可用:
|
|
116
|
+
|
|
117
|
+
```powershell
|
|
118
|
+
Copy-Item templates/evidence/test-evidence.json test-evidence.json
|
|
119
|
+
Copy-Item templates/evidence/diff-coverage.json diff-coverage.json
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### `test-evidence.json` 必填含义
|
|
123
|
+
|
|
124
|
+
模板位置:`templates/evidence/test-evidence.json`。
|
|
125
|
+
|
|
126
|
+
最小关注字段:
|
|
127
|
+
|
|
128
|
+
- `runs[].command`:用户或 CI 实际运行过的测试命令。
|
|
129
|
+
- `runs[].exit_code`:真实退出码。
|
|
130
|
+
- `runs[].timestamp`:测试执行时间。
|
|
131
|
+
- `runs[].output_digest`:测试输出或日志摘要的 digest,占位值必须替换。
|
|
132
|
+
- `runs[].task_refs`:必须能对齐 `implementation-plan.md` 的 `Implementation Task Registry`。
|
|
133
|
+
- `runs[].scenario_refs`:如果有 scenario artifact,应绑定对应 scenario;team-mode 最小 demo 可以保留团队自定义 scenario ref。
|
|
134
|
+
- `boundary_assertions`:用于声明 runtime 没有执行命令、测试或 git 操作。
|
|
135
|
+
|
|
136
|
+
### `diff-coverage.json` 必填含义
|
|
137
|
+
|
|
138
|
+
模板位置:`templates/evidence/diff-coverage.json`。
|
|
139
|
+
|
|
140
|
+
最小关注字段:
|
|
141
|
+
|
|
142
|
+
- `planned_files`:计划中允许或预期触碰的文件。
|
|
143
|
+
- `changed_files`:用户或 CI 观察到的实际变更文件。
|
|
144
|
+
- `unexpected_files` / `missing_files`:显式记录偏差;非空通常会降低 readiness。
|
|
145
|
+
- `task_coverage[].task_ref`:必须能对齐 `Implementation Task Registry`。
|
|
146
|
+
- `task_coverage[].changed_files[].operation`:应匹配该 task 允许的操作,例如 `add`、`modify`、`docs`。
|
|
147
|
+
- `task_coverage[].changed_files[].digest`:文件内容或 diff 片段摘要,占位值必须替换。
|
|
148
|
+
- `boundary_assertions`:用于声明 runtime 没有读取 git diff、运行命令、测试或写 git。
|
|
149
|
+
|
|
150
|
+
## 常见失败对照
|
|
151
|
+
|
|
152
|
+
| blocked reason / 现象 | 通常原因 | 修复方向 |
|
|
153
|
+
| --- | --- | --- |
|
|
154
|
+
| 缺少 `output_digest` | `test-evidence.json` 仍是模板占位或没有记录测试输出摘要 | 用真实测试日志、CI artifact 或人工摘要重新计算 digest |
|
|
155
|
+
| `task_refs` 无法对齐 | evidence 引用了 implementation plan 中不存在的 task id | 统一 `implementation-plan.md` 的 `Implementation Task Registry` 和 evidence refs |
|
|
156
|
+
| `unexpected_files` 非空 | 实际改动超出计划文件 | 更新计划解释新增文件,或回收不属于本任务的改动 |
|
|
157
|
+
| `operation mismatch` | diff coverage 的 operation 与计划允许操作不一致 | 修正 task 计划或 diff coverage 中的 operation |
|
|
158
|
+
| `commit_execution_authorized=true` / `git_write=true` | evidence 把 git 动作授权给了 runtime | 改回 false;提交、push、PR 仍由用户或 CI 显式执行 |
|
|
159
|
+
|
|
160
|
+
## Trust boundary
|
|
161
|
+
|
|
162
|
+
Vibecoding Kit 能证明:
|
|
163
|
+
|
|
164
|
+
- envelope 是本地可读 JSON。
|
|
165
|
+
- 必要字段存在。
|
|
166
|
+
- `task_refs` 能与 `Implementation Task Registry` 对齐。
|
|
167
|
+
- `scenario_refs` 能与 scenario artifact 对齐。
|
|
168
|
+
- `changed_files` 被 task coverage 解释。
|
|
169
|
+
- operation、digest、unexpected/missing files 和边界声明符合 contract。
|
|
170
|
+
|
|
171
|
+
Vibecoding Kit 不能单独证明:
|
|
172
|
+
|
|
173
|
+
- 测试真的在可信环境运行过。
|
|
174
|
+
- diff coverage 一定来自真实 git diff。
|
|
175
|
+
- digest 一定由 CI 生成而不是人工填写。
|
|
176
|
+
- 人工没有篡改 evidence。
|
|
177
|
+
|
|
178
|
+
如果需要更高可信度,把真实性放到 CI / provenance 层:由 CI 生成 evidence,并通过构建日志、artifact digest、签名或受控存储提供来源证明;runtime 继续只读验证本地 envelope。
|
|
179
|
+
|
|
180
|
+
## 推荐采用顺序
|
|
181
|
+
|
|
182
|
+
1. 先跑 `examples/golden-path/`,理解最小 team-mode evidence 结构。
|
|
183
|
+
2. 从 `templates/evidence/` 复制 `test-evidence.json` 和 `diff-coverage.json`。
|
|
184
|
+
3. 在业务项目中手写一份 manual evidence,跑通 methodology gate 和 completion readiness。
|
|
185
|
+
4. 把 `test-evidence.json` 和 `diff-coverage.json` 改为 CI 生成;具体流程见 `docs/ci-evidence-onboarding.md`。
|
|
186
|
+
5. 高风险交付再升级到 full compliance bundle。
|
|
187
|
+
|
|
188
|
+
不要为了降低摩擦而让 runtime 自动执行测试、读 git diff 或提交;这会破坏 Vibecoding Kit 的核心信任边界。
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
# Golden Path:分层采用路径
|
|
2
|
+
|
|
3
|
+
本文档给 Vibecoding Kit 的新用户和维护者一个最小上手路线。它不是新的 workflow,也不是自动执行系统;它只说明应该从哪一层开始采用证据链。
|
|
4
|
+
|
|
5
|
+
文档层级:L2 团队采用层入口。首次安装先读 L1 的 `README.md`、`docs/user-guide.md` 和 `docs/quick-recipes.md`;只有维护 runtime、release 或长期治理时才进入 L3 的 `docs/runtime-roadmap.md`。
|
|
6
|
+
|
|
7
|
+
## 目标
|
|
8
|
+
|
|
9
|
+
- 先让用户跑通最小路径,再逐步升级到完整 evidence chain。
|
|
10
|
+
- 降低首次理解成本,避免一开始要求用户掌握所有 artifact。
|
|
11
|
+
- 保持 runtime 只读边界:不自动运行测试、不读取 git diff、不提交、不调用 subagent / MCP / platform API。
|
|
12
|
+
|
|
13
|
+
## 两档体验与三层采用
|
|
14
|
+
|
|
15
|
+
`safe governance mode` 是默认体验:轻量入口、本地只读、人工确认,适合 quickstart / team / full compliance 三层采用路径。
|
|
16
|
+
|
|
17
|
+
`legacy-workflow-discipline mode` 只在显式 opt-in 时启用:它强化 `using-vibecoding` 入口纪律、连续计划推进、SDD task loop、evidence 串联、review blocker 和本地 transcript behavior eval。该模式仍只把 SDD dispatch、workspace contract、task-commit gate 和 evidence chain 写成 `.vibecoding-state/` 下的本地 sidecar;不真实调用 subagent、不自动创建 git worktree、不自动提交、不默认写业务源码。
|
|
18
|
+
|
|
19
|
+
## 三层采用模型
|
|
20
|
+
|
|
21
|
+
先按风险选最小足够层级:
|
|
22
|
+
|
|
23
|
+
- `quickstart mode`:只证明安装和入口纪律,不要求业务 artifact。
|
|
24
|
+
- `team mode`:常规功能交付,只要求 `product-spec.md`、`implementation-plan.md`、`test-evidence.json`、`diff-coverage.json`。
|
|
25
|
+
- `full compliance mode`:只在高风险发布或审计时启用完整产品/UI/架构/验收/commit readiness 链路。
|
|
26
|
+
|
|
27
|
+
| 模式 | 适合对象 | 需要理解的内容 | 推荐产物 | 验证方式 |
|
|
28
|
+
| --- | --- | --- | --- | --- |
|
|
29
|
+
| `quickstart mode` | 首次安装、个人试用、评估入口纪律 | 安装、doctor、workflow start、只读边界 | 无强制业务 artifact | `node bin/vibe.mjs doctor --root <project-root>` |
|
|
30
|
+
| `team mode` | 团队规范、常规功能交付 | 需求到实现计划、测试证据 envelope、人工收口 | `product-spec.md`、`implementation-plan.md`、`test-evidence.json`、`diff-coverage.json` | methodology gate + completion readiness |
|
|
31
|
+
| `full compliance mode` | 高风险交付、发布前审计、平台治理 | 完整产品/UI/架构/交付/测试/commit readiness 链路 | full-chain artifact bundle | `completion --evidence-bundle ... --json` |
|
|
32
|
+
|
|
33
|
+
## Quickstart mode
|
|
34
|
+
|
|
35
|
+
目标:证明项目入口已安装,并让 agent 遵守轻量 workflow 判断。`workflow --start` 是入口判断,不是“必须已有 workflow state 才能成功”的 gate;对新会话或规划类请求,缺少 state 通常表示需要先确认目标、范围、验收和验证策略,而不是 runtime failure。
|
|
36
|
+
|
|
37
|
+
首次会话验收 prompt:`我想给这个项目加一个小功能,请先判断下一步。` 预期 agent 先按文件路径读取 `.vibecoding/skills/using-vibecoding/SKILL.md`,输出 route、下一步人工动作和验证策略缺口;不注入完整 skill,不执行命令,不调用 subagent,不写源码或 git。
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
node bin/vibe.mjs init --target ../my-project --platform cursor
|
|
41
|
+
node bin/vibe.mjs doctor --root ../my-project
|
|
42
|
+
node tools/vibe-runtime/index.mjs workflow --start --prompt "implement a small feature" --json
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
边界:
|
|
46
|
+
|
|
47
|
+
- 不需要先写完整 PRD。
|
|
48
|
+
- 不创建 `.vibecoding-state/`。
|
|
49
|
+
- 不执行 workflow skill。
|
|
50
|
+
- 不调用 subagent。
|
|
51
|
+
- 不写业务源码。
|
|
52
|
+
|
|
53
|
+
## Team mode
|
|
54
|
+
|
|
55
|
+
目标:让团队在不引入完整合规成本的前提下,形成可验证的交付闭环。
|
|
56
|
+
|
|
57
|
+
如果想先跑通最小示例,使用仓库内 demo:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
npm run demo:golden-path
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
维护本仓库时,runtime 分层 suite 只作为局部回归入口:改 UX / entry / advice 时优先跑 `npm run release:runtime:experience`,改 handoff / evidence / ledger 时优先跑 `npm run release:runtime:state`,改 hook / scheduler / subagent / platform 边界时优先跑 `npm run release:runtime:execution`。发布收口仍以 full `npm run release:runtime` 为准。若 release 收口或验证耗时异常,可加 `node tools/vibe-release-check/index.mjs --suite fast --timing --quiet` 查看维护者决策辅助;这只用于诊断耗时分布,不改变业务项目采用路径。
|
|
64
|
+
|
|
65
|
+
等价底层命令如下:
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind product-spec --from-file examples/golden-path/product-spec.md --json
|
|
69
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind implementation-plan --from-file examples/golden-path/implementation-plan.md --json
|
|
70
|
+
node tools/vibe-runtime/index.mjs completion --evidence-bundle --from-product-spec examples/golden-path/product-spec.md --from-plan examples/golden-path/implementation-plan.md --from-test-evidence examples/golden-path/test-evidence.json --from-diff-coverage examples/golden-path/diff-coverage.json --json
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
推荐最小产物:
|
|
74
|
+
|
|
75
|
+
```text
|
|
76
|
+
product-spec.md
|
|
77
|
+
implementation-plan.md
|
|
78
|
+
test-evidence.json # 可从 templates/evidence/test-evidence.json 复制
|
|
79
|
+
diff-coverage.json # 可从 templates/evidence/diff-coverage.json 复制
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
建议顺序:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind product-spec --from-file product-spec.md --json
|
|
86
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind implementation-plan --from-file implementation-plan.md --json
|
|
87
|
+
node tools/vibe-runtime/index.mjs completion --evidence-bundle --from-product-spec product-spec.md --from-plan implementation-plan.md --from-test-evidence test-evidence.json --from-diff-coverage diff-coverage.json --json
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
说明:这里的 evidence 文件由用户或 CI 提供。runtime 只检查 envelope、digest、task refs、scenario refs 和边界声明,不运行测试、不读取 git diff。team mode 的 completion bundle 用于生成 readiness 报告;如果故意省略 full compliance artifact,顶层 `ok` 可能为 `false`,这表示 full-chain artifact 不完整,不等于本地 evidence alignment 失败。最小闭环先看 `completion_evidence.task_completion_summary`:`local_task_ready=true` 且 `minimum_local_evidence_missing=[]` 表示 team-mode 本地任务已 ready;`full_compliance_evidence_missing` 只表示升级到 full compliance 前还缺 artifact 或 engineering evidence。需要定位本地失败时,再查看 `test_evidence_gate_ok`、`diff_coverage_gate_ok` 和 `implementation_alignment_ok`。更完整的判断顺序见 `docs/readiness-interpretation.md`;具体排障见 `docs/readiness-troubleshooting.md`。Evidence 模板位于 `templates/evidence/`,模板目录入口见 `templates/evidence/README.md`;生成责任、可信边界和 CI 接入建议见 `docs/evidence-authoring.md`。
|
|
91
|
+
|
|
92
|
+
## Golden Path -> Your Project
|
|
93
|
+
|
|
94
|
+
跑通仓库内 demo 后,把它迁移到业务项目时只复制最小 team-mode 资产,不复制 full-chain fixture。复制清单如下:
|
|
95
|
+
|
|
96
|
+
```text
|
|
97
|
+
product-spec.md # 可从 templates/product-spec.md 起草
|
|
98
|
+
implementation-plan.md # 可从 templates/implementation-plan.md 起草
|
|
99
|
+
test-evidence.json # 从 templates/evidence/test-evidence.json 复制后替换真实值
|
|
100
|
+
diff-coverage.json # 从 templates/evidence/diff-coverage.json 复制后替换真实值
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
迁移时只做四件事:
|
|
104
|
+
|
|
105
|
+
1. 用业务需求替换 `product-spec.md`,保留 artifact marker 和验收段落。
|
|
106
|
+
2. 用真实任务替换 `implementation-plan.md` 的 `Implementation Task Registry`,确保每个 task 有稳定 `task_ref`、预期文件和 operation。
|
|
107
|
+
3. 用真实测试或 CI 输出替换 `test-evidence.json` 的 `command`、`exit_code`、`timestamp`、`output_digest`、`task_refs` 和 `scenario_refs`。
|
|
108
|
+
4. 用真实 changed files 替换 `diff-coverage.json` 的 `planned_files`、`changed_files`、`task_coverage[].task_ref`、`task_coverage[].changed_files[].operation` 和 digest。
|
|
109
|
+
|
|
110
|
+
最后确认所有 `boundary_assertions` 仍声明 runtime 没有运行测试、读取 git diff 或写 git,并按顺序运行 gate。
|
|
111
|
+
|
|
112
|
+
推荐业务项目验证命令:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind product-spec --from-file product-spec.md --json
|
|
116
|
+
node tools/vibe-runtime/index.mjs methodology --gate --kind implementation-plan --from-file implementation-plan.md --json
|
|
117
|
+
node tools/vibe-runtime/index.mjs completion --evidence-bundle --from-product-spec product-spec.md --from-plan implementation-plan.md --from-test-evidence test-evidence.json --from-diff-coverage diff-coverage.json --json
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
判断方式:team mode 先看 `completion_evidence.task_completion_summary.local_task_ready` 和 `minimum_local_evidence_missing`。当 `local_task_ready=true` 且本地最小缺口为空时,本地 evidence gate 与 implementation alignment 已通过;只有发布审计、高风险变更或跨团队合规要求出现时,才按 `full_compliance_evidence_missing` 升级到 full compliance。
|
|
121
|
+
|
|
122
|
+
Evidence 可信度建议从 `L1 manual evidence` 起步,团队常规交付升级到 `L2 CI generated evidence`,高风险交付再要求 `L3 provenance-backed evidence`。runtime 只验证本地 envelope;真实性证明属于 CI/provenance 层。
|
|
123
|
+
|
|
124
|
+
## Full compliance mode
|
|
125
|
+
|
|
126
|
+
目标:在发布前证明需求、产品、UI、架构、实现计划、测试证据、diff coverage 和 commit readiness 全链路可追踪。
|
|
127
|
+
|
|
128
|
+
推荐产物:
|
|
129
|
+
|
|
130
|
+
```text
|
|
131
|
+
product-discovery.md
|
|
132
|
+
product-spec.md
|
|
133
|
+
ui-design-contract.md
|
|
134
|
+
architecture-design.md
|
|
135
|
+
delivery-traceability.yaml
|
|
136
|
+
implementation-plan.md
|
|
137
|
+
scenario-acceptance.yaml
|
|
138
|
+
product-acceptance.md
|
|
139
|
+
test-evidence.json
|
|
140
|
+
diff-coverage.json
|
|
141
|
+
commit-readiness.json
|
|
142
|
+
evidence.json
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
可使用仓库内 full-chain reference 先跑通:
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
npm run demo:full-chain
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
等价底层命令如下:
|
|
152
|
+
|
|
153
|
+
```bash
|
|
154
|
+
node tools/vibe-runtime/index.mjs completion --evidence-bundle --from-product-discovery examples/full-chain/product-discovery.md --from-product-spec examples/full-chain/product-spec.md --from-ui-design examples/full-chain/ui-design-contract.md --from-architecture examples/full-chain/architecture-design.md --from-traceability examples/full-chain/delivery-traceability.yaml --from-plan examples/full-chain/implementation-plan.md --from-scenarios examples/full-chain/scenario-acceptance.yaml --from-product-acceptance examples/full-chain/product-acceptance.md --from-test-evidence examples/full-chain/test-evidence.json --from-diff-coverage examples/full-chain/diff-coverage.json --from-commit-readiness examples/full-chain/commit-readiness.json --from-evidence examples/full-chain/evidence.json --json
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
`examples/full-chain/` 是完整 compliance 正例,预期顶层 `ok=true`。它不替代 `examples/golden-path/`;Golden Path 仍然是 team-mode readiness demo。
|
|
158
|
+
|
|
159
|
+
## 升级规则
|
|
160
|
+
|
|
161
|
+
- 如果只是验证安装和入口纪律,停在 `quickstart mode`。
|
|
162
|
+
- 如果团队开始要求任务、测试和 diff coverage 可追踪,升级到 `team mode`。
|
|
163
|
+
- 如果交付需要跨产品、UI、架构、验收和 commit readiness 的审计,升级到 `full compliance mode`。
|
|
164
|
+
- 不要为了“完整”而强迫所有任务走 full compliance;复杂度应该随风险升级。
|
|
165
|
+
|
|
166
|
+
## 不变边界
|
|
167
|
+
|
|
168
|
+
无论采用哪一层,Vibecoding Kit 都保持:
|
|
169
|
+
|
|
170
|
+
- `automatic_next_skill_execution=false`
|
|
171
|
+
- `test_execution=false`
|
|
172
|
+
- `git_write=false`
|
|
173
|
+
- `commit=false`
|
|
174
|
+
- `push=false`
|
|
175
|
+
- `pr=false`
|
|
176
|
+
- `merge=false`
|
|
177
|
+
- `subagent=false`
|
|
178
|
+
- `mcp=false`
|
|
179
|
+
- `platform_api=false`
|