From fly-ops
Fetch and filter production logs from Fly.io apps. Trigger on "посмотри логи", "check prod logs", "что в логах", or when debugging any production issue on a Fly-hosted app.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fly-ops:fly-logsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
fly apps list # find the app name
fly logs -a <app> # live tail
fly logs -a <app> --no-tail | tail -200 # recent burst, non-blocking
fly logs -a <app> -i <machine-id> # one machine only
fly logs tails by default; for analysis prefer --no-tail piped through
grep so the command terminates.
fly logs -a <app> --no-tail | grep -iE 'error|traceback|exception' | tail -50
fly logs -a <app> --no-tail | grep ' 500 ' # server errors on requests
fly logs -a <app> --no-tail | grep '<endpoint>' # one route's traffic
debugger subagent.npx claudepluginhub kulykivska/claude-plugins --plugin fly-opsGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.