一键导入
alerting
Analyzes the tail end of local or remote log files to perform a health check, identifying issues, errors, or concerning patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyzes the tail end of local or remote log files to perform a health check, identifying issues, errors, or concerning patterns.
用 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 | alerting |
| description | Analyzes the tail end of local or remote log files to perform a health check, identifying issues, errors, or concerning patterns. |
This skill analyzes the tail end of log files (either local or remote) to perform a sanity/health check. It identifies issues, errors, or concerning patterns and outputs a clear, emoji-coded summary.
TARGET: The log source. This can be a local file path (e.g., /var/log/syslog) or a remote URL (e.g., https://example.com/logs/app.log).LINES (Optional): The number of lines to analyze from the end of the file. Default is 50.Fetch the Logs:
TARGET is a local file path: Execute tail -n {LINES} {TARGET} to retrieve the logs.TARGET is a URL: Execute curl -s {TARGET} | tail -n {LINES} to retrieve the logs.Analyze the Logs: Review the fetched log entries carefully for:
Format the Output: Do not include preamble or conversational filler. Output only the formatted health check summary exactly as structured below:
📊 LOG HEALTH CHECK RESULT
1. Overall Status: [Choose ONE emoji and status based on the analysis]
2. Key Findings:
3. Recommended Actions:
You must cut through the noise of standard informational logs and immediately identify anomalies, errors, or warnings. Your output must be brief, highly readable, and structured exactly as requested.