원클릭으로
issue-tracking
Universal issue tracking and task management patterns using beads/bd system
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Universal issue tracking and task management patterns using beads/bd system
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Python import style guidelines for absolute and relative imports
Python naming conventions for variables, constants, files, and directories
Python pathlib usage guidelines for file and directory operations
Python refactoring triggers and guidelines for code size limits
UV command-line usage patterns for Python project management
UV command automation and project lifecycle management patterns powered by the uv-mcp server
| name | issue-tracking |
| description | Universal issue tracking and task management patterns using beads/bd system |
| license | MIT |
| compatibility | opencode |
| metadata | {"related_mcp_servers":"For MCP server integration patterns, use skill `mcp-servers`","related_knowledge_management":"For storing issue-related knowledge, use skill `knowledge-management`"} |
Provide universal patterns for issue tracking and task management that can be applied across different projects and domains.
# Universal issue tracking workflow
bd ready --json # Find unblocked work
bd create "Task" -t bug|feature|task -p 0-4 --json # Create issue
bd update <id> --status in_progress --json # Claim task
bd close <id> --reason "Completed" --json # Complete task
Universal Issue Types:
bug - Something brokenfeature - New functionalitytask - Work item (tests, docs, refactoring)epic - Large feature with subtaskschore - Maintenance (dependencies, tooling)Universal Priority System:
0 - Critical (security, data loss, broken builds)1 - High (major features, important bugs)2 - Medium (default, nice-to-have)3 - Low (polish, optimization)4 - Backlog (future ideas)# Universal dependency patterns
bd create "Subtask" --parent <epic-id> --json # Hierarchical structure
bd create "Bug" -p 1 --deps discovered-from:<parent-id> --json # Discovery linking
Use this skill when:
# Universal git-issue synchronization
bd sync # Auto-sync with git (5s debounce)
git add .beads/issues.jsonl # Always commit issue state with code
# Universal MCP server usage
from beads_mcp import ready, create, update, close
# Find ready work
ready_issues = ready(limit=10)
# Create issue via MCP
new_issue = create(
title="Universal pattern implementation",
issue_type="feature",
priority=1
)
discovered-from dependenciesWorks with: