Tooling for creating, tracking, and closing backlog todo items derived from development tasks.
Install
mkdir -p .claude/skills/backlog && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15438" && unzip -o skill.zip -d .claude/skills/backlog && rm skill.zipInstalls to .claude/skills/backlog
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Manage backlog todo documents in docs/backlogs with deterministic tooling. Use when manually creating backlog items with duplicate checks, especially deferred follow-ups discovered during in-progress task/RFC work that need recoverable context, or closing/archiving backlog items with explicit reasons.Key capabilities
- →Understand and confirm user's backlog intention
- →Classify backlog items as standalone or deferred work
- →Collect required base fields for backlog items
- →Collect deferred-work context for postponed tasks
- →Run duplicate detection on open backlog documents
- →Create backlog documents with allocated IDs
How it works
The skill guides the user through creating or closing backlog items, collecting necessary details, performing duplicate checks, and using deterministic tooling to manage documents in `docs/backlogs`.
Inputs & outputs
When to use backlog
- →Create backlog item
- →Defer task to backlog
- →Close backlog entry
About this skill
Backlog Workflow
Use this skill for backlog lifecycle operations.
Scripts are executable; invoke them directly (no cargo +nightly -Zscript prefix).
This skill has two prompt workflows:
backlog create: create a new backlog todo with duplicate check.backlog close: close/archive an open backlog item with reason.
backlog create Required Flow
- Understand and confirm the user's backlog intention first.
- Classify the backlog item before collecting fields:
- standalone follow-up backlog item, or
- intentionally deferred work from active task/RFC execution.
- Collect required base fields:
- title
- slug
- summary
- reference
- scope hint
- acceptance hint
- optional notes
- If the backlog item is intentionally deferred from active task/RFC work, require deferred-work context:
deferred from: source task doc, source RFC doc/phase, or both.defer reason: why the work is postponed now.findings: what current execution learned and should not be lost.direction hint: what future task/RFC planning should revisit, prefer, or avoid.
- Run duplicate detection on open backlog docs only:
tools/backlog.rs find-duplicates \
--title "Backlog title" \
--slug "backlog-title"
- If duplicate candidates exist, show candidates and ask whether to continue.
- Create the backlog doc with allocated id:
tools/backlog.rs create-doc \
--title "Backlog title" \
--slug "backlog-title" \
--summary "..." \
--reference "..." \
--scope-hint "..." \
--acceptance-hint "..." \
--auto-id
When the item is intentionally deferred from active task/RFC work, also pass:
--deferred-from "docs/tasks/000040-example.md; docs/rfcs/0006-example.md phase 2" \
--defer-reason "..." \
--findings "..." \
--direction-hint "..."
- If
docs/backlogs/next-idis missing, initialize it first:
tools/backlog.rs init-next-id
Ensure deferred-work backlog docs preserve enough context for a future task or RFC to recover the right design direction instead of re-discovering the same issue from scratch.
For multiline text, markdown, Rust code, or any text containing backticks, prefer the file-backed flags (--summary-file, --reference-file, --notes-file, --deferred-from-file, --defer-reason-file, --findings-file, --direction-hint-file) instead of inline shell arguments.
Default safe pattern: write the text with a quoted heredoc such as <<'EOF' to a temp file, then pass the file path to tools/backlog.rs create-doc.
backlog close Required Flow
- Resolve and confirm the target is an open backlog doc in
docs/backlogs/.- If user input is id-only shorthand (for example
backlog close 000123 ...), resolve first:
- If user input is id-only shorthand (for example
tools/doc-id.rs search-by-id --kind backlog --id 000123 --scope open
- Require explicit close reason type and detail.
- Close/archive with:
tools/backlog.rs close-doc \
--path docs/backlogs/000123-example.md \
--type stale \
--detail "Superseded by later design"
- Ensure file moves to
docs/backlogs/closed/and includes## Close Reason. Ifdetailorreferencetext is longer than a short phrase or contains markdown/backticks, use--detail-fileand--reference-file.
Output Quality Bar
Ensure every backlog document is:
- Specific about why the follow-up exists now.
- Linked to source task/RFC work when it was intentionally deferred from active execution.
- Explicit about why the work was deferred and what was learned.
- Useful as future planning input rather than just a reminder title.
Reference
Read references/workflow.md for detailed create/close checklists.
When not to use it
- →When the user wants to manage tasks outside of `docs/backlogs`
- →When the user wants to create backlog items without duplicate checks
Limitations
- →Backlog documents are managed in `docs/backlogs`
- →Requires specific scripts (`tools/backlog.rs`, `tools/doc-id.rs`) to operate
- →Requires explicit close reason type and detail for closing items
How it compares
This workflow provides a structured, tool-assisted approach to managing backlog items, ensuring consistency, context preservation, and duplicate prevention, unlike manual document creation.
Compared to similar skills
backlog side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| backlog (this skill) | 0 | 4mo | Review | Intermediate |
| notion-meeting-intelligence | 6 | 6mo | No flags | Intermediate |
| resume-handoff | 3 | 6mo | No flags | Intermediate |
| meeting-briefing | 2 | 6mo | No flags | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by jiangzhe
View all by jiangzhe →You might also like
notion-meeting-intelligence
openai
Prepare meeting materials with Notion context and Codex research; use when gathering context, drafting agendas/pre-reads, and tailoring materials to attendees.
resume-handoff
parcadei
Resume work from handoff document with context analysis and validation
meeting-briefing
anthropics
Prepare structured briefings for meetings with legal relevance and track resulting action items. Use when preparing for contract negotiations, board meetings, compliance reviews, or any meeting where legal context, background research, or action tracking is needed.
personal-assistant
ailabs-393
This skill should be used whenever users request personal assistance tasks such as schedule management, task tracking, reminder setting, habit monitoring, productivity advice, time management, or any query requiring personalized responses based on user preferences and context. On first use, collects comprehensive user information including schedule, working habits, preferences, goals, and routines. Maintains an intelligent database that automatically organizes and prioritizes information, keeping relevant data and discarding outdated context.
digital-brain
muratcankoylan
This skill should be used when the user asks to "write a post", "check my voice", "look up contact", "prepare for meeting", "weekly review", "track goals", or mentions personal brand, content creation, network management, or voice consistency.
meeting-sync
amanaiproduct
Sync new Granola meetings to local Knowledge folder. Use during morning planning, when user asks "what should I do today", or asks to review/sync meetings.