--- name: tzurot-docs description: 'Session workflow procedures. Invoke with /tzurot-docs for session start/end, CURRENT.md/BACKLOG.md management.' lastUpdated: '2026-02-04' --- # Documentation & Session Workflow **Invoke with /tzurot-docs** for session management and documentation procedures. ## Session Start Procedure 1. Read `CURRENT.md` - What's the active task? 2. Read `BACKLOG.md` High Priority - What's next? 3. Continue active task or pull next ## Session End Procedure 1. Update `CURRENT.md` with progress 2. If task incomplete, note blockers in Scratchpad 3. Commit with `wip:` prefix if needed ## Work Tracking Files | File | Purpose | Update When | | ------------ | ------------------------------------- | ----------------------------- | | `CURRENT.md` | Active session - what's happening NOW | Start/end session, task done | | `BACKLOG.md` | Everything else - all queued work | New ideas, triage, completion | **Tags**: ๐Ÿ—๏ธ `[LIFT]` refactor/debt | โœจ `[FEAT]` feature | ๐Ÿ› `[FIX]` bug | ๐Ÿงน `[CHORE]` maintenance ## CURRENT.md Structure ```markdown # Current > **Session**: YYYY-MM-DD > **Version**: v3.0.0-beta.XX ## Session Goal _One sentence on what we're doing today._ ## Active Task ๐Ÿ—๏ธ `[LIFT]` **Task Name** - [ ] Subtask 1 - [ ] Subtask 2 ## Scratchpad _Error logs, decisions, API snippets._ ## Recent Highlights - **beta.XX**: Brief description ``` ## BACKLOG.md Structure ```markdown ## Inbox _New items. Triage to appropriate section later._ ## High Priority _Top 3-5 items to pull into CURRENT next._ ## Epic: [Theme Name] _Group related work by project._ ## Smaller Items _Opportunistic work._ ## Icebox _Ideas for later._ ``` ## Workflow Operations ### Intake (New Idea) Add to **Inbox** in BACKLOG.md with a tag: ```markdown - โœจ `[FEAT]` **Feature Name** - Brief description ``` ### Start Work (Pull) 1. Cut task from BACKLOG.md 2. Paste into CURRENT.md under **Active Task** 3. Add checklist if needed 4. Update **Session Goal** ### Complete Work (Done) 1. Mark task complete in CURRENT.md 2. Move to **Recent Highlights** (keep last 3-5) 3. Pull next task from BACKLOG High Priority ## Documentation Structure ``` docs/ โ”œโ”€โ”€ reference/ # THE TRUTH - What currently exists โ”‚ โ”œโ”€โ”€ architecture/ โ”‚ โ”œโ”€โ”€ deployment/ โ”‚ โ””โ”€โ”€ standards/ โ”œโ”€โ”€ proposals/ # THE PLANS - What we want to build โ”œโ”€โ”€ incidents/ # Postmortems โ””โ”€โ”€ research/ # Investigation notes ``` | Question | Answer | | -------------------- | -------------------------------- | | Is it work to do? | โ†’ BACKLOG.md | | Is it active now? | โ†’ CURRENT.md | | Is it implemented? | โ†’ `docs/reference/` | | Is it a future plan? | โ†’ `docs/proposals/` | | Is it done/obsolete? | โ†’ Extract learnings, then DELETE | ## References - Current session: `CURRENT.md` - All work items: `BACKLOG.md`