Files
claude-code/commands/k8s/cluster-status.md
OpenCode Test 431e10b449 Implement programmer agent system and consolidate agent infrastructure
Programmer Agent System:
- Add programmer-orchestrator (Opus) for workflow coordination
- Add code-planner (Sonnet) for design and planning
- Add code-implementer (Sonnet) for writing code
- Add code-reviewer (Sonnet) for quality review
- Add /programmer command and project registration skill
- Add state files for preferences and project context

Agent Infrastructure:
- Add master-orchestrator and linux-sysadmin agents
- Restructure skills to use SKILL.md subdirectory format
- Convert workflows from markdown to YAML format
- Add commands for k8s and sysadmin domains
- Add shared state files (model-policy, autonomy-levels, system-instructions)
- Add PA memory system (decisions, preferences, projects, facts)

Cleanup:
- Remove deprecated markdown skills and workflows
- Remove crontab example (moved to workflows)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 13:23:42 -08:00

1.2 KiB

name, description, aliases, invokes
name description aliases invokes
cluster-status Get quick cluster health overview
status
cs
workflow:health/cluster-health-check

/cluster-status Command

Get a quick health overview of the Raspberry Pi Kubernetes cluster.

Usage

/cluster-status
/cluster-status --full    # Run complete health check workflow
/cluster-status --quick   # Just node and pod status (faster)

What It Does

Invokes the cluster-health-check workflow to provide a comprehensive cluster health overview by coordinating specialized agents:

  1. Node Health - Node statuses, conditions, resource usage
  2. Active Alerts - Firing alerts from Alertmanager
  3. ArgoCD Status - App sync and health status
  4. Summary - Overall health rating and recommendations

Example Output

Cluster Status: Healthy

Nodes:
| Node   | Status | CPU  | Memory | Conditions |
|--------|--------|------|--------|------------|
| pi5-1  | Ready  | 45%  | 68%    | OK         |
| pi5-2  | Ready  | 32%  | 52%    | OK         |

Active Alerts: 0

ArgoCD Apps:
| App       | Sync     | Health    |
|-----------|----------|-----------|
| homepage  | Synced   | Healthy   |

Recommendations: None

Autonomy

This command is read-only and runs without confirmation.