devops-orchestrator
Coordinates infrastructure, CI/CD, and deployment tasks. Use when provisioning infrastructure, setting up pipelines, configuring monitoring, or managing deployments. Applies devops-standard.md with DORA metrics.
What this skill does
# DevOps Orchestrator Skill
## Role
Acts as DevOps Lead, managing CI/CD, infrastructure, deployment, and monitoring.
## Responsibilities
1. **CI/CD Pipeline Management**
- Build automation
- Test automation
- Deployment pipelines
- Release management
2. **Infrastructure as Code**
- Container orchestration
- Cloud resources
- Configuration management
- Environment provisioning
3. **Monitoring & Observability**
- Application monitoring
- Log aggregation
- Alerting rules
- Performance metrics
4. **Context Maintenance**
```
ai-state/active/devops/
├── pipelines.json # CI/CD definitions
├── infrastructure.json # IaC resources
├── monitoring.json # Metrics & alerts
└── tasks/ # Active DevOps tasks
```
## Skill Coordination
### Available DevOps Skills
- `ci-cd-skill` - Pipeline creation and management
- `infrastructure-skill` - IaC deployment
- `monitoring-skill` - Observability setup
- `security-scan-skill` - Security scanning
- `deployment-skill` - Release management
### Context Package to Skills
```yaml
context:
task_id: "task-005-deployment"
environment: "production"
pipeline:
current: "build -> test -> deploy"
stages: ["build", "unit-test", "integration", "deploy"]
infrastructure:
provider: "AWS/Azure/GCP"
resources: ["containers", "database", "cache"]
monitoring:
tools: ["Prometheus", "Grafana", "ELK"]
sla: "99.9% uptime"
standards:
- "devops-standard.md"
- "security-baseline.md"
```
## Task Processing Flow
1. **Receive Task**
- Identify deployment needs
- Check dependencies
- Review security requirements
2. **Prepare Environment**
- Provision infrastructure
- Configure services
- Set up monitoring
3. **Deploy Application**
- Run CI/CD pipeline
- Execute deployments
- Validate health
4. **Monitor & Validate**
- Check metrics
- Verify SLAs
- Test rollback
5. **Document Changes**
- Update runbooks
- Document procedures
- Update dashboards
## DevOps Standards
### CI/CD Checklist
- [ ] Automated builds
- [ ] Automated tests
- [ ] Security scanning
- [ ] Code quality checks
- [ ] Artifact versioning
- [ ] Rollback capability
### Infrastructure Checklist
- [ ] Infrastructure as Code
- [ ] Immutable infrastructure
- [ ] Auto-scaling configured
- [ ] Backup strategy
- [ ] Disaster recovery
- [ ] Cost optimization
### Monitoring Checklist
- [ ] Application metrics
- [ ] Infrastructure metrics
- [ ] Log aggregation
- [ ] Error tracking
- [ ] Alert rules defined
- [ ] Dashboards created
### Security Checklist
- [ ] Vulnerability scanning
- [ ] Secrets management
- [ ] Network security
- [ ] Access control
- [ ] Audit logging
- [ ] Compliance checks
## Integration Points
### With Development Orchestrators
- Build triggers from code
- Test result integration
- Deployment approvals
- Feature flags
### With Test Orchestrator
- Test automation in pipeline
- Performance test execution
- Security test integration
- Test environment management
### With Human-Docs
Updates documentation:
- Deployment procedures
- Runbooks
- Incident response
- Architecture diagrams
## Event Communication
### Listening For
```json
{
"event": "code.merged",
"branch": "main",
"commit": "abc123",
"requires_deployment": true
}
```
### Broadcasting
```json
{
"event": "deployment.completed",
"environment": "production",
"version": "1.2.3",
"status": "healthy",
"metrics": {
"response_time": "45ms",
"error_rate": "0.01%"
}
}
```
## Deployment Strategies
### Blue-Green Deployment
```yaml
strategy:
type: blue-green
steps:
- Deploy to green environment
- Run smoke tests
- Switch traffic to green
- Monitor for issues
- Keep blue for rollback
```
### Canary Deployment
```yaml
strategy:
type: canary
steps:
- Deploy to 10% of servers
- Monitor metrics
- Gradually increase to 100%
- Rollback if errors spike
```
### Rolling Deployment
```yaml
strategy:
type: rolling
steps:
- Deploy to subset
- Health check
- Continue to next subset
- Complete all instances
```
## Monitoring Strategy
### Key Metrics
- **Availability:** Uptime percentage
- **Performance:** Response times
- **Error Rate:** Failed requests
- **Throughput:** Requests/second
- **Saturation:** Resource usage
### Alert Levels
- **P1 Critical:** Service down
- **P2 High:** Performance degraded
- **P3 Medium:** Non-critical errors
- **P4 Low:** Warnings
## Infrastructure Patterns
### Container Orchestration
```yaml
kubernetes:
deployment:
replicas: 3
strategy: RollingUpdate
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
```
### Auto-scaling
```yaml
autoscaling:
min_replicas: 2
max_replicas: 10
metrics:
- type: cpu
target: 70%
- type: memory
target: 80%
```
## Success Metrics
- Deployment frequency > 1/day
- Lead time < 1 hour
- MTTR < 30 minutes
- Change failure rate < 5%
- Availability > 99.9%
## Anti-Patterns to Avoid
❌ Manual deployments
❌ No rollback plan
❌ Missing monitoring
❌ Hardcoded configurations
❌ No security scanning
❌ Snowflake serversRelated in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.