| name | argentos-release-checklist |
| description | End-to-end release checklist for ArgentOS across all repos and services. Use when deploying a release, pushing to production, launching a feature across repos, doing a coordinated deploy, or when anyone mentions "release", "deploy", "launch", "go live", "push to prod", or "ship it". |
ArgentOS Release Checklist
Coordinated release across 5 repos, 3 Railway services, and supporting infrastructure.
Pre-Release
1. Linear Check
2. Build All Repos
cd /Users/sem/code/argentos && pnpm build && pnpm test
cd /Users/sem/code/argentos-core && pnpm build && pnpm test
cd /Users/sem/code/argentos.ai && pnpm build
cd /Users/sem/code/argent-marketplace && pnpm -r build
cd /Users/sem/code/argent-docs && pnpm build
3. CodeRabbit Review
pnpm review:coderabbit
Fix all findings before proceeding.
4. Installer Sync
If installer changed, follow the argentos-installer-sync skill procedure.
Deploy
5. Push All Repos
6. Verify Railway Deploys
Wait for each to complete. Check:
curl -s https://argentos.ai | head -1
curl -s https://marketplace.argentos.ai/api/v1/catalog?limit=1 | head -1
curl -s https://docs.argentos.ai | head -1
7. Verify Installer
curl -fsSL https://argentos.ai/install.sh | head -5
Post-Release
8. Smoke Tests
9. Update Linear
10. Announce
Rollback
If a deploy breaks production:
git revert HEAD on the broken repo
- Push immediately (don't wait for review)
- Verify the live URL recovers
- Create a Linear issue for the root cause
- Fix properly on a branch, then re-deploy
Service Map
| Service | URL | Deploys From |
|---|
| Website | argentos.ai | argentos.ai main → Railway |
| Marketplace | marketplace.argentos.ai | argent-marketplace main → Railway |
| Docs | docs.argentos.ai | argent-docs main → Railway |
| CLI installer | argentos.ai/install.sh | argentos.ai main → Railway |
| Marketplace API | marketplace.argentos.ai/api/v1 | Same as marketplace |