소스 정보
- 저장소
- jr2804/mcp-config-converter
- 최근 소스 활동
- 2026년 1월 9일 00:36
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jr2804/mcp-config-converter --skill issue-tracking명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| 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: