# 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. Use when this capability is needed.

- Skill: `tomevault-io/tail` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/tail`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/tail/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/tail

---


# Tail - Log Streaming

Stream and tail logs from background processes using the `tail:` MCP tools.

## Quick Reference

| Tool | Purpose |
|------|---------|
| `tail:start_process` | Launch a command in the background |
| `tail:tail_logs` | Show last N log lines |
| `tail:read_logs` | Read new output since last read |
| `tail:kill_process` | Stop a running process |
| `tail:restart_process` | Restart a process |
| `tail:list_processes` | Show all managed processes |
| `tail:remove_process` | Remove a process from the list |

## Common Workflows

### Start and monitor a dev server

1. `tail:start_process` with `command: "npm run dev"` and `id: "dev-server"`
2. `tail:read_logs` with `id: "dev-server"` to check startup output
3. Periodically `tail:tail_logs` with `id: "dev-server"` to see recent logs

### Watch a build

1. `tail:start_process` with `command: "npm run build -- --watch"`
2. `tail:read_logs` to stream incremental output

### Debug a failing process

1. `tail:tail_logs` to see the last N lines of output
2. Check for errors in stderr lines
3. `tail:restart_process` after applying a fix

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/fingerskier) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-16 -->

