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.
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.
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
| 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 |
kubectl get, kubectl describe, oc get)argocd app sync, Flux reconciliation)kubectl delete in prod)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.
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)
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
For detailed capabilities of each agent, refer to individual SKILL.md files:
skills/orchestrator/SKILL.md - Full Orchestrator documentationskills/cluster-ops/SKILL.md - Full Cluster Ops documentationskills/gitops/SKILL.md - Full GitOps documentationskills/security/SKILL.md - Full Security documentationskills/observability/SKILL.md - Full Observability documentationskills/artifacts/SKILL.md - Full Artifacts documentationskills/developer-experience/SKILL.md - Full Developer Experience documentation共 1 个版本