Syntax
Description
Theissue show command displays comprehensive information about an issue. This includes:
- Basic metadata (title, status, priority, assignee, timestamps)
- Parent issue (if hierarchical)
- Full content/description
- Outgoing relationships (what this issue depends on or implements)
- Incoming relationships (what depends on or blocks this issue)
- Tags
- Feedback provided to specs
This command is essential for understanding an issue’s context, including blockers, dependencies, and spec implementations.
Arguments
The ID of the issue to displayExample:
ISSUE-001The issue ID must exist in your project.Output Format
The command displays information in the following sections:Header Section
- Issue ID and Title - Displayed prominently
- Status - Current workflow state (open, in_progress, blocked, needs_review, closed)
- Priority - 0-4 priority level
- Assignee - Who’s working on it (if assigned)
- Parent - Parent issue ID (if hierarchical)
- Created/Updated/Closed - Timestamps
- Tags - Associated tags
Content Section
- Full content/description of the issue
Outgoing Relationships
- Relationships from this issue to other entities
- Format:
relationship_type → TARGET_ID (entity_type) - Shows what this issue implements, depends on, or references
Incoming Relationships
- Relationships from other entities to this issue
- Format:
SOURCE_ID (entity_type) → relationship_type - Shows what blocks or references this issue
Feedback Provided
- Feedback this issue has provided to specs
- Shows feedback ID, target spec, type, status, and preview
Examples
Basic Usage
Display an issue:Expected output
Expected output
Blocked Issue
View a blocked issue to see what’s blocking it:Expected output
Expected output
Closed Issue
View a completed issue:Expected output
Expected output
Hierarchical Issue (Subtask)
View a subtask within an epic:Expected output
Expected output
Issue with No Relationships
View a standalone issue:Expected output
Expected output
JSON Output
Get machine-readable output:JSON output
JSON output
Understanding Relationships
Outgoing Relationships
Shows what this issue connects to:- This issue implements requirements from SPEC-001
- It has a soft dependency on ISSUE-002
- It references SPEC-010 for additional context
Incoming Relationships
Shows what connects to this issue:- ISSUE-003 is blocked by this issue (ISSUE-003 can’t proceed until this is done)
- ISSUE-005 is related to this issue (same domain/context)
Blocked Status
If an issue status isblocked, check incoming relationships:
Understanding Feedback
Feedback shows what this issue has communicated to specs:FB-001- Feedback IDSPEC-001- Target spec receiving feedback[active]- Not dismissed[valid]- Anchor is still validrequest- Feedback type (comment, suggestion, or request)line 42- Anchored location in spec- Preview of feedback content
Common Workflows
Checking if Work is Ready
Understanding Issue Context
Claiming Work
Common Questions
What does 'blocks' mean in incoming vs outgoing relationships?
What does 'blocks' mean in incoming vs outgoing relationships?
- Outgoing
blocks: This issue blocks another issue (others depend on this being done) - Incoming
blocks: Another issue blocks this issue (this can’t proceed until blocker is done)
How do I see the spec this issue implements?
How do I see the spec this issue implements?
Check the “Outgoing Relationships” section for Then view the spec:
implements relationships:What's the difference between parent_id and blocked relationships?
What's the difference between parent_id and blocked relationships?
- Parent: Hierarchical organization (epic/subtask structure), doesn’t affect execution
- Blocked by: Hard dependency, prevents issue from being worked on
Can I hide certain sections?
Can I hide certain sections?
Use
--json and parse specific fields with jq:How do I see all issues this issue blocks?
How do I see all issues this issue blocks?
Check “Outgoing Relationships” for
blocks type:Troubleshooting
Error: Issue not found
Error: Issue not found
Cause: The issue ID doesn’t existSolution:
Verify the ID:Or search:
Content section is empty
Content section is empty
Cause: The issue has no description/contentSolution:
This is normal for newly created issues. Add content with:
No relationships shown
No relationships shown
Cause: The issue has no relationships created yetSolution:
This is normal. Create relationships with:
Feedback section appears but I haven't added any
Feedback section appears but I haven't added any
Cause: Feedback is only shown if the issue has provided feedback to specsSolution:
This is normal. The section only appears when feedback exists.
Related Commands
issue list
List all issues
issue update
Update issue properties
issue create
Create new issue
spec show
View spec details
link
Create relationships
ready
Find ready work
Next Steps
Issues Concept Guide
Learn more about issues and their lifecycle

