Tawa uses artifact promotion to move builds through environments without rebuilding. Build once in sandbox, promote the same image to UAT, then to production.
sandbox (full build + deploy)
→ UAT (image reuse, Helm upgrade only, ~1 min)
→ prod (image reuse + HIL approval required)
tawa promote --to uat # sandbox → UAT
tawa promote --to prod --yes # UAT → prod (requires --yes for prod)
tawa promote --to uat --force # bypass gate checks
tawa gates status # show gate status for current environment
tawa gates status --env prod # check prod gates
tawa gates status --json # machine-readable output
tawa approve # approve pending promotion
tawa approve --build <id> # approve specific build
tawa versions # list all version snapshots
tawa versions show v1.0.0 # show service matrix for a version
tawa versions diff v1.0.0 v1.1.0 # compare two versions
tawa upgrade # show migration guide for your service
tawa upgrade --json # machine-readable output
Gates are checks that must pass before promotion is allowed. They don't block deployment — only promotion.
| Gate | What it checks | Required? |
|---|---|---|
| security | Dependency vulnerability scan | Yes |
| integration | Service-to-service connectivity | Yes |
| soak | Minimum time deployed (2 hours) | Yes |
| hil | Human-in-the-loop approval | Prod only |
| compliance | Septor audit trail + Wallet events | Yes |
--force bypasses all gates (logged to Septor audit trail)tawa deploy builds and deploys to sandbox (full pipeline)tawa promote --to uat calls builder API which:
--force)tawa promote --to prod --yes does the same UAT → prod, plus:
tawa approve)promotion.completed Septor audit event| Event | When | Data |
|---|---|---|
promotion.completed | After successful promotion | serviceId, environments, imageTag, force flag |
promotion.approved | After HIL approval | serviceId, buildId, approvedBy, expiresAt |
A PolicyEco version is a snapshot of all platform services at specific image SHAs. Use versions to:
# Target a specific platform version during local dev
tawa dev --platform-version v1.0.0
--force just to go fastertawa gates status before promoting to catch issues earlytawa upgrade to check for breaking changes before updatingLast updated: July 15, 2026