with one click
ai-coding-workflow
Modern AI-assisted development workflow
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Modern AI-assisted development workflow
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Checkpointing with Accelerate. model saving.
Data Loading with Accelerate. data pipelines.
Distributed with Accelerate. distributed training.
Inference with Accelerate. running models.
Optimization with Accelerate. model optimization.
Pruning with Accelerate. model pruning.
| name | ai-coding-workflow |
| description | Modern AI-assisted development workflow |
| category | ai |
| tags | ["workflow","ai-assisted","development","best-practices"] |
| models | ["sonnet","opus"] |
| version | 1.0.0 |
| created | "2026-05-14T00:00:00.000Z" |
A systematic approach to modern AI-assisted software development from spec to deployment.
# 1. Specification
cat > spec.md << 'EOF'
## Feature: User Authentication
- Email/password login with JWT
- OAuth (Google, GitHub)
- Session management with refresh tokens
- Rate limiting on login attempts
EOF
# 2. Architecture review with AI
claude -p "Review this spec for completeness. Identify missing edge cases and security considerations." < spec.md
# 3. Implementation with AI pair programming
claude -p "Implement the authentication system per spec.md. Use FastAPI, SQLAlchemy, and python-jose. Include comprehensive error handling."
# 4. Test generation
claude -p "Write pytest tests for the auth module. Cover: happy path, invalid credentials, token expiry, rate limiting, OAuth flow."
# 5. Code review
claude -p "Review the auth module for security vulnerabilities, specifically: SQL injection, JWT secret handling, timing attacks on comparison."
The modern AI workflow: Spec → Architecture Review → Implementation → Test Generation → Code Review → Deployment. Each phase uses AI differently—from creative generation to critical analysis.