← ClaudeAtlas

reportlisted

This skill should be used when the user asks for a homelab health report, syslog summary, fleet status report, log analysis summary, 'what happened in the last 24 hours', 'show me this week's errors', 'summarize recent activity', or any time-bounded log analysis that should produce a written markdown report.
dinglebear-ai/cortex · ★ 2 · Data & Documents · score 68
Install: claude install-skill dinglebear-ai/cortex
# Cortex Report ## Overview Use the `cortex` MCP tool as the source of truth for recent device logs. Query broad fleet state first, then drill into errors, warnings, host-specific tails, and correlated events before writing a markdown report with concrete next actions. ## Workflow 1. Establish the reporting window. - Default to the last 24 hours when the user does not specify a window. - Use exact timestamps in the report. If the tool supports relative filters, use `since=24h`; otherwise compute an ISO-8601 start and end time. - Carry the computed `from` and `to` values into every time-filterable query below. 2. Confirm MCP availability and current coverage. - Call `cortex action=stats` to capture DB size, time range, retention/storage guard state, and total log count. - Call `cortex action=hosts` to list devices with first/last seen timestamps and counts. - If the MCP tool is unavailable, report that no live syslog evidence could be collected and include the failure details. 3. Collect incident candidates. - Call `cortex action=errors since=<start> until=<end>` for warning/error summaries grouped by host and severity. - Call `cortex action=search query=error since=<start> until=<end> limit=1000` for error detail inside the report window. - Call `cortex action=search query="warning OR warn" since=<start> until=<end> limit=1000` when warning coverage is not already clear from `errors`. - Call `cortex action=tail n=100` for recent fleet-wide