agent-tail
Installation
SKILL.md
agent-tail
Pipes browser console output and dev server stdout/stderr to plain log files on disk so you can grep, tail, and read them directly.
Reading logs
agent-tail tail -n 200
agent-tail tail browser -n 50
agent-tail tail -f
grep -ri "error\|warn" tmp/logs/latest/
tail -50 tmp/logs/latest/browser.log
tail -f tmp/logs/latest/*.log
Use plain tail if direct file paths are easier. Use agent-tail tail if you want the CLI to resolve the latest session for you and forward flags like -f and -n 200 directly to tail.