skills/brownbull/devops-orchestrator/SKILL.md
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.
npx skillsauth add aiskillstore/marketplace devops-orchestratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Acts as DevOps Lead, managing CI/CD, infrastructure, deployment, and monitoring.
CI/CD Pipeline Management
Infrastructure as Code
Monitoring & Observability
Context Maintenance
ai-state/active/devops/
├── pipelines.json # CI/CD definitions
├── infrastructure.json # IaC resources
├── monitoring.json # Metrics & alerts
└── tasks/ # Active DevOps tasks
ci-cd-skill - Pipeline creation and managementinfrastructure-skill - IaC deploymentmonitoring-skill - Observability setupsecurity-scan-skill - Security scanningdeployment-skill - Release managementcontext:
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"
Receive Task
Prepare Environment
Deploy Application
Monitor & Validate
Document Changes
Updates documentation:
{
"event": "code.merged",
"branch": "main",
"commit": "abc123",
"requires_deployment": true
}
{
"event": "deployment.completed",
"environment": "production",
"version": "1.2.3",
"status": "healthy",
"metrics": {
"response_time": "45ms",
"error_rate": "0.01%"
}
}
strategy:
type: blue-green
steps:
- Deploy to green environment
- Run smoke tests
- Switch traffic to green
- Monitor for issues
- Keep blue for rollback
strategy:
type: canary
steps:
- Deploy to 10% of servers
- Monitor metrics
- Gradually increase to 100%
- Rollback if errors spike
strategy:
type: rolling
steps:
- Deploy to subset
- Health check
- Continue to next subset
- Complete all instances
kubernetes:
deployment:
replicas: 3
strategy: RollingUpdate
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
autoscaling:
min_replicas: 2
max_replicas: 10
metrics:
- type: cpu
target: 70%
- type: memory
target: 80%
❌ Manual deployments ❌ No rollback plan ❌ Missing monitoring ❌ Hardcoded configurations ❌ No security scanning ❌ Snowflake servers
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.