FB-001 request────────────────────────────────────────────────────────────Issue: ISSUE-001Spec: SPEC-001Status: ActiveAgent: aliceCreated: 2025-10-29T10:15:00ZUpdated: 2025-10-29T10:15:00ZContent:Token expiration policy not specified. Should we use fixed or sliding window?Consider adding explicit policy in the Authentication section with recommendedvalues for access tokens (15 minutes) and refresh tokens (7 days).Anchor Location: Status: valid Section: Authentication Flow Line: 42 Snippet: "Token expiration policy"
FB-005 suggestion────────────────────────────────────────────────────────────Issue: ISSUE-020Spec: SPEC-003Status: ActiveAgent: carolCreated: 2025-10-27T11:00:00ZUpdated: 2025-10-29T10:45:00ZContent:Consider using enum type instead of string constants for user roles.This provides better type safety and IDE autocomplete support.Example:enum UserRole { ADMIN = 'admin', USER = 'user', GUEST = 'guest'}Anchor Location: Status: relocated Section: Data Model Line: 92 Snippet: "User role definitions"Original Location: Line: 85 Section: User Schema
FB-002 comment────────────────────────────────────────────────────────────Issue: ISSUE-005Spec: SPEC-001Status: ActiveAgent: bobCreated: 2025-10-29T11:00:00ZUpdated: 2025-10-29T11:00:00ZContent:OAuth flow implemented successfully with PKCE extension as specified.Used authorization code flow with state parameter for CSRF protection.Access token TTL set to 1 hour, refresh token to 30 days as per OAuth 2.0best practices.Anchor Location: Status: valid Section: OAuth 2.0 Flow Line: 30 Snippet: "OAuth implementation details"
# Show all active requestsfor fb_id in $(sudocode --json feedback list --type request --dismissed false | jq -r '.[] | .id'); do echo "=== $fb_id ===" sudocode feedback show "$fb_id" echodone
# Review all feedback for a specfor fb_id in $(sudocode --json feedback list --spec SPEC-001 | jq -r '.[] | .id'); do echo "Reviewing $fb_id..." sudocode feedback show "$fb_id" echo "Press enter for next..." readdone
Cause: The feedback ID doesn’t existSolution:
List all feedback to find the correct ID:
Copy
sudocode feedback list
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:
Copy
sudocode feedback relocate FB-001 --line 42
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
Cause: Content is likely complete, check if it’s a display issueSolution:
Verify content length: