Agent Skills
› NeverSight/learn-skills.dev
› status
status
GitHub展示书店平台集群状态,包括所有命名空间下的Pod、非运行Pod、关键服务端点HTTP健康检查、Flink作业、TLS证书及Cert Dashboard操作器状态。
Trigger Scenarios
查看集群整体健康状况
检查特定命名空间的Pod状态
诊断服务不可用问题
Install
npx skills add NeverSight/learn-skills.dev --skill status -g -y
SKILL.md
Frontmatter
{
"name": "status",
"description": "Show full cluster status — pods, endpoints, Flink jobs, Debezium health",
"allowed-tools": "Bash",
"argument-hint": [
"namespace"
],
"disable-model-invocation": true
}
Show the current state of the bookstore platform.
Steps
If a specific namespace is provided via $ARGUMENTS, show pods for that namespace only. Otherwise show everything.
- Pod status — all namespaces (exclude kube-system, local-path-storage for brevity):
kubectl get pods -A --no-headers 2>/dev/null | grep -v kube-system | grep -v local-path-storage
- Non-running pods (highlight problems):
kubectl get pods -A --no-headers 2>/dev/null | grep -v Running | grep -v Completed
-
Key endpoints — check HTTP status (use
curl -skfor HTTPS with self-signed cert):- Books API:
https://api.service.net:30000/ecom/books - UI:
https://myecom.net:30000/ - Keycloak:
https://idp.keycloak.net:30000/realms/bookstore/.well-known/openid-configuration - Inventory:
https://api.service.net:30000/inven/health - Superset:
http://localhost:32000/health - Kiali:
http://localhost:32100/kiali/ - Flink:
http://localhost:32200/overview - Grafana:
http://localhost:32500/api/health - Debezium ecom:
http://localhost:32300/q/health - Debezium inventory:
http://localhost:32301/q/health - PgAdmin:
http://localhost:31111/misc/ping - Keycloak Admin:
http://localhost:32400/admin/ - Cert Dashboard:
http://localhost:32600/healthz
- Books API:
-
Flink jobs:
curl -s http://localhost:32200/jobs 2>/dev/null
- TLS certificates (if cert-manager is installed):
kubectl get certificates -A 2>/dev/null
- Cert Dashboard operator (if deployed):
kubectl get certdashboard -n cert-dashboard 2>/dev/null
kubectl get pods -n cert-dashboard 2>/dev/null
- Present a summary table with status indicators.
Version History
- e0220ca Current 2026-07-05 21:38


