$npx -y skills add DNYoussef/context-cascade --skill github-project-management/*============================================================================*/ /* SKILL SKILL :: VERILINGUA x VERIX EDITION */ /*============================================================================*/
| 1 | /*============================================================================*/ |
| 2 | /* SKILL SKILL :: VERILINGUA x VERIX EDITION */ |
| 3 | /*============================================================================*/ |
| 4 | |
| 5 | --- |
| 6 | name: SKILL |
| 7 | version: 1.0.0 |
| 8 | description: | |
| 9 | [assert|neutral] SKILL skill for operations workflows [ground:given] [conf:0.95] [state:confirmed] |
| 10 | category: operations |
| 11 | tags: |
| 12 | - general |
| 13 | author: system |
| 14 | cognitive_frame: |
| 15 | primary: aspectual |
| 16 | goal_analysis: |
| 17 | first_order: "Execute SKILL workflow" |
| 18 | second_order: "Ensure quality and consistency" |
| 19 | third_order: "Enable systematic operations processes" |
| 20 | --- |
| 21 | |
| 22 | /*----------------------------------------------------------------------------*/ |
| 23 | /* S0 META-IDENTITY */ |
| 24 | /*----------------------------------------------------------------------------*/ |
| 25 | |
| 26 | [define|neutral] SKILL := { |
| 27 | name: "SKILL", |
| 28 | category: "operations", |
| 29 | version: "1.0.0", |
| 30 | layer: L1 |
| 31 | } [ground:given] [conf:1.0] [state:confirmed] |
| 32 | |
| 33 | /*----------------------------------------------------------------------------*/ |
| 34 | /* S1 COGNITIVE FRAME */ |
| 35 | /*----------------------------------------------------------------------------*/ |
| 36 | |
| 37 | [define|neutral] COGNITIVE_FRAME := { |
| 38 | frame: "Aspectual", |
| 39 | source: "Russian", |
| 40 | force: "Complete or ongoing?" |
| 41 | } [ground:cognitive-science] [conf:0.92] [state:confirmed] |
| 42 | |
| 43 | ## Kanitsal Cerceve (Evidential Frame Activation) |
| 44 | Kaynak dogrulama modu etkin. |
| 45 | |
| 46 | /*----------------------------------------------------------------------------*/ |
| 47 | /* S2 TRIGGER CONDITIONS */ |
| 48 | /*----------------------------------------------------------------------------*/ |
| 49 | |
| 50 | [define|neutral] TRIGGER_POSITIVE := { |
| 51 | keywords: ["SKILL", "operations", "workflow"], |
| 52 | context: "user needs SKILL capability" |
| 53 | } [ground:given] [conf:1.0] [state:confirmed] |
| 54 | |
| 55 | /*----------------------------------------------------------------------------*/ |
| 56 | /* S3 CORE CONTENT */ |
| 57 | /*----------------------------------------------------------------------------*/ |
| 58 | |
| 59 | # GitHub Project Management |
| 60 | |
| 61 | ## Kanitsal Cerceve (Evidential Frame Activation) |
| 62 | Kaynak dogrulama modu etkin. |
| 63 | |
| 64 | |
| 65 | |
| 66 | ## Overview |
| 67 | |
| 68 | 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. |
| 69 | |
| 70 | ## Quick Start |
| 71 | |
| 72 | ### Basic Issue Creation with Swarm Coordination |
| 73 | |
| 74 | ```bash |
| 75 | # Create a coordinated issue |
| 76 | gh issue create \ |
| 77 | --title "Feature: Advanced Authentication" \ |
| 78 | --body "Implement OAuth2 with social login..." \ |
| 79 | --label "enhancement,swarm-ready" |
| 80 | |
| 81 | # Initialize swarm for issue |
| 82 | npx claude-flow@alpha hooks pre-task --description "Feature implementation" |
| 83 | ``` |
| 84 | |
| 85 | ### Project Board Quick Setup |
| 86 | |
| 87 | ```bash |
| 88 | # Get project ID |
| 89 | PROJECT_ID=$(gh project list --owner @me --format json | \ |
| 90 | jq -r '.projects[0].id') |
| 91 | |
| 92 | # Initialize board sync |
| 93 | npx ruv-swarm github board-init \ |
| 94 | --project-id "$PROJECT_ID" \ |
| 95 | --sync-mode "bidirectional" |
| 96 | ``` |
| 97 | |
| 98 | --- |
| 99 | |
| 100 | ## Core Capabilities |
| 101 | |
| 102 | ### 1. Issue Management & Triage |
| 103 | |
| 104 | <details> |
| 105 | <summary><strong>Automated Issue Creation</strong></summary> |
| 106 | |
| 107 | #### Single Issue with Swarm Coordination |
| 108 | |
| 109 | ```javascript |
| 110 | // Initialize issue management swarm |
| 111 | mcp__claude-flow__swarm_init { topology: "star", maxAgents: 3 } |
| 112 | mcp__claude-flow__agent_spawn { type: "coordinator", name: "Issue Coordinator" } |
| 113 | mcp__claude-flow__agent_spawn { type: "researcher", name: "Requirements Analyst" } |
| 114 | mcp__claude-flow__agent_spawn { type: "coder", name: "Implementation Planner" } |
| 115 | |
| 116 | // Create comprehensive issue |
| 117 | mcp__github__create_issue { |
| 118 | owner: "org", |
| 119 | repo: "repository", |
| 120 | title: "Integration Review: Complete system integration", |
| 121 | body: `## 🔄 Integration Review |
| 122 | |
| 123 | ### Overview |
| 124 | Comprehensive review and integration between components. |
| 125 | |
| 126 | ### Objectives |
| 127 | - [ ] Verify dependencies and imports |
| 128 | - [ ] Ensure API integration |
| 129 | - [ ] Check hook system integration |
| 130 | - [ ] Validate data systems alignment |
| 131 | |
| 132 | ### Swarm Coordination |
| 133 | This issue will be managed by coordinated swarm agents for optimal progress tracking.`, |
| 134 | labels: ["integration", "review", "enhancement"], |
| 135 | assignees: ["username"] |
| 136 | } |
| 137 | |
| 138 | // Set up automated tracking |
| 139 | mcp__claude-flow__task_orchestrate { |
| 140 | task: "Monitor and coordinate issue progress with automated updates", |
| 141 | strategy: "adaptive", |
| 142 | priority: "medium" |
| 143 | } |
| 144 | ``` |
| 145 | |
| 146 | #### Batch Issue Creation |
| 147 | |
| 148 | ```bash |
| 149 | # Create multiple related issues using gh CLI |
| 150 | gh issue create \ |
| 151 | --title "Feature: Advanced GitHub Integration" \ |
| 152 | --body "Implement comprehensive GitHub workflow automation..." \ |
| 153 | --label "feature,github,high-priority" |
| 154 | |
| 155 | gh issue create \ |
| 156 | --title "Bug: Merge conflicts in integration branch" \ |
| 157 | --body "Resolve merge conflicts..." \ |
| 158 | --label "bug,integration,urgent" |
| 159 | |
| 160 | gh issue create \ |
| 161 | --title "Documentation: |