Stats
Actions
Tags
From tail
Tail and stream logs from background processes. View recent output, read new lines, and monitor running applications. Use when tailing logs, checking process output, streaming application logs, or monitoring background tasks.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tail:tailThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Stream and tail logs from background processes using the `tail:` MCP tools.
Stream and tail logs from background processes using the tail: MCP tools.
| Tool | Purpose |
|---|---|
tail:start_process | Launch a command in the background (cwd, env) |
tail:tail_logs | Show last N log lines (optional pattern filter) |
tail:read_logs | Read new output since last read (optional pattern filter) |
tail:wait_for | Block until output matches / goes idle / exits / times out |
tail:kill_process | Stop a running process and its child tree |
tail:restart_process | Restart a process (waits for full exit first) |
tail:list_processes | Show all managed processes |
tail:remove_process | Remove a process from the list |
tail:start_process with command: "npm run dev" and id: "dev-server"tail:read_logs with id: "dev-server" to check startup outputtail:tail_logs with id: "dev-server" to see recent logstail:start_process with command: "npm run build -- --watch"tail:read_logs to stream incremental outputtail:start_process with command: "npm test -- --watch" and id: "tests"tail:wait_for with id: "tests" and idle_ms: 1500 to block until the re-run settlestail:tail_logs with pattern: "fail|✗|Error" to see only failurestail:start_process with command: "npm run dev" and id: "dev"tail:wait_for with id: "dev" and pattern: "listening on|ready" -- returns as soon as it's up (or reason: "exit" if it crashed first)tail:tail_logs with pattern: "error|warn" to surface problem linestail:restart_process after applying a fix (old instance is fully stopped first)Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub fingerskier/claude-plugins --plugin tail