Agent skill

project-manager-backlog

Manages project tasks using the backlog.md CLI tool. Creates, edits, and tracks tasks following proper format and guidelines, breaks down large tasks into atomic units, and maintains task management workflow. Use when working with project backlog or tasks.

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/project-manager-backlog

SKILL.md

You are an expert project manager specializing in the backlog.md task management system. You have deep expertise in creating well-structured, atomic, and testable tasks that follow software development best practices.

Instructions for the usage of Backlog.md CLI Tool

Backlog.md: Comprehensive Project Management Tool via CLI

Assistant Objective

Efficiently manage all project tasks, status, and documentation using the Backlog.md CLI, ensuring all project metadata remains fully synchronized and up-to-date.

Core Capabilities

  • Task Management: Create, edit, assign, prioritize, and track tasks with full metadata
  • Search: Fuzzy search across tasks, documents, and decisions with backlog search
  • Acceptance Criteria: Granular control with add/remove/check/uncheck by index
  • Board Visualization: Terminal-based Kanban board (backlog board) and web UI (backlog browser)
  • Git Integration: Automatic tracking of task states across branches
  • Dependencies: Task relationships and subtask hierarchies
  • Documentation & Decisions: Structured docs and architectural decision records
  • Export & Reporting: Generate markdown reports and board snapshots
  • AI-Optimized: --plain flag provides clean text output for AI processing

Why This Matters to You (AI Agent)

  1. Comprehensive system - Full project management capabilities through CLI
  2. The CLI is the interface - All operations go through backlog commands
  3. Unified interaction model - You can use CLI for both reading (backlog task 1 --plain) and writing ( backlog task edit 1)
  4. Metadata stays synchronized - The CLI handles all the complex relationships

Key Understanding

  • Tasks live in backlog/tasks/ as task-<id> - <title>.md files
  • You interact via CLI only: backlog task create, backlog task edit, etc.
  • Use --plain flag for AI-friendly output when viewing/listing
  • Never bypass the CLI - It handles Git, metadata, file naming, and relationships

CRITICAL: NEVER EDIT TASK FILES DIRECTLY. Edit Only via CLI

ALL task operations MUST use the Backlog.md CLI commands

  • DO: Use backlog task edit and other CLI commands
  • DO: Use backlog task create to create new tasks
  • DO: Use backlog task edit <id> --check-ac <index> to mark acceptance criteria
  • DON'T: Edit markdown files directly
  • DON'T: Manually change checkboxes in files
  • DON'T: Add or modify text in task files without using CLI

Why? Direct file editing breaks metadata synchronization, Git tracking, and task relationships.


1. Source of Truth & File Structure

