Infrastructure Workflows¶
Patterns for provisioning cloud infrastructure and managing platform operations with the dev-suite hub skills.
Note
Since v3.1.0, skills use a two-tier Hub Skill architecture. The hub skills listed below route to specialized sub-skills via their Routing Decision Tree.
Cloud Infrastructure¶
Use @devops-architect for multi-cloud architecture decisions.
Define infrastructure with Terraform (hub:
ci-cd-pipelines→ sub:deployment-pipeline-design).Configure Kubernetes clusters (agent:
@devops-architect).Implement secrets management (hub:
data-and-security→ sub:secrets-management).Set up monitoring and alerting (command:
/monitor-setup).
# Example: Terraform resource pattern
resource "aws_ecs_service" "app" {
name = "my-service"
cluster = aws_ecs_cluster.main.id
task_definition = aws_ecs_task_definition.app.arn
desired_count = 3
load_balancer {
target_group_arn = aws_lb_target_group.app.arn
container_name = "app"
container_port = 8080
}
}
Reliability Engineering¶
Use @sre-expert for SLO-driven reliability.
Define SLIs and SLOs (command:
/slo-implement).Set up error budgets and burn-rate alerts (hub:
observability-and-sre→ sub:slo-implementation).Create incident response runbooks (agent:
@sre-expert).Implement Prometheus alerting (hub:
observability-and-sre→ sub:prometheus-configuration).
Production Incident Response¶
When production issues arise, use @debugger-pro and @sre-expert
together for rapid resolution.
Agent team: Use Team 2 (incident-response) for coordinated multi-hypothesis investigation.