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>
1.2 KiB
1.2 KiB
name, description, model
| name | description | model |
|---|---|---|
| k8s-quick-status | Quick cluster health pulse check | haiku |
K8s Quick Status Skill
Performs a lightweight health pulse check on the Raspberry Pi Kubernetes cluster.
Checks Performed
Node Status
- Node readiness (
kubectl get nodes) - Node conditions (MemoryPressure, DiskPressure, PIDPressure)
Pod Health
- Unhealthy pods (
kubectl get pods -A --field-selector=status.phase!=Running) - High restart counts (pods with >5 restarts)
Recent Events
- Warning events in last hour (
kubectl get events -A --field-selector=type=Warning --sort-by='.lastTimestamp')
ArgoCD Status
- Application sync status (
argocd app list) - Any OutOfSync or Degraded apps
Output Format
Report as structured summary with:
- Overall status (healthy/warning/critical)
- Node summary table
- Unhealthy pods list (if any)
- ArgoCD app status
- Immediate concerns (if any)
Autonomy
This skill is read-only and can run without confirmation.
When to Use
Use this skill for a quick pulse check. For comprehensive analysis with metrics and detailed recommendations, use the /cluster-status command which invokes the full cluster-health-check workflow.