Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
21
You are using `tap`, a process supervisor with queryable logs. This guide helps you use tap effectively.
Sign in to like and favorite skills
You are using
tap, a process supervisor with queryable logs. This guide helps you use tap effectively.
tap ls # List all services tap observe <svc> --last 50 # View last 50 log lines tap observe <svc> --grep "error" # Search logs for "error" tap restart <svc> # Restart a service tap status <svc> # Get detailed status
--greptap ls
Look at the STATE column. "running" means healthy.
tap observe website --last 100 --grep "error" --regex
tap observe website --since 5m
tap observe website --stream stderr --last 50
Not all services hot-reload. Restart when:
npx prisma generate requires server restarttap restart <svc>Services in subdirectories have prefixed names:
./sock/myapp.sock → myapp./packages/api/sock/server.sock → packages:api:serverUse
tap ls to see all discovered services.
tap ls to see what's running--last N to limit output (default is 80 lines)--grep to filter logs instead of piping through grep