Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.1 KB

File metadata and controls

46 lines (34 loc) · 1.1 KB

Issue Tracking

Rule

ALWAYS update Linear issue status as you work.

Status Transitions

When Set Status To
Starting work on an issue In Progress
Finished implementation + tests pass Done
Blocked or paused Todo (add comment explaining why)
Issue is duplicate Duplicate
Issue no longer needed Canceled

Workflow

  1. Before coding: Set issue to In Progress
  2. While coding: Keep it In Progress
  3. After tests pass: Set issue to Done

Available Statuses (Docudocu team)

Backlog     - Not yet prioritized
Todo        - Ready to work on
In Progress - Currently being worked on
Done        - Completed
Canceled    - Won't do
Duplicate   - Duplicate of another issue

Commands

# Update issue status
mcp__linear-server__update_issue(id: "DOC-XX", state: "Done")
mcp__linear-server__update_issue(id: "DOC-XX", state: "In Progress")

Don't Forget

  • Mark Done immediately after tests pass
  • Don't batch status updates - update as you go
  • If moving to next issue, ensure previous issue is Done first