Tack
Reference

CLI Reference

Complete reference for all Tack CLI commands.

Commands

CommandDescription
tack daemonStart the orchestrator daemon
tack plan <description>Create an objective and generate a plan
tack plan <desc> --simpleSingle-agent mode (no decomposition)
tack plansList all plans
tack show <plan-id>Show plan details with streams
tack approve <plan-id>Approve a plan for execution
tack reject <plan-id>Reject a plan
tack exec <objective-id>Manually trigger execution
tack statusShow daemon status
tack agentsList active agent sessions
tack watchLive stream of agent activity
tack logs <agent-id>Replay agent activity log
tack mailView escalation and message history
tack mergeView merge queue status
tack versionPrint version

tack daemon

Start the orchestrator daemon. Runs in the foreground.

tack daemon --config .tack/config.yaml

Flags:

  • --config — path to config file (default: .tack/config.yaml)

tack plan

Create an objective and generate a plan.

tack plan "Add pagination to all list endpoints"
tack plan "Fix the typo" --simple

Flags:

  • --simple — single-agent mode, skip planning and auto-approve
  • --blueprint — override the blueprint name

tack show

Show plan details including streams, file scopes, and dependencies.

tack show <plan-id>

tack approve / reject

Approve or reject a plan.

tack approve <plan-id>
tack reject <plan-id>

tack watch

Live stream of agent activity with filtering.

tack watch
tack watch --verbose    # Full tool arguments and diffs
tack watch --summary    # Objective-level status only

tack logs

Replay agent activity from JSONL logs.

tack logs <agent-id>
tack logs <agent-id> --follow

On this page