.claude/skills/backlog-md/SKILL.md
Expert guidance for Backlog.md CLI project management tool including task creation, editing, status management, acceptance criteria, search, and board visualization. Use this when managing project tasks, creating task lists, updating task status, or organizing project work.
npx skillsauth add choidabom/devconfig Backlog.mdInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Expert assistance with Backlog.md CLI project management tool.
Backlog.md is a CLI-based project management tool that uses markdown files to track tasks, documentation, and decisions. All operations go through the backlog CLI command.
Key Principle: NEVER edit task files directly. Always use CLI commands.
# List tasks
backlog task list --plain
# View task details
backlog task 42 --plain
# Create task
backlog task create "Task title" -d "Description" --ac "Acceptance criterion"
# Edit task
backlog task edit 42 -s "In Progress" -a @me
# Search
backlog search "keyword" --plain
# Simple task
backlog task create "Implement user login"
# With description
backlog task create "Implement user login" -d "Add authentication flow"
# With acceptance criteria
backlog task create "Implement user login" \
--ac "User can login with email and password" \
--ac "Invalid credentials show error message"
# Complete task creation
backlog task create "Implement user login" \
-d "Add authentication flow with session management" \
--ac "User can login with valid credentials" \
--ac "Session persists across page refreshes" \
-s "To Do" \
-a @developer \
-l backend,auth \
--priority high
# Create draft task
backlog task create "Research options" --draft
# Create subtask
backlog task create "Implement feature component" -p 42
# With dependencies
backlog task create "Deploy to production" --dep task-40 --dep task-41
# With multiple labels
backlog task create "Fix bug" -l bug,urgent,frontend
# Change status
backlog task edit 42 -s "In Progress"
backlog task edit 42 -s "Done"
backlog task edit 42 -s "Blocked"
# Common workflow: start work on task
backlog task edit 42 -s "In Progress" -a @me
# Update title
backlog task edit 42 -t "New title"
# Update description (with newlines)
backlog task edit 42 -d $'Multi-line\ndescription\nhere'
# Assign task
backlog task edit 42 -a @username
# Add/update labels
backlog task edit 42 -l backend,api,v2
# Set priority
backlog task edit 42 --priority high
backlog task edit 42 --priority medium
backlog task edit 42 --priority low
IMPORTANT: Each flag accepts multiple values
# Add new criteria (multiple flags supported)
backlog task edit 42 --ac "User can login" --ac "Session persists"
# Check criteria by index (multiple flags supported)
backlog task edit 42 --check-ac 1 --check-ac 2 --check-ac 3
# Uncheck criteria
backlog task edit 42 --uncheck-ac 2
# Remove criteria (processed high-to-low)
backlog task edit 42 --remove-ac 3 --remove-ac 2
# Mixed operations in one command
backlog task edit 42 \
--check-ac 1 \
--uncheck-ac 2 \
--remove-ac 4 \
--ac "New criterion"
Note:
--check-ac 1 --check-ac 2--check-ac 1,2,3--check-ac 1-3# Add implementation plan (with newlines using ANSI-C quoting)
backlog task edit 42 --plan $'1. Research codebase\n2. Implement solution\n3. Write tests\n4. Update docs'
# POSIX portable (using printf)
backlog task edit 42 --plan "$(printf '1. Step one\n2. Step two')"
# Add implementation notes (replaces existing)
backlog task edit 42 --notes $'Implemented using strategy pattern\nUpdated all tests\nReady for review'
# Append to existing notes
backlog task edit 42 --append-notes $'- Fixed edge case\n- Added validation'
# Format notes as PR description (best practice)
backlog task edit 42 --notes $'## Changes\n- Implemented X\n- Fixed Y\n\n## Testing\n- Added unit tests\n- Manual testing complete'
# Add dependencies
backlog task edit 42 --dep task-1 --dep task-2
# Remove dependencies (edit task file or recreate without)
# List all tasks (always use --plain for AI-readable output)
backlog task list --plain
# Filter by status
backlog task list -s "To Do" --plain
backlog task list -s "In Progress" --plain
backlog task list -s "Done" --plain
# Filter by assignee
backlog task list -a @username --plain
backlog task list -a @me --plain
# Filter by tag
backlog task list --tag backend --plain
backlog task list --tag bug --plain
# Combined filters
backlog task list -s "In Progress" -a @me --plain
# View single task (always use --plain)
backlog task 42 --plain
# View in browser (if supported)
backlog task 42 --web
# Search across all content (uses fuzzy matching)
backlog search "authentication" --plain
# Search only tasks
backlog search "login" --type task --plain
# Search with filters
backlog search "api" --status "To Do" --plain
backlog search "bug" --priority high --plain
# Search in specific fields
backlog search "database" --in title --plain
모든 태스크 실행은 서브 에이전트를 통해 수행한다.
메인 컨텍스트는 태스크 조율자(orchestrator) 역할만 수행:
태스크 시작 시 Task tool을 사용:
Task tool 호출:
- subagent_type: "general-purpose"
- description: "Execute backlog task [ID]"
- prompt: |
Execute backlog task [ID]: [제목]
## Task Details
[backlog task <ID> --plain 결과]
## Instructions
1. AC 분석 및 구현 계획 수립
2. 코드 구현/수정
3. 테스트 실행 및 검증
4. AC 체크: backlog task edit <ID> --check-ac <완료된 번호>
5. 노트 추가: backlog task edit <ID> --append-notes "진행 내용"
## Return Format
작업 완료 후 다음 형식으로 반환:
- 완료된 AC 목록
- 수정된 파일 목록
- 테스트 결과
- 미해결 이슈 (있는 경우)
1. backlog task list -a @me -s "In Progress" --plain # 현재 태스크 확인
2. backlog task <ID> --plain # 태스크 상세 조회
3. Task tool로 서브 에이전트 생성 (태스크 전체 위임)
4. 서브 에이전트 결과 수신
5. 사용자에게 완료 리뷰 요청
6. 사용자 응답에 따라 다음 태스크 또는 종료
# 1. Create task
backlog task create "Implement feature X" \
-d "Add new feature to handle Y" \
--ac "Feature works as expected" \
--ac "Tests are passing" \
--ac "Documentation is updated"
# 2. Start work: assign and change status
backlog task edit 42 -s "In Progress" -a @me
# 3. Add implementation plan
backlog task edit 42 --plan $'1. Research existing code\n2. Implement core logic\n3. Add tests\n4. Update docs'
# 4. Work on task (write code, test, etc.)
# 5. Mark acceptance criteria as complete
backlog task edit 42 --check-ac 1 --check-ac 2 --check-ac 3
# 6. Add implementation notes (PR description)
backlog task edit 42 --notes $'## Changes\n- Implemented feature X using approach Y\n- Added comprehensive tests\n\n## Testing\n- Unit tests pass\n- Integration tests pass\n- Manual testing complete'
# 7. Mark task as done
backlog task edit 42 -s Done
# ALWAYS do these steps when starting a task:
# 1. Set status to In Progress
# 2. Assign to yourself
backlog task edit 42 -s "In Progress" -a @me
# 3. Review the task requirements
backlog task 42 --plain
# 4. Create implementation plan
backlog task edit 42 --plan $'1. Analyze requirements\n2. Design solution\n3. Implement\n4. Test\n5. Document'
# View Kanban board in terminal
backlog board
# Open web UI
backlog browser
# Export board snapshot
backlog board --export board-snapshot.md
# Generate report
backlog report --output report.md
# Archive completed task
backlog task archive 42
# Demote task to draft
backlog task demote 42
# Promote draft to task (gets new ID)
backlog task promote draft-5
# View task history (if supported)
backlog task history 42
# View changes
backlog task diff 42
# Create document
backlog doc create "API Documentation"
# List documents
backlog doc list --plain
# Edit document
backlog doc edit 1 --content "Updated content"
# Create decision record
backlog decision create "Use PostgreSQL for data storage"
# List decisions
backlog decision list --plain
# View decision
backlog decision 1 --plain
Title: Clear, concise, action-oriented
# ✅ Good
backlog task create "Implement user authentication"
backlog task create "Fix memory leak in image processor"
# ❌ Bad
backlog task create "Users"
backlog task create "There's a problem with the app"
Description: Explain the "why" and context
backlog task create "Add rate limiting to API" \
-d "Current API has no rate limiting, causing server overload during peak hours. Need to implement per-user rate limiting to prevent abuse."
Acceptance Criteria: Focus on outcomes, not implementation
# ✅ Good - Testable outcomes
--ac "API rejects requests after 100 requests per minute per user"
--ac "User receives clear error message when rate limited"
--ac "Rate limit resets after 60 seconds"
# ❌ Bad - Implementation details
--ac "Add a rate limiter middleware"
--ac "Use Redis for tracking"
Use Labels Effectively
# Organize by type, area, and priority
backlog task create "Fix login bug" -l bug,urgent,auth
backlog task create "Optimize queries" -l enhancement,backend,performance
backlog task create "Update docs" -l documentation,frontend
Use Tags for Metadata
# Tags for filtering and organization
--tag "sprint:23"
--tag "epic:user-management"
--tag "team:backend"
Atomic Tasks: Each task should be independently deliverable
# ✅ Good - One PR per task
backlog task create "Add login endpoint"
backlog task create "Add logout endpoint"
backlog task create "Add session refresh endpoint"
# ❌ Bad - Too large for one PR
backlog task create "Implement entire authentication system"
Avoid Future Dependencies: Never reference tasks that don't exist yet
# ✅ Good - Reference existing tasks
backlog task create "Deploy auth API" --dep task-40 --dep task-41
# ❌ Bad - Reference future tasks
backlog task create "Add feature A" -d "This will be used by future tasks"
Format as PR Description: Make notes ready for GitHub
backlog task edit 42 --notes $'## Summary
- Implemented user authentication with JWT
- Added password hashing with bcrypt
- Created login/logout endpoints
## Changes
- Added auth middleware
- Updated user model
- Added auth routes
## Testing
- Unit tests for auth functions
- Integration tests for endpoints
- Manual testing with Postman
## Breaking Changes
None
## Follow-up
- Add refresh token rotation
- Implement rate limiting'
Progressive Notes: Append as you work
# As you make progress
backlog task edit 42 --append-notes "- Implemented core auth logic"
backlog task edit 42 --append-notes "- Added tests"
backlog task edit 42 --append-notes "- Updated documentation"
A task is Done only when ALL of these are complete:
Via CLI:
--check-ac 1 --check-ac 2 ...--notes "..."-s DoneVia Code/Testing: 4. ✅ Tests pass 5. ✅ Documentation updated 6. ✅ Code reviewed 7. ✅ No regressions 8. ✅ 사용자 리뷰 완료
Never mark task as Done without completing ALL items
# Morning: Check your tasks
backlog task list -a @me -s "In Progress" --plain
# Start working on next task
backlog task edit 42 -s "In Progress" -a @me
backlog task 42 --plain # Read requirements
# Add plan
backlog task edit 42 --plan $'1. Analyze\n2. Implement\n3. Test'
# As you work, check off AC
backlog task edit 42 --check-ac 1
# ... continue working ...
backlog task edit 42 --check-ac 2
# End of day: Add notes
backlog task edit 42 --append-notes "- Completed X, Y pending"
# Review backlog
backlog task list -s "To Do" --plain
# Tag tasks for sprint
backlog task edit 42 --tag "sprint:23"
backlog task edit 43 --tag "sprint:23"
# Assign tasks
backlog task edit 42 -a @developer1
backlog task edit 43 -a @developer2
# View sprint board
backlog board
# Create bug task
backlog task create "Fix login timeout issue" \
-d "Users report login times out after 30 seconds on slow connections" \
--ac "Login works on slow connections (tested with throttling)" \
--ac "Timeout increased to 60 seconds" \
--ac "User sees loading indicator during login" \
-l bug,urgent,auth \
--priority high
# Start work
backlog task edit 42 -s "In Progress" -a @me
# Implement fix and add notes
backlog task edit 42 --notes $'## Root Cause
Login timeout was set to 30s, causing issues on slow connections.
## Fix
- Increased timeout to 60s
- Added exponential backoff for retries
- Improved loading indicator visibility
## Testing
- Tested with Chrome network throttling (Slow 3G)
- Verified timeout works correctly
- All existing auth tests pass'
# Complete
backlog task edit 42 --check-ac 1 --check-ac 2 --check-ac 3
backlog task edit 42 -s Done
# List all tasks to find ID
backlog task list --plain
# Search for task
backlog search "keyword" --type task --plain
# View task to see AC numbers
backlog task 42 --plain
# AC numbering starts at 1
backlog task edit 42 --check-ac 1 # First AC
# Check multiple at once
backlog task edit 42 --check-ac 1 --check-ac 2 --check-ac 3
# Re-edit via CLI to fix
backlog task edit 42 -s "In Progress"
# If persistent, check file permissions
ls -la backlog/tasks/
# Use ANSI-C quoting (bash/zsh)
backlog task edit 42 --notes $'Line 1\nLine 2'
# Use printf (POSIX portable)
backlog task edit 42 --notes "$(printf 'Line 1\nLine 2')"
# PowerShell
backlog task edit 42 --notes "Line 1`nLine 2"
# Don't use literal \n - it won't work
# ❌ backlog task edit 42 --notes "Line 1\nLine 2"
# Tasks
backlog task create <title> [options]
backlog task list [filters] --plain
backlog task <id> --plain
backlog task edit <id> [options]
backlog task archive <id>
backlog task demote <id>
# Search
backlog search <query> [filters] --plain
# Board & Reports
backlog board
backlog browser
backlog report --output <file>
# Documents
backlog doc create <title>
backlog doc list --plain
backlog doc edit <id>
# Decisions
backlog decision create <title>
backlog decision list --plain
backlog decision <id> --plain
# Task creation/editing
-t, --title Task title
-d, --description Task description
-s, --status Status (To Do, In Progress, Done, Blocked)
-a, --assignee Assignee (@username)
-l, --labels Comma-separated labels
--priority Priority (low, medium, high)
--ac Add acceptance criterion
--check-ac Check AC by index
--uncheck-ac Uncheck AC by index
--remove-ac Remove AC by index
--plan Implementation plan
--notes Implementation notes
--append-notes Append to notes
--dep Add dependency (task-id)
--draft Create as draft
-p, --parent Parent task ID
# Filters
--plain Plain text output (AI-friendly)
--status Filter by status
--assignee Filter by assignee
--tag Filter by tag
--priority Filter by priority
--type Filter by type (task, doc, decision)
--plain when listing or viewing for AI processing$'...\n...' syntax for newlines--check-ac 1 --check-ac 2 --check-ac 3# Workflow
git checkout -b task-42-implement-feature
# ... implement task 42 ...
backlog task edit 42 --check-ac 1 --check-ac 2
backlog task edit 42 --notes "Implementation complete"
backlog task edit 42 -s Done
git add .
git commit -m "Implement feature X
Refs: task-42"
git push
🎯 Golden Rule: Always use CLI commands. Never edit markdown files directly. 🎯 Silver Rule: Always use CLI commands. Never edit markdown files directly.
📋 Task Quality: Good AC = Testable outcomes, not implementation steps.
✅ Definition of Done: All AC checked + notes + tests passing + status Done.
타스크 1개가 완료될 때마다 반드시 다음을 수행:
서브 에이전트가 반환한 결과를 바탕으로:
# 구현 노트에 진행 내용 기록
backlog task edit <ID> --append-notes $'## Session Progress\n- 완료된 항목\n- 남은 이슈\n- 다음 단계'
# AC 체크 (완료된 것만)
backlog task edit <ID> --check-ac <완료된 AC 번호들>
~/.claude/plans/ 아래 plan 파일에 진행 상황 반영타스크가 완료되면 반드시 사용자에게 리뷰를 요청한다:
---
## 타스크 완료 리뷰 요청
**타스크**: [제목] (ID: [ID])
### 완료 내용
- [완료된 작업 요약]
### 다음 선택:
1. ✅ 다음 타스크 진행 - "다음"
2. 🔄 수정 요청 - 수정 내용 설명
3. ⏸️ 세션 종료 - "종료"
---
| 응답 | 액션 | |-----|------| | "다음", "진행" | 다음 backlog 타스크로 이동 | | 수정 요청 | 현재 타스크 수정 후 재리뷰 | | "종료", "stop" | 세션 종료 절차 실행 |
세션 종료 시:
# 1. 진행 상황 저장
backlog task edit <ID> --append-notes $'## Session End\n- 마지막 작업: [내용]\n- 다음 시작점: [내용]'
# 2. 상태를 In Progress로 유지 (미완료 시)
backlog task edit <ID> -s "In Progress"
tools
Vault Intelligence System (vis) CLI를 활용한 Obsidian vault 시맨틱 검색, 자동 태깅, MOC 생성, 관련 문서 연결, 주제별 문서 연결, 주제 수집, 태그 통계, 지식 공백 분석, 중복 감지, 학습 리뷰 등 vault 지식 관리 전반을 지원하는 skill. vault 검색, 문서 정리, 태그, MOC, 관련 문서, 주제 수집, 중복 검사, 학습 리뷰, 지식 공백, 클러스터링, 인덱싱, 주제별 문서 연결, 태그 통계 관련 작업 시 자동 적용.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
development
프롬프트 작성, brainstorming, planning, design, 설계, 기능 개발 시 Prompt Contracts 프레임워크 적용. Goal/Constraints/Format/Failure Conditions 4요소로 명확한 명세 작성. "바이브 코딩" 방지. brainstorming, writing-plans, 설계, 기능 구현 관련 작업 시 자동 적용.