Syntax
Description
Thefeedback show command displays comprehensive details about a feedback entry, including:
- Feedback ID and type
- Source issue and target spec
- Dismissed status and agent
- Creation and update timestamps
- Full feedback content
- Anchor location with status
- Original location (if relocated or stale)
- Context snippets
This command shows the complete feedback content, unlike
feedback list which only shows a preview.Arguments
The feedback ID to displayExample:
FB-001The unique identifier for the feedback entry.Examples
Show Basic Feedback
Display feedback details:Expected output
Expected output
Show Feedback with Stale Anchor
View feedback with outdated anchor:Expected output
Expected output
When anchor status is “stale” or “relocated”, the original location is shown for reference.
Show Relocated Feedback
View feedback that was moved:Expected output
Expected output
Show Dismissed Feedback
View resolved feedback:Expected output
Expected output
Show Comment Feedback
View implementation notes:Expected output
Expected output
JSON Output
Get machine-readable output:JSON output
JSON output
Understanding Feedback Details
Feedback Types
comment
Informational notesDocuments implementation decisions, shares learnings, or provides status updates. No action required.
suggestion
Improvement proposalsProposes changes or enhancements to the spec based on implementation experience.
request
Clarification neededPoints out ambiguities or missing requirements discovered during implementation.
Anchor Status
The anchor status indicates whether the feedback location is still accurate:valid (green)
Anchor is accurate - the line number and context match the current spec content.No action needed.
relocated (yellow)
Content moved but anchor was successfully updated to new location.Review to confirm accuracy, but usually fine.
Original Location
When feedback has been relocated or become stale, the “Original Location” section shows:- The line number where the anchor was originally created
- The section heading at that original location
Common Workflows
Review Feedback Before Responding
Investigate Stale Feedback
Audit Implementation Feedback
View all feedback from a completed issue:Generate Feedback Report
Create a summary of feedback:Scripting Examples
Extract Feedback Content
Check Anchor Status
Find Feedback Location
Batch Review
Common Questions
How do I see the feedback in context of the spec?
How do I see the feedback in context of the spec?
Use This shows feedback anchored to specific locations in the spec content.
spec show to view the spec with all its feedback:What does the snippet show?
What does the snippet show?
The snippet is a short excerpt from the spec at the anchor location. It helps confirm the feedback is pointing to the right content.
Can I edit feedback after creating it?
Can I edit feedback after creating it?
No, there’s no edit command. To modify feedback:
- Dismiss the old feedback
- Add new feedback with updated content
Why does dismissed feedback show old timestamps?
Why does dismissed feedback show old timestamps?
updated_at reflects when the feedback was last modified, including when it was dismissed. The dismiss action updates this timestamp.What's the difference between context_before and context_after?
What's the difference between context_before and context_after?
These are lines surrounding the anchor point:
- context_before - Text above the anchor location
- context_after - Text below the anchor location
Can I show multiple feedback entries at once?
Can I show multiple feedback entries at once?
Not with a single command. Use shell scripting:
Troubleshooting
Error: Feedback not found
Error: Feedback not found
Cause: The feedback ID doesn’t existSolution:
List all feedback to find the correct ID:
Anchor shows as stale but content looks correct
Anchor shows as stale but content looks correct
Cause: Line numbers changed due to edits elsewhere in specSolution:
If the location is still correct, update status to relocated:
Original location is missing
Original location is missing
Cause: Feedback has never been relocated (status is valid)Solution:
Original location only appears when status is “relocated” or “stale”. Valid anchors don’t need it.
Content is truncated in JSON output
Content is truncated in JSON output
Cause: Content is likely complete, check if it’s a display issueSolution:
Verify content length:
Related Commands
feedback list
List all feedback
feedback add
Add new feedback
feedback dismiss
Dismiss feedback
feedback relocate
Relocate stale anchor
spec show
View spec with feedback
issue show
View issue with feedback
Next Steps
Feedback System Concept Guide
Learn more about the feedback system and bidirectional learning

