πŸ“– MUTX Docs
GitHubΒ·mutx.dev
Welcome
Manifesto
Whitepaper
Roadmap
Documentation Hub
Autonomous Agent Team
MUTX Infrastructure
Python SDK
Support
Contributing
Security Policy
Licensing
Contributor Covenant Code of Conduct
AGENTS.md
App Dashboard
Changelog Status
Claim to Reality Gap Matrix
Governance
Migration Runbook
Monitoring
Mutation Testing
OTel
Overview
Quickstart
Surface Matrix
Technical Whitepaper
Webhook Governance
  1. Docsβ€Ί
  2. Welcome

v0.1 Release Runbook#

Target release date: Monday, March 16, 2026.

This file is the historical platform release checklist. For the current CLI distribution, TUI, and Homebrew flow, use cli-release.md.

1. Sync and install once#

git fetch origin
git checkout main
git pull --ff-only origin main

npm ci
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -e ".[dev,tui]"

2. Run the release gate#

Fast gate (default, skips Playwright):

npm run release:check

Full gate (includes Playwright):

npm run release:check -- --with-playwright

release:check sets fallback Turnstile test keys if they are not already configured and then runs the repository validation suite.

3. Cut the release#

git checkout main
git pull --ff-only origin main
git tag -a v0.1.0 -m "MUTX v0.1.0"
git push origin v0.1.0

Then publish GitHub release notes from the v0.1.0 tag and include:

  • key API/CLI/SDK changes
  • migration or config notes
  • known limitations and follow-up issues

4. Post-release checks#

curl -fsS https://api.mutx.dev/health
curl -fsS https://api.mutx.dev/ready

Verify:

  • https://mutx.dev
  • https://app.mutx.dev
  • https://docs.mutx.dev
PreviousKubernetes DeploymentNextRailway Deployment

Last updated via GitBook sync β€” source at GitHub

On this page

1. Sync and install once2. Run the release gate3. Cut the release4. Post-release checks