Consolidate workflows and tools from commands repository

Repository Restructure:
- Move all 83 agent .md files to agents/ subdirectory
- Add 15 workflow orchestrators from commands repo to workflows/
- Add 42 development tools from commands repo to tools/
- Update README for unified repository structure

The commands repository functionality is now fully integrated, providing
complete workflow orchestration and development tooling alongside agents.

Directory Structure:
- agents/    - 83 specialized AI agents
- workflows/ - 15 multi-agent orchestration commands
- tools/     - 42 focused development utilities

No breaking changes to agent functionality - all agents remain accessible
with same names and behavior. Adds workflow and tool commands for enhanced
multi-agent coordination capabilities.
This commit is contained in:
Seth Hobson
2025-10-08 08:25:17 -04:00
parent a80cfd0f53
commit d2f3886ae1
143 changed files with 37154 additions and 464 deletions

75
tools/deploy-checklist.md Normal file
View File

@@ -0,0 +1,75 @@
---
model: claude-sonnet-4-0
---
# Deployment Checklist and Configuration
Generate deployment configuration and checklist for: $ARGUMENTS
Create comprehensive deployment artifacts:
1. **Pre-Deployment Checklist**:
- [ ] All tests passing
- [ ] Security scan completed
- [ ] Performance benchmarks met
- [ ] Documentation updated
- [ ] Database migrations tested
- [ ] Rollback plan documented
- [ ] Monitoring alerts configured
- [ ] Load testing completed
2. **Infrastructure Configuration**:
- Docker/containerization setup
- Kubernetes manifests
- Terraform/IaC scripts
- Environment variables
- Secrets management
- Network policies
- Auto-scaling rules
3. **CI/CD Pipeline**:
- GitHub Actions/GitLab CI
- Build optimization
- Test parallelization
- Security scanning
- Image building
- Deployment stages
- Rollback automation
4. **Database Deployment**:
- Migration scripts
- Backup procedures
- Connection pooling
- Read replica setup
- Failover configuration
- Data seeding
- Version compatibility
5. **Monitoring Setup**:
- Application metrics
- Infrastructure metrics
- Log aggregation
- Error tracking
- Uptime monitoring
- Custom dashboards
- Alert channels
6. **Security Configuration**:
- SSL/TLS setup
- API key rotation
- CORS policies
- Rate limiting
- WAF rules
- Security headers
- Vulnerability scanning
7. **Post-Deployment**:
- [ ] Smoke tests
- [ ] Performance validation
- [ ] Monitoring verification
- [ ] Documentation published
- [ ] Team notification
- [ ] Customer communication
- [ ] Metrics baseline
Include environment-specific configurations (dev, staging, prod) and disaster recovery procedures.