ワンクリックで
k8s
MANDATORY parallel execution patterns, cluster overview script, -o json with jq filtering, batch operations, and common pitfalls
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
MANDATORY parallel execution patterns, cluster overview script, -o json with jq filtering, batch operations, and common pitfalls
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Cloudflare GraphQL Analytics for zone traffic, firewall events, Workers metrics, and schema exploration. Use when querying Cloudflare analytics data or exploring the GraphQL API.
PostgreSQL database analysis, performance tuning, and health monitoring. You MUST read this entire skill document before executing any PostgreSQL operations — it contains mandatory workflows, safety constraints, and two-phase execution rules that prevent common errors like hallucinated column names and unsafe queries.
SonarQube code quality and security analysis. Use when working with code quality metrics, security hotspots, quality gates, or issue tracking in SonarQube Cloud or Server.
Use when working with Aws Billing — analyze, break down, and report AWS costs and bills. Covers cost breakdown by service, account, or usage type; monthly/daily billing trends; cost anomaly detection; RI/SP utilization; cost forecasting; credit/discount analysis; and multi-account cost comparison. Uses anti-hallucination rules, mandatory currency/credit detection workflow, and reusable Cost Explorer functions.
Use when working with Aws Idle Resources — detect unused and idle AWS resources that incur cost without providing value. Covers detached EBS volumes, idle load balancers, unused Elastic IPs, stopped EC2 instances, idle NAT Gateways, old snapshots, and unused ENIs. Includes estimated monthly waste per resource and anti-hallucination rules for safe detection.
Use when working with Aws Pricing — aWS pricing helper for cost queries. ALWAYS use get_aws_cost script for pricing questions. Use when: - User asks about AWS resource costs or pricing - User wants to compare pricing across regions - User needs spot, on-demand, or reserved pricing info Triggers: aws pricing, aws cost, how much does, ec2 price, rds cost, s3 pricing.
| name | k8s |
| description | MANDATORY parallel execution patterns, cluster overview script, -o json with jq filtering, batch operations, and common pitfalls |
| connection_type | k8s |
| preload | false |
Execute kubectl and helm commands with proper kubeconfig injection.
bun run ./_skills/connections/k8s/k8s/scripts/discover.ts
The output is auto-cached. Do not re-run unless user explicitly requests refresh.
Run the cluster discovery script (or the shell script directly):
bun run ./_skills/connections/k8s/k8s/scripts/discover.ts
# or
./get_k8s_cluster_overview.sh
This provides comprehensive cluster analysis (nodes, pods, resources, services, events) in a single parallelized call. Only run targeted kubectl commands AFTER reviewing the overview output for specific deep-dives.
🚨 MANDATORY: ALL independent kubectl operations MUST run in parallel using background jobs (&) + wait
for item in $items; do kubectl get $item; donefor item in $items; do kubectl get $item & done; waitWhen to parallelize:
Pattern:
# CORRECT: Parallel (0.5s for 30 pods)
for pod in $pods; do kubectl get pod "$pod" -n "$ns" & done; wait
# WRONG: Sequential (15s for 30 pods)
for pod in $pods; do kubectl get pod "$pod" -n "$ns"; done
Best practice - Batch:
# Fastest: Single kubectl call per namespace
kubectl get pods -n "$ns" -o json | jq '.items[] | {name, phase, ready}'
-o json with jq (better AI parsing)
kubectl get pods -n $ns -o json | jq -r '.items[] | "\(.metadata.name)\t\(.status.phase)"'-o jsonpath or --no-headers (token efficient)
kubectl get pods -n $ns -o jsonpath='{.items[*].metadata.name}'kubectl get -o json instead of multiple calls
BAD: kubectl get node $n -o jsonpath='{.status.nodeInfo.machineID}'; kubectl get node $n -o jsonpath='{.status.nodeInfo.kubeletVersion}'
GOOD: kubectl get node $n -o json | jq '{machineID: .status.nodeInfo.machineID, kubeletVersion: .status.nodeInfo.kubeletVersion}'--field-selector and --selector before post-processingkubectl top requires metrics-server; handle gracefully if unavailablekubectl get <resource> -n <ns> -o json | jq -r '.items[] | ...'kubectl get pods -n <ns> -l app=myappkubectl get pods --field-selector=status.phase=Runningkubectl get events -n <ns> --sort-by='.lastTimestamp'kubectl logs <pod> -n <ns> --tail=100 (use cautiously)-o json + jqkubectl describe verbose → Use kubectl get -o json | jq instead./get_k8s_cluster_overview.sh (in sandbox home) - YOUR GO-TO STARTING POINT
Provides: cluster info, nodes, pods, resources, namespaces, services, events
Usage: ./get_k8s_cluster_overview.sh
Output: Structured JSON or machine-readable text (all operations parallelized)
TIP: Run this FIRST, then drill down into specific areas based on findings
--help output.| Shortcut | Counter | Why |
|---|---|---|
| "I'll skip discovery and check known resources" | Always run Phase 1 discovery first | Resource names change, new resources appear — assumed names cause errors |
| "The user only asked for a quick check" | Follow the full discovery → analysis flow | Quick checks miss critical issues; structured analysis catches silent failures |
| "Default configuration is probably fine" | Audit configuration explicitly | Defaults often leave logging, security, and optimization features disabled |
| "Metrics aren't needed for this" | Always check relevant metrics when available | API/CLI responses show current state; metrics reveal trends and intermittent issues |
| "I don't have access to that" | Try the command and report the actual error | Assumed permission failures prevent useful investigation; actual errors are informative |