Skip to content

ysa logs

View the raw log output for a task.

Usage

ysa logs <task-id> [options]

<task-id> can be a full UUID or an 8-character prefix.

Options

FlagTypeDefaultDescription
-f, --followbooleanFollow log output (like tail -f)
--tail <n>numberShow only the last N lines
-p, --project <path>stringauto-detected git rootProject root directory

Examples

View all logs for a task:

bash
ysa logs ab12cd34

Follow a running task in real time:

bash
ysa logs ab12cd34 --follow

Show only the last 50 lines:

bash
ysa logs ab12cd34 --tail 50

Notes

Logs are stored as newline-delimited JSON at <project>/.ysa/logs/<task-id>.log. Each line is a structured event (assistant message, tool call, system event).