Skip to main content

Syntax

tracer stats

Options

--json
boolean
Output result in JSON format

Examples

# Show project statistics
tracer stats

Output

Human-Readable Format

Issue Statistics

  Total Issues:      42
  Open:              15
  In Progress:       8
  Blocked:           3
  Closed:            16

  Ready to Work:     12

  Avg Lead Time:     14.5 hours

JSON Format

{
  "total_issues": 42,
  "open_issues": 15,
  "in_progress_issues": 8,
  "closed_issues": 16,
  "blocked_issues": 3,
  "ready_issues": 12,
  "average_lead_time_hours": 14.5
}

Statistics Explained

total_issues
integer
Total number of issues in the system (all statuses)
open_issues
integer
Number of issues with status “open”
in_progress_issues
integer
Number of issues with status “in_progress”
blocked_issues
integer
Number of issues with status “blocked”
closed_issues
integer
Number of issues with status “closed”
ready_issues
integer
Number of open issues that have no blocking dependencies
average_lead_time_hours
float
Average time in hours from issue creation to closure (only includes closed issues)
Use this command regularly to track project health and workflow efficiency. A high “ready to work” count indicates good project planning.

Build docs developers (and LLMs) love