$npx -y skills add spencermarx/open-code-review --skill github-project-managementComprehensive GitHub project management with swarm-coordinated issue tracking, project board automation, and sprint planning
| 1 | # GitHub Project Management |
| 2 | |
| 3 | ## Overview |
| 4 | |
| 5 | A comprehensive skill for managing GitHub projects using AI swarm coordination. This skill combines intelligent issue management, automated project board synchronization, and swarm-based coordination for efficient project delivery. |
| 6 | |
| 7 | ## Quick Start |
| 8 | |
| 9 | ### Basic Issue Creation with Swarm Coordination |
| 10 | |
| 11 | ```bash |
| 12 | # Create a coordinated issue |
| 13 | gh issue create \ |
| 14 | --title "Feature: Advanced Authentication" \ |
| 15 | --body "Implement OAuth2 with social login..." \ |
| 16 | --label "enhancement,swarm-ready" |
| 17 | |
| 18 | # Initialize swarm for issue |
| 19 | npx claude-flow@alpha hooks pre-task --description "Feature implementation" |
| 20 | ``` |
| 21 | |
| 22 | ### Project Board Quick Setup |
| 23 | |
| 24 | ```bash |
| 25 | # Get project ID |
| 26 | PROJECT_ID=$(gh project list --owner @me --format json | \ |
| 27 | jq -r '.projects[0].id') |
| 28 | |
| 29 | # Initialize board sync |
| 30 | npx ruv-swarm github board-init \ |
| 31 | --project-id "$PROJECT_ID" \ |
| 32 | --sync-mode "bidirectional" |
| 33 | ``` |
| 34 | |
| 35 | --- |
| 36 | |
| 37 | ## Core Capabilities |
| 38 | |
| 39 | ### 1. Issue Management & Triage |
| 40 | |
| 41 | <details> |
| 42 | <summary><strong>Automated Issue Creation</strong></summary> |
| 43 | |
| 44 | #### Single Issue with Swarm Coordination |
| 45 | |
| 46 | ```javascript |
| 47 | // Initialize issue management swarm |
| 48 | mcp__claude-flow__swarm_init { topology: "star", maxAgents: 3 } |
| 49 | mcp__claude-flow__agent_spawn { type: "coordinator", name: "Issue Coordinator" } |
| 50 | mcp__claude-flow__agent_spawn { type: "researcher", name: "Requirements Analyst" } |
| 51 | mcp__claude-flow__agent_spawn { type: "coder", name: "Implementation Planner" } |
| 52 | |
| 53 | // Create comprehensive issue |
| 54 | mcp__github__create_issue { |
| 55 | owner: "org", |
| 56 | repo: "repository", |
| 57 | title: "Integration Review: Complete system integration", |
| 58 | body: `## 🔄 Integration Review |
| 59 | |
| 60 | ### Overview |
| 61 | Comprehensive review and integration between components. |
| 62 | |
| 63 | ### Objectives |
| 64 | - [ ] Verify dependencies and imports |
| 65 | - [ ] Ensure API integration |
| 66 | - [ ] Check hook system integration |
| 67 | - [ ] Validate data systems alignment |
| 68 | |
| 69 | ### Swarm Coordination |
| 70 | This issue will be managed by coordinated swarm agents for optimal progress tracking.`, |
| 71 | labels: ["integration", "review", "enhancement"], |
| 72 | assignees: ["username"] |
| 73 | } |
| 74 | |
| 75 | // Set up automated tracking |
| 76 | mcp__claude-flow__task_orchestrate { |
| 77 | task: "Monitor and coordinate issue progress with automated updates", |
| 78 | strategy: "adaptive", |
| 79 | priority: "medium" |
| 80 | } |
| 81 | ``` |
| 82 | |
| 83 | #### Batch Issue Creation |
| 84 | |
| 85 | ```bash |
| 86 | # Create multiple related issues using gh CLI |
| 87 | gh issue create \ |
| 88 | --title "Feature: Advanced GitHub Integration" \ |
| 89 | --body "Implement comprehensive GitHub workflow automation..." \ |
| 90 | --label "feature,github,high-priority" |
| 91 | |
| 92 | gh issue create \ |
| 93 | --title "Bug: Merge conflicts in integration branch" \ |
| 94 | --body "Resolve merge conflicts..." \ |
| 95 | --label "bug,integration,urgent" |
| 96 | |
| 97 | gh issue create \ |
| 98 | --title "Documentation: Update integration guides" \ |
| 99 | --body "Update all documentation..." \ |
| 100 | --label "documentation,integration" |
| 101 | ``` |
| 102 | |
| 103 | </details> |
| 104 | |
| 105 | <details> |
| 106 | <summary><strong>Issue-to-Swarm Conversion</strong></summary> |
| 107 | |
| 108 | #### Transform Issues into Swarm Tasks |
| 109 | |
| 110 | ```bash |
| 111 | # Get issue details |
| 112 | ISSUE_DATA=$(gh issue view 456 --json title,body,labels,assignees,comments) |
| 113 | |
| 114 | # Create swarm from issue |
| 115 | npx ruv-swarm github issue-to-swarm 456 \ |
| 116 | --issue-data "$ISSUE_DATA" \ |
| 117 | --auto-decompose \ |
| 118 | --assign-agents |
| 119 | |
| 120 | # Batch process multiple issues |
| 121 | ISSUES=$(gh issue list --label "swarm-ready" --json number,title,body,labels) |
| 122 | npx ruv-swarm github issues-batch \ |
| 123 | --issues "$ISSUES" \ |
| 124 | --parallel |
| 125 | |
| 126 | # Update issues with swarm status |
| 127 | echo "$ISSUES" | jq -r '.[].number' | while read -r num; do |
| 128 | gh issue edit $num --add-label "swarm-processing" |
| 129 | done |
| 130 | ``` |
| 131 | |
| 132 | #### Issue Comment Commands |
| 133 | |
| 134 | Execute swarm operations via issue comments: |
| 135 | |
| 136 | ```markdown |
| 137 | <!-- In issue comment --> |
| 138 | /swarm analyze |
| 139 | /swarm decompose 5 |
| 140 | /swarm assign @agent-coder |
| 141 | /swarm estimate |
| 142 | /swarm start |
| 143 | ``` |
| 144 | |
| 145 | </details> |
| 146 | |
| 147 | <details> |
| 148 | <summary><strong>Automated Issue Triage</strong></summary> |
| 149 | |
| 150 | #### Auto-Label Based on Content |
| 151 | |
| 152 | ```javascript |
| 153 | // .github/swarm-labels.json |
| 154 | { |
| 155 | "rules": [ |
| 156 | { |
| 157 | "keywords": ["bug", "error", "broken"], |
| 158 | "labels": ["bug", "swarm-debugger"], |
| 159 | "agents": ["debugger", "tester"] |
| 160 | }, |
| 161 | { |
| 162 | "keywords": ["feature", "implement", "add"], |
| 163 | "labels": ["enhancement", "swarm-feature"], |
| 164 | "agents": ["architect", "coder", "t |