Release Artifact and Test Prep
When this page pushes you into deeper test-review or completeness-review questions, continue with:
VibeGov now separates two concerns clearly:
- GitHub Pages deployment builds the docs site
- GitHub release packaging prepares the main VibeGov files agents actually use
The release bundle is not the built static site. It is the agent-consumable VibeGov surface.
Release packaging
Build release bundle
npm run release:build
This script creates a versioned release package using the canonical format:
yyyy.m.d-<shortsha>
Example:
2026.4.19-55b47ec
Why this format:
- keeps the label human-readable by date,
- keeps it traceable to an exact commit,
- avoids ambiguous split schemes by default,
- and gives one canonical build/release label shape unless a project explicitly chooses otherwise.
Default rule:
- do not invent separate date-only "stable" labels and date+SHA prerelease labels unless the project has explicitly chosen that distinction.
- use the same canonical format for build/release labels by default.
What the release package contains
The package is intentionally narrow. It includes the main files agents/runtime actually use:
agent.txtbootstrap.json- canonical
.governance/rules/ - canonical bootstrap/use docs:
docs/bootstrap.mddocs/quickstart.mddocs/bootstrap-update.mddocs/bootstrap-review.mddocs/bootstrap-feedback-prompt.mddocs/github-project-bootstrap.mddocs/init-todo.md
VERSION.txt
Release output
artifacts/
release/
<version>/
vibegov-<version>/
agent.txt
bootstrap.json
.governance/
rules/
docs/
bootstrap.md
quickstart.md
bootstrap-update.md
bootstrap-review.md
bootstrap-feedback-prompt.md
github-project-bootstrap.md
init-todo.md
VERSION.txt
flat/
agent.txt
bootstrap.json
gov-01-instructions.mdc
...
gov-13-review-loops-completion-discipline.mdc
bootstrap.md
quickstart.md
bootstrap-update.md
bootstrap-review.md
bootstrap-feedback-prompt.md
github-project-bootstrap.md
init-todo.md
VERSION.txt
vibegov-<version>.zip
release-info.json
Notes:
vibegov-<version>.zipremains available as a convenience bundle.flat/contains the upload-ready individual GitHub release assets.release-info.jsonis local build metadata used by automation.- the Docusaurus
build/output is for Pages deployment, not the GitHub release assets.
GitHub release behavior
The GitHub release workflow should run on every main push and may also be run manually when needed.
The release workflow uploads both:
- the zip bundle
- the flat individual files as separate release assets
That means agents can either:
- fetch the exact files directly from the release, or
- download the zip bundle if that is easier for transport.
Test prep
Prepare a release test run
npm run test:prepare
This script:
- locates the latest packaged release bundle
- creates a timestamp + SHA folder under
artifacts/test-runs/ - copies the release folder and zip asset into the test run
- creates execution/evidence scaffolding for validating the release contents
Test-run output
artifacts/
test-runs/
<timestamp>_<short-sha>/
release/
vibegov-<version>/
vibegov-<version>.zip
release-info.json
change-summary.md
evidence/
prior-validation/
validation-summary.md
execution/
test-execution-checklist.md
results/
logs/
screenshots/
run-manifest.json
CI alignment
- Pages deploy should run
npm run buildand publish the built docs site. - GitHub release should run
npm run release:buildand upload both the versioned zip and flat VibeGov files.
Do not treat those as the same artifact boundary.