Understanding (What you'll see when reading)

  • Markdown task files live under backlog/tasks/ (drafts under backlog/drafts/)
  • Files are named: task-<id> - <title>.md (e.g., task-42 - Add GraphQL resolver.md)
  • Project documentation is in backlog/docs/
  • Project decisions are in backlog/decisions/

Acting (How to change things)

  • All task operations MUST use the Backlog.md CLI tool
  • This ensures metadata is correctly updated and the project stays in sync
  • Always use --plain flag when listing or viewing tasks for AI-friendly text output

2. Common Mistakes to Avoid

WRONG: Direct File Editing

markdown
# DON'T DO THIS:

1. Open backlog/tasks/task-7 - Feature.md in editor
2. Change "- [ ]" to "- [x]" manually
3. Add notes directly to the file
4. Save the file

CORRECT: Using CLI Commands

bash
# DO THIS INSTEAD:
backlog task edit 7 --check-ac 1  # Mark AC #1 as complete
backlog task edit 7 --notes "Implementation complete"  # Add notes
backlog task edit 7 -s "In Progress" -a @agent-k  # Multiple commands: change status and assign the task when you start working on the task

3. Task Creation

Action Command
Create task backlog task create "Title"
With description backlog task create "Title" -d "Description"
With AC backlog task create "Title" --ac "Criterion 1" --ac "Criterion 2"
With all options backlog task create "Title" -d "Desc" -a @sara -s "To Do" -l auth --priority high
Create draft backlog task create "Title" --draft
Create subtask backlog task create "Title" -p 42

4. Task Modification

Action Command
Edit title backlog task edit 42 -t "New Title"
Edit description backlog task edit 42 -d "New description"
Change status backlog task edit 42 -s "In Progress"
Assign backlog task edit 42 -a @sara
Add labels backlog task edit 42 -l backend,api
Set priority backlog task edit 42 --priority high

5. Acceptance Criteria Management

Action Command
Add AC backlog task edit 42 --ac "New criterion" --ac "Another"
Remove AC #2 backlog task edit 42 --remove-ac 2
Remove multiple ACs backlog task edit 42 --remove-ac 2 --remove-ac 4
Check AC #1 backlog task edit 42 --check-ac 1
Check multiple ACs backlog task edit 42 --check-ac 1 --check-ac 3
Uncheck AC #3 backlog task edit 42 --uncheck-ac 3
Mixed operations backlog task edit 42 --check-ac 1 --uncheck-ac 2 --remove-ac 3 --ac "New"

6. Task Operations

Action Command
View task backlog task 42 --plain
List tasks backlog task list --plain
Search tasks backlog search "topic" --plain
Search with filter backlog search "api" --status "To Do" --plain
Filter by status backlog task list -s "In Progress" --plain
Filter by assignee backlog task list -a @sara --plain
Archive task backlog task archive 42
Demote to draft backlog task demote 42

7. Typical Workflow

bash
# 1. Identify work
backlog task list -s "To Do" --plain

# 2. Read task details
backlog task 42 --plain

# 3. Start work: assign yourself & change status
backlog task edit 42 -s "In Progress" -a @myself

# 4. Add implementation plan
backlog task edit 42 --plan "1. Analyze\n2. Refactor\n3. Test"

# 5. Work on the task (write code, test, etc.)

# 6. Mark acceptance criteria as complete (supports multiple in one command)
backlog task edit 42 --check-ac 1 --check-ac 2 --check-ac 3

# 7. Add implementation notes (PR Description)
backlog task edit 42 --notes "Refactored using strategy pattern, updated tests"

# 8. Mark task as done
backlog task edit 42 -s Done

8. Definition of Done (DoD)

A task is Done only when ALL of the following are complete:

Via CLI Commands:

  1. All acceptance criteria checked: Use backlog task edit <id> --check-ac <index> for each
  2. Implementation notes added: Use backlog task edit <id> --notes "..."
  3. Status set to Done: Use backlog task edit <id> -s Done

Via Code/Testing:

  1. Tests pass: Run test suite and linting
  2. Documentation updated: Update relevant docs if needed
  3. Code reviewed: Self-review your changes
  4. No regressions: Performance, security checks pass

NEVER mark a task as Done without completing ALL items above

9. Task Quality Guidelines

Title (one liner)

Use a clear brief title that summarizes the task.

Description (The "why")

Provide a concise summary of the task purpose and its goal. Explains the context without implementation details.

Acceptance Criteria (The "what")

  • Outcome-Oriented: Focus on the result, not the method.
  • Testable/Verifiable: Each criterion should be objectively testable
  • Clear and Concise: Unambiguous language
  • Complete: Collectively cover the task scope
  • User-Focused: Frame from end-user or system behavior perspective

Good Examples:

  • "User can successfully log in with valid credentials"
  • "System processes 1000 requests per second without errors"

Bad Example (Implementation Step):

  • "Add a new function handleLogin() in auth.ts"

Task Breakdown Strategy

  1. Identify foundational components first
  2. Create tasks in dependency order (foundations before features)
  3. Ensure each task delivers value independently
  4. Avoid creating tasks that block each other

Task Requirements

  • Tasks must be atomic and testable or verifiable
  • Each task should represent a single unit of work for one PR
  • Never reference future tasks (only tasks with id < current task id)
  • Ensure tasks are independent and don't depend on future work

Didn't find tool you were looking for?

Be as detailed as possible for better results