Cluster Agent Swarm — Complete Platform Operations
This is the complete cluster-agent-swarm skill package. When you add this skill, you get
access to ALL 7 specialized agents working together as a coordinated swarm.
Installation Options
Install All Skills (Recommended)
npx skills add https://github.com/kcns008/cluster-agent-swarm-skills
This installs all 7 agents as a single combined skill with access to all capabilities.
Install Individual Skills
Each agent can also be installed separately:
# Orchestrator - Task routing and coordination
npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/orchestrator
# Cluster Ops - Atlas (cluster operations)
npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/cluster-ops
# GitOps - Flow (ArgoCD, Helm, Kustomize)
npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/gitops
# Security - Shield (RBAC, policies, CVEs)
npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/security
# Observability - Pulse (metrics, alerts, incidents)
npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/observability
# Artifacts - Cache (registries, SBOM, promotions)
npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/artifacts
# Developer Experience - Desk (namespaces, onboarding)
npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/developer-experience
The Swarm — Agent Roster
| Agent |
Code Name |
Session Key |
Domain |
| Orchestrator |
Jarvis |
agent:platform:orchestrator |
Task routing, coordination, standups |
| Cluster Ops |
Atlas |
agent:platform:cluster-ops |
Cluster lifecycle, nodes, upgrades |
| GitOps |
Flow |
agent:platform:gitops |
ArgoCD, Helm, Kustomize, deploys |
| Security |
Shield |
agent:platform:security |
RBAC, policies, secrets, scanning |
| Observability |
Pulse |
agent:platform:observability |
Metrics, logs, alerts, incidents |
| Artifacts |
Cache |
agent:platform:artifacts |
Registries, SBOM, promotion, CVEs |
| Developer Experience |
Desk |
agent:platform:developer-experience |
Namespaces, onboarding, support |
Agent Capabilities Summary
What Agents CAN Do
- Read cluster state (
kubectl get, kubectl describe, oc get)
- Deploy via GitOps (
argocd app sync, Flux reconciliation)
- Create documentation and reports
- Investigate and triage incidents
- Provision standard resources (namespaces, quotas, RBAC)
- Run health checks and audits
- Scan images and generate SBOMs
- Query metrics and logs
- Execute pre-approved runbooks
What Agents CANNOT Do (Human-in-the-Loop Required)
- Delete production resources (
kubectl delete in prod)
- Modify cluster-wide policies (NetworkPolicy, OPA, Kyverno cluster policies)
- Make direct changes to secrets without rotation workflow
- Modify network routes or service mesh configuration
- Scale beyond defined resource limits
- Perform irreversible cluster upgrades
- Approve production deployments (can prepare, human approves)
- Change RBAC at cluster-admin level
Communication Patterns
@Mentions
Agents communicate via @mentions in shared task comments:
@Shield Please review the RBAC for payment-service v3.2 before I sync.
@Pulse Is the CPU spike related to the deployment or external traffic?
@Atlas The staging cluster needs 2 more worker nodes.
Thread Subscriptions
- Commenting on a task → auto-subscribe
- Being @mentioned → auto-subscribe
- Being assigned → auto-subscribe
- Once subscribed → receive ALL future comments on heartbeat
Escalation Path
- Agent detects issue
- Agent attempts resolution within guardrails
- If blocked → @mention another agent or escalate to human
- P1 incidents → all relevant agents auto-notified
Heartbeat Schedule
Agents wake on staggered 5-minute intervals:
*/5 * * * * Atlas (Cluster Ops - needs fast response for incidents)
*/5 * * * * Pulse (Observability - needs fast response for alerts)
*/5 * * * * Shield (Security - fast response for CVEs and threats)
*/10 * * * * Flow (GitOps - deployments can wait a few minutes)
*/10 * * * * Cache (Artifacts - promotions are scheduled)
*/15 * * * * Desk (DevEx - developer requests aren't usually urgent)
*/15 * * * * Orchestrator (Coordination - overview and standups)
Key Principles
- Roles over genericism — Each agent has a defined SOUL with exactly who they are
- Files over mental notes — Only files persist between sessions
- Staggered schedules — Don't wake all agents at once
- Shared context — One source of truth for tasks and communication
- Heartbeat, not always-on — Balance responsiveness with cost
- Human-in-the-loop — Critical actions require approval
- Guardrails over freedom — Define what agents can and cannot do
- Audit everything — Every action logged to activity feed
- Reliability first — System stability always wins over new features
- Security by default — Deny access, approve by exception
Detailed Agent Capabilities
Orchestrator (Jarvis)
- Task routing: determining which agent should handle which request
- Workflow orchestration: coordinating multi-agent operations
- Daily standups: compiling swarm-wide status reports
- Priority management: determining urgency and sequencing of work
- Cross-agent communication: facilitating collaboration
- Accountability: tracking what was promised vs what was delivered
Cluster Ops (Atlas)
- OpenShift/Kubernetes cluster operations (upgrades, scaling, patching)
- Node pool management and autoscaling
- Resource quota management and capacity planning
- Network troubleshooting (OVN-Kubernetes, Cilium, Calico)
- Storage class management and PVC/CSI issues
- etcd backup, restore, and health monitoring
- Multi-platform expertise (OCP, EKS, AKS, GKE, ROSA, ARO)
GitOps (Flow)
- ArgoCD application management (sync, rollback, sync waves, hooks)
- Helm chart development, debugging, and templating
- Kustomize overlays and patch generation
- ApplicationSet templates for multi-cluster deployments
- Deployment strategy management (canary, blue-green, rolling)
- Git repository management and branching strategies
- Drift detection and remediation
- Secrets management integration (Vault, Sealed Secrets, External Secrets)
Security (Shield)
- RBAC audit and management
- NetworkPolicy review and enforcement
- Security policy validation (OPA, Kyverno)
- Vulnerability scanning (image scanning, CVE triage)
- Secret rotation workflows
- Security incident investigation
- Compliance reporting
Observability (Pulse)
- Prometheus/Grafana metric queries
- Log aggregation and search (Loki, Elasticsearch)
- Alert triage and investigation
- SLO tracking and error budget monitoring
- Incident response coordination
- Dashboards and visualization
- Telemetry pipeline troubleshooting
Artifacts (Cache)
- Container registry management
- Image scanning and CVE analysis
- SBOM generation and tracking
- Artifact promotion workflows
- Version management
- Registry caching and proxying
Developer Experience (Desk)
- Namespace provisioning
- Resource quota and limit range management
- Developer onboarding
- Template generation
- Developer support and troubleshooting
- Documentation generation
File Structure
cluster-agent-swarm-skills/
├── SKILL.md # This file - combined swarm
├── AGENTS.md # Swarm configuration and protocols
├── skills/
│ ├── orchestrator/ # Jarvis - task routing
│ │ └── SKILL.md
│ ├── cluster-ops/ # Atlas - cluster operations
│ │ └── SKILL.md
│ ├── gitops/ # Flow - GitOps
│ │ └── SKILL.md
│ ├── security/ # Shield - security
│ │ └── SKILL.md
│ ├── observability/ # Pulse - monitoring
│ │ └── SKILL.md
│ ├── artifacts/ # Cache - artifacts
│ │ └── SKILL.md
│ └── developer-experience/ # Desk - DevEx
│ └── SKILL.md
├── scripts/ # Shared scripts
└── references/ # Shared documentation
Reference Documentation
For detailed capabilities of each agent, refer to individual SKILL.md files:
skills/orchestrator/SKILL.md - Full Orchestrator documentation
skills/cluster-ops/SKILL.md - Full Cluster Ops documentation
skills/gitops/SKILL.md - Full GitOps documentation
skills/security/SKILL.md - Full Security documentation
skills/observability/SKILL.md - Full Observability documentation
skills/artifacts/SKILL.md - Full Artifacts documentation
skills/developer-experience/SKILL.md - Full Developer Experience documentation
1---2name: cluster-agent-swarm-23description: Complete Platform Agent Swarm — A coordinated multi-agent system for Kubernetes and OpenShift platform operations. Includes Orchestrator (Jarvis), Cluster Ops (Atlas), GitOps (Flow), Security (Shield), Observability (Pulse), Artifacts (Cache), and Developer Experience (Desk).4---56# Cluster Agent Swarm — Complete Platform Operations78This is the complete cluster-agent-swarm skill package. When you add this skill, you get 9access to ALL 7 specialized agents working together as a coordinated swarm.1011## Installation Options1213### Install All Skills (Recommended)14```bash15npx skills add https://github.com/kcns008/cluster-agent-swarm-skills16```1718This installs all 7 agents as a single combined skill with access to all capabilities.1920### Install Individual Skills21Each agent can also be installed separately:22```bash23# Orchestrator - Task routing and coordination24npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/orchestrator2526# Cluster Ops - Atlas (cluster operations)27npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/cluster-ops2829# GitOps - Flow (ArgoCD, Helm, Kustomize)30npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/gitops3132# Security - Shield (RBAC, policies, CVEs)33npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/security3435# Observability - Pulse (metrics, alerts, incidents)36npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/observability3738# Artifacts - Cache (registries, SBOM, promotions)39npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/artifacts4041# Developer Experience - Desk (namespaces, onboarding)42npx skills add https://github.com/kcns008/cluster-agent-swarm-skills/skills/developer-experience43```4445---4647## The Swarm — Agent Roster4849| Agent | Code Name | Session Key | Domain |50|-------|-----------|-------------|--------|51| Orchestrator | Jarvis | `agent:platform:orchestrator` | Task routing, coordination, standups |52| Cluster Ops | Atlas | `agent:platform:cluster-ops` | Cluster lifecycle, nodes, upgrades |53| GitOps | Flow | `agent:platform:gitops` | ArgoCD, Helm, Kustomize, deploys |54| Security | Shield | `agent:platform:security` | RBAC, policies, secrets, scanning |55| Observability | Pulse | `agent:platform:observability` | Metrics, logs, alerts, incidents |56| Artifacts | Cache | `agent:platform:artifacts` | Registries, SBOM, promotion, CVEs |57| Developer Experience | Desk | `agent:platform:developer-experience` | Namespaces, onboarding, support |5859---6061## Agent Capabilities Summary6263### What Agents CAN Do64- Read cluster state (`kubectl get`, `kubectl describe`, `oc get`)65- Deploy via GitOps (`argocd app sync`, Flux reconciliation)66- Create documentation and reports67- Investigate and triage incidents68- Provision standard resources (namespaces, quotas, RBAC)69- Run health checks and audits70- Scan images and generate SBOMs71- Query metrics and logs72- Execute pre-approved runbooks7374### What Agents CANNOT Do (Human-in-the-Loop Required)75- Delete production resources (`kubectl delete` in prod)76- Modify cluster-wide policies (NetworkPolicy, OPA, Kyverno cluster policies)77- Make direct changes to secrets without rotation workflow78- Modify network routes or service mesh configuration79- Scale beyond defined resource limits80- Perform irreversible cluster upgrades81- Approve production deployments (can prepare, human approves)82- Change RBAC at cluster-admin level8384---8586## Communication Patterns8788### @Mentions89Agents communicate via @mentions in shared task comments:90```91@Shield Please review the RBAC for payment-service v3.2 before I sync.92@Pulse Is the CPU spike related to the deployment or external traffic?93@Atlas The staging cluster needs 2 more worker nodes.94```9596### Thread Subscriptions97- Commenting on a task → auto-subscribe98- Being @mentioned → auto-subscribe99- Being assigned → auto-subscribe100- Once subscribed → receive ALL future comments on heartbeat101102### Escalation Path1031. Agent detects issue1042. Agent attempts resolution within guardrails1053. If blocked → @mention another agent or escalate to human1064. P1 incidents → all relevant agents auto-notified107108---109110## Heartbeat Schedule111112Agents wake on staggered 5-minute intervals:113```114*/5 * * * * Atlas (Cluster Ops - needs fast response for incidents)115*/5 * * * * Pulse (Observability - needs fast response for alerts)116*/5 * * * * Shield (Security - fast response for CVEs and threats)117*/10 * * * * Flow (GitOps - deployments can wait a few minutes)118*/10 * * * * Cache (Artifacts - promotions are scheduled)119*/15 * * * * Desk (DevEx - developer requests aren't usually urgent)120*/15 * * * * Orchestrator (Coordination - overview and standups)121```122123---124125## Key Principles126127- **Roles over genericism** — Each agent has a defined SOUL with exactly who they are128- **Files over mental notes** — Only files persist between sessions129- **Staggered schedules** — Don't wake all agents at once130- **Shared context** — One source of truth for tasks and communication131- **Heartbeat, not always-on** — Balance responsiveness with cost132- **Human-in-the-loop** — Critical actions require approval133- **Guardrails over freedom** — Define what agents can and cannot do134- **Audit everything** — Every action logged to activity feed135- **Reliability first** — System stability always wins over new features136- **Security by default** — Deny access, approve by exception137138---139140## Detailed Agent Capabilities141142### Orchestrator (Jarvis)143- Task routing: determining which agent should handle which request144- Workflow orchestration: coordinating multi-agent operations145- Daily standups: compiling swarm-wide status reports146- Priority management: determining urgency and sequencing of work147- Cross-agent communication: facilitating collaboration148- Accountability: tracking what was promised vs what was delivered149150### Cluster Ops (Atlas)151- OpenShift/Kubernetes cluster operations (upgrades, scaling, patching)152- Node pool management and autoscaling153- Resource quota management and capacity planning154- Network troubleshooting (OVN-Kubernetes, Cilium, Calico)155- Storage class management and PVC/CSI issues156- etcd backup, restore, and health monitoring157- Multi-platform expertise (OCP, EKS, AKS, GKE, ROSA, ARO)158159### GitOps (Flow)160- ArgoCD application management (sync, rollback, sync waves, hooks)161- Helm chart development, debugging, and templating162- Kustomize overlays and patch generation163- ApplicationSet templates for multi-cluster deployments164- Deployment strategy management (canary, blue-green, rolling)165- Git repository management and branching strategies166- Drift detection and remediation167- Secrets management integration (Vault, Sealed Secrets, External Secrets)168169### Security (Shield)170- RBAC audit and management171- NetworkPolicy review and enforcement172- Security policy validation (OPA, Kyverno)173- Vulnerability scanning (image scanning, CVE triage)174- Secret rotation workflows175- Security incident investigation176- Compliance reporting177178### Observability (Pulse)179- Prometheus/Grafana metric queries180- Log aggregation and search (Loki, Elasticsearch)181- Alert triage and investigation182- SLO tracking and error budget monitoring183- Incident response coordination184- Dashboards and visualization185- Telemetry pipeline troubleshooting186187### Artifacts (Cache)188- Container registry management189- Image scanning and CVE analysis190- SBOM generation and tracking191- Artifact promotion workflows192- Version management193- Registry caching and proxying194195### Developer Experience (Desk)196- Namespace provisioning197- Resource quota and limit range management198- Developer onboarding199- Template generation200- Developer support and troubleshooting201- Documentation generation202203---204205## File Structure206207```208cluster-agent-swarm-skills/209├── SKILL.md # This file - combined swarm210├── AGENTS.md # Swarm configuration and protocols211├── skills/212│ ├── orchestrator/ # Jarvis - task routing213│ │ └── SKILL.md214│ ├── cluster-ops/ # Atlas - cluster operations215│ │ └── SKILL.md216│ ├── gitops/ # Flow - GitOps217│ │ └── SKILL.md218│ ├── security/ # Shield - security219│ │ └── SKILL.md220│ ├── observability/ # Pulse - monitoring221│ │ └── SKILL.md222│ ├── artifacts/ # Cache - artifacts223│ │ └── SKILL.md224│ └── developer-experience/ # Desk - DevEx225│ └── SKILL.md226├── scripts/ # Shared scripts227└── references/ # Shared documentation228```229230---231232## Reference Documentation233234For detailed capabilities of each agent, refer to individual SKILL.md files:235- `skills/orchestrator/SKILL.md` - Full Orchestrator documentation236- `skills/cluster-ops/SKILL.md` - Full Cluster Ops documentation237- `skills/gitops/SKILL.md` - Full GitOps documentation238- `skills/security/SKILL.md` - Full Security documentation239- `skills/observability/SKILL.md` - Full Observability documentation240- `skills/artifacts/SKILL.md` - Full Artifacts documentation241- `skills/developer-experience/SKILL.md` - Full Developer Experience documentation