| name | claude-command-deploy |
| description | Use when the user wants the Claude `/deploy` command workflow in Codex, or asks to run `deploy` using the claudet command template. |
Claude Command: /deploy
Generated by claudet agent-config-sync.
Follow this workflow in Codex. The original Claude slash command body is below.
/deploy — Pre-deployment Checklist
Run through deployment verification before pushing changes to production.
Steps
- Syntax check:
python3 -m py_compile orchestrator/orchestrator.py
- Shell check:
shellcheck runner-image/entrypoint.sh (if available)
- Build runner image:
docker build -t gh-runner:latest ./runner-image
- Build orchestrator:
docker compose build orchestrator
- Config validation: Verify
example.config.yml parses correctly
- Review changes:
git diff — check for accidental secret exposure
- Check .gitignore: Ensure
.env and config.yml are listed
- Deploy:
docker compose up -d and verify with docker compose logs -f orchestrator