Kstack: Skill Pack for Claude Code to Monitor and Troubleshoot Kubernetes

Kstack is a skill pack for Claude Code (and other AI coding agents) that exposes a set of slash commands for monitoring and troubleshooting Kubernetes clusters. It hooks into your existing kubeconfig and RBAC permissions, runs standard tools like kubectl, Kubetail, Trivy, Pluto, and hands the results to the LLM for analysis — aiming for fast, token-efficient responses.
Key Skills
/cluster-status— health snapshot (pod restarts, node conditions, resource pressure)/events— recent events ranked by severity/investigate— root-cause analysis across events, logs, and related resources/logs— shared tmux session translating natural language into log fetches (via Kubetail)/metrics— CPU, memory, and other resource metrics for pods, nodes, workloads/exec— shared tmux shell into a pod, node, or ephemeral debug container/audit-security— RBAC, pod security posture, privilege tightening/audit-network— NetworkPolicy, Service, Ingress, GatewayAPI, DNS, and encryption checks/audit-cost— requests vs. usage, over-provisioning, idle capacity/audit-outdated— outdated services, known CVEs, available version bumps/cleanup— removes all kstack-owned resources (debug containers, pod clones, watcher jobs)/forget— clears local cache and cluster knowledge
Installation
Global install:
curl -sS https://kstack.sh/install | bash
Local project install:
curl -sS https://kstack.sh/install | bash -s -- --local
By default, skills are prefixed with kstack-*; use --no-prefix to disable. The installer auto-detects agents on your PATH and installs for each. Supported agents include Claude Code, OpenAI Codex CLI (--agent codex), OpenCode (--agent opencode), Cursor (--agent cursor), Factory Droid (--agent factory), Slate (--agent slate), Kiro (--agent kiro), and Hermes (--agent hermes).
How It Works
All skills are read-only by default — mutations require explicit confirmation. They honor your local kubeconfig context and RBAC. If permissions are insufficient, kstack reports the issue. Global flags like --context <ctx> are supported across all skills.
Who It's For
Developers and platform engineers who use AI coding agents and need quick, natural-language-driven monitoring and debugging of Kubernetes clusters without switching contexts.
📖 Read the full source: HN LLM Tools
👀 See Also

Claude Skills Silently Override Instructions: Undocumented Pitfalls Exposed
User discovers Claude skills silently enforce hard limits on user input via `ask_user_input_v0` (max 3 questions, 4 options each), `Write` overwrites files while `create_file` refuses on Claude.ai, and relative paths in `references/` don't resolve. A community repo catalogs findings.

AgentLens: Observability Tool for Multi-Agent AI Workflows
AgentLens provides unified tracing across Ollama, vLLM, Anthropic, and OpenAI, with cost tracking, an MCP server for querying stats from Claude Code, and a CLI for inline checks. It's self-hosted and runs locally via Docker.

Open Source MCP Server Connects Claude to Mailchimp API
A developer built a Mailchimp MCP server using Claude Code, providing 53 tools for campaigns, audiences, reports, automations, and e-commerce with built-in safety modes and read-only configuration.

GoStaff: Go Rewrite of OpenClaw with 100x Memory Reduction
GoStaff is a Go rewrite of OpenClaw that uses approximately 100x less memory (~17MB) while maintaining OpenClaw plugin compatibility through a JavaScript shim. It features a three-tier skill system, unified Postgres persistence, and multi-provider ReAct loops.