Skip to main content

Usage

Description

Show detailed information about one or more issues, including description, design notes, dependencies, comments, and full audit trail.

Parameters

string[]
Issue IDs to display. If omitted with --current, shows the active issue. Supports multiple IDs to view several issues at once.

Display Options

boolean
Show compact one-line output per issue
boolean
Show all available fields (extended metadata, agent identity, gate fields, etc.)
boolean
Show the currently active issue (in-progress, hooked, or last touched)

Special Views

boolean
Show full conversation thread (for message issues)
boolean
Show issues that reference this issue (reverse lookup)
boolean
Show only the children of this issue

Time Travel

string
Show issue as it existed at a specific commit hash or branch (requires Dolt)

Advanced

string[]
Issue ID (use for IDs that look like flags, e.g., --id=gt--xyz)
boolean
Show timestamps in local time instead of UTC
boolean
Watch for changes and auto-refresh display

Output

boolean
Output JSON for agent use

Examples

Basic Display

Display Modes

Special Views

Time Travel

Flag-Like IDs

JSON Output

With --json flag:

Terminal Output

Default View

Short View

Long View

Includes additional fields:

Current Issue Resolution

With --current flag, resolves the active issue using this priority:
  1. In-progress issues assigned to current actor
  2. Hooked issues assigned to current actor
  3. Last touched issue from recent create/update/show/close

Watch Mode

Continuously monitor an issue for changes:
Uses polling (not filesystem watching) because Dolt stores data server-side. Refreshes every 2 seconds. Press Ctrl+C to exit.

Time Travel with Dolt

View historical versions of issues:
Time travel requires Dolt backend. Not available with SQLite.

Dependency Display

Dependencies are grouped by type:

PARENT

Parent-child relationships (issue is child)

DEPENDS ON

Blocking dependencies (issue depends on these)

DISCOVERED FROM

Discovery tracking (issue was found during these)

CHILDREN

Hierarchical children (issue is parent)

BLOCKS

Reverse blocking (issue blocks these)

DISCOVERED

Reverse discovery (issue led to discovery of these) Bidirectional informational links (deduplicated)

Best Practices

For Agents

  1. Use --json for parsing
  2. Use --current to check active work
  3. Use --short for bulk scanning
  4. Parse dependencies to understand blocking state

For Humans

  1. Use default view for detailed context
  2. Use --long when debugging
  3. Use --watch during active development
  4. Check dependencies before starting work

Agent Workflow