Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Abil-Shrestha/tracer/llms.txt
Use this file to discover all available pages before exploring further.
Syntax
Description
Lists all issues matching the specified filters. Without filters, returns all issues in the database.Options
Filter by status. Valid values:
open, in_progress, blocked, closed.Filter by exact priority level (0-4).
Filter by issue type. Valid values:
bug, feature, task, epic, chore.Filter by assignee name.
Filter by labels (comma-separated). Returns issues with ANY of the specified labels.
Maximum number of results to return.
Output results in JSON format.
Examples
Output Format
Human-readable
JSON (with —json flag)
No results
Filters are combined with AND logic. For example,
--status open --priority 0 returns issues that are both open AND priority 0.The exception is labels, which uses OR logic: --labels "a,b" returns issues with label “a” OR label “b”.