一键导入
monitoring
Monitor environment health by checking URLs with 'curl -o /dev/null --max-time 5 -s -w "%{http_code}\n"' and analyzing failures with LLM.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Monitor environment health by checking URLs with 'curl -o /dev/null --max-time 5 -s -w "%{http_code}\n"' and analyzing failures with LLM.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Two-layer memory system with grep-based recall.
Executes tools for AI agents, ensuring correct parameter formats and preventing common execution errors.
Get current weather and forecasts (no API key required). Use the `run_terminal_command` tool for execution.
Use this skill to get documentation for third-party APIs, SDKs or libraries before writing code that uses them to ensure you have the latest, most accurate documentation. This is a better way to find documentation than doing web search. This includes when a user asks for tasks like "use the OpenAI API", "call the Stripe API", "use the Anthropic SDK", "query Pinecone", or any other time the user asks you to write code against an external service and you need current API reference. Fetch the docs with chub before answering, rather than relying on your pre-trained knowledge, which may be outdated because of recent changes to these APIs. Be sure to use this skill when the user asks for the latest docs, latest API behavior, or explicitly mentions chub or Context Hub. Ensure `chub` is available, run `chub --help`, then follow the instructions there.
Summarize public content — articles/text, YouTube videos, or podcasts — by fetching text or transcripts.
| name | monitoring |
| description | Monitor environment health by checking URLs with 'curl -o /dev/null --max-time 5 -s -w "%{http_code}\n"' and analyzing failures with LLM. |
Monitor the health status of environments by performing HTTP checks on provided URLs. The skill uses curl to verify connectivity and HTTP status codes, with automatic LLM-powered analysis for failures.
Check a single environment:
curl -o /dev/null --max-time 5 -s -w "%{http_code}\n" "https://api.example.com/health"
curl -s) to the environment URL✅ {environment_name} : healthy
Status: 200
⚠️ {environment_name} curl stderr: {error_message}
Status: ERROR
Analysis: {LLM-generated explanation and solutions}
❌ {environment_name} curl failed: {error_message}
Status: ERROR
Analysis: {LLM-generated explanation and solutions}
When monitoring an environment, provide:
curl -o /dev/null --max-time 5 -s -w "%{http_code}\n" "https://api.production.com/health"
The skill automatically applies a 5-second timeout to prevent hanging:
curl -o /dev/null --max-time 5 -s -w "%{http_code}\n" "https://slow-service.example.com/status"
# Will timeout and trigger LLM analysis if no response within 5s
Check each environment sequentially:
curl -o /dev/null --max-time 5 -s -w "%{http_code}\n" "https://api.prod.com/health"
curl -o /dev/null --max-time 5 -s -w "%{http_code}\n" "https://api.staging.com/health"
curl -o /dev/null --max-time 5 -s -w "%{http_code}\n" "https://api.dev.com/health"
When a health check fails, the LLM receives:
The LLM provides:
https:// or http://)