tzurot-docs
1
总安装量
1
周安装量
#54345
全站排名
安装命令
npx skills add https://github.com/lbds137/tzurot --skill tzurot-docs
Agent 安装分布
opencode
1
Skill 文档
Tzurot v3 Documentation & Workflow
Use this skill when: Starting/ending a session, managing work items, creating documentation, or updating existing docs.
Two-File Workflow
Work is tracked in two files. Tech debt competes for the same time as features.
| 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
# Current
> **Session**: YYYY-MM-DD
> **Version**: v3.0.0-beta.XX
## Session Goal
_One sentence on what we're doing today._
## Active Task
_Cut from BACKLOG, paste here when starting work._
ðï¸ `[LIFT]` **Task Name**
- [ ] Subtask 1
- [ ] Subtask 2
## Scratchpad
_Error logs, decisions, API snippets - anything Claude needs to see._
## Recent Highlights
- **beta.XX**: Brief description
BACKLOG.md Structure
## Inbox
_New items go here. Triage to appropriate section later._
## High Priority
_Top 3-5 items to pull into CURRENT next._
## Epic: [Theme Name]
_Group related work by project, not by type._
## Smaller Items
_Opportunistic work between major features._
## Icebox
_Ideas for later. Resist the shiny object._
## Deferred
_Decided not to do yet._
Workflow Operations
Intake (New Idea)
Add to Inbox in BACKLOG.md with a tag. Don’t categorize yet.
## Inbox
- ⨠`[FEAT]` **Feature Name** - Brief description
Triage (Between Tasks)
Move items from Inbox to appropriate section:
- High Priority â If it’s next
- Epic â If it belongs to a theme
- Smaller Items â If opportunistic
- Icebox â If “someday maybe”
Start Work (Pull)
- Cut task from BACKLOG.md
- Paste into CURRENT.md under Active Task
- Add checklist if needed
- Update Session Goal
Complete Work (Done)
- Mark task complete in CURRENT.md
- Move to Recent Highlights (keep last 3-5)
- Pull next task from BACKLOG High Priority
Session End
- Update CURRENT.md with progress
- If task incomplete, note blockers in Scratchpad
- Commit with
wip:prefix if needed
Documentation Structure
docs/
âââ reference/ # THE TRUTH - What currently exists
â âââ architecture/ # Design decisions, system architecture
â âââ deployment/ # Railway, infrastructure setup
â âââ standards/ # Coding patterns, folder structure
â âââ guides/ # Developer how-tos
âââ proposals/ # THE PLANS - What we want to build
â âââ active/ # On roadmap, being worked on
â âââ backlog/ # Ideas not yet scheduled
âââ incidents/ # Postmortems and lessons learned
âââ research/ # Investigation notes
Root files only: README.md, CLAUDE.md, CURRENT.md, BACKLOG.md
Decision Rules
| 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 |
GitHub Releases Format
## What's Changed
### Added
- New feature X for doing Y
### Changed
- Improved performance of A
### Fixed
- Bug where X would fail
**Full Changelog**: https://github.com/lbds137/tzurot/compare/vX.X.X...vY.Y.Y
Best Practices
â Do
- Use tags consistently (ðï¸, â¨, ð, ð§¹)
- Keep CURRENT.md focused on TODAY
- Group work by Epic/Theme in BACKLOG
- Delete obsolete docs (git preserves history)
- Update at session boundaries
â Don’t
- Let CURRENT.md get stale
- Mix feature types in the same Epic
- Keep “someday” items in High Priority
- Create new files when existing ones work
- Document obvious things
Session Start Checklist
- Read CURRENT.md – What’s the active task?
- Read BACKLOG.md High Priority – What’s next?
- Read CLAUDE.md if rules are unclear
- Continue active task or pull next
Related Skills
- tzurot-git-workflow – Commit documentation updates
- tzurot-council-mcp – When to consult for workflow decisions
- tzurot-architecture – Document architectural decisions
References
- Current session:
CURRENT.md - All work items:
BACKLOG.md - Project guidelines:
CLAUDE.md - Documentation structure:
docs/README.md