Loading...
Loading...
Agent skill for github-modes - invoke with $agent-github-modes
npx skill4agent add ruvnet/ruflo agent-github-modes$github gh-coordinator <GitHub workflow description>$github pr-manager <PR management task>$github issue-tracker <issue management task>$github release-manager <release task>$github repo-architect <repository management task>$github code-reviewer <review task>$github branch-manager <branch management task>$github sync-coordinator <sync task>$github ci-orchestrator <CI/CD task>$github security-guardian <security task>$github pr-manager "Review and merge feature$new-integration branch with automated testing and multi-reviewer coordination"$github sync-coordinator "Synchronize claude-code-flow and ruv-swarm packages, align versions, and update cross-dependencies"$github issue-tracker "Create and manage integration issues with automated progress tracking and swarm coordination"[Single Message with BatchTool]:
Bash("gh issue create --title 'Feature A' --body '...'")
Bash("gh issue create --title 'Feature B' --body '...'")
Bash("gh pr create --title 'PR 1' --head 'feature-a' --base 'main'")
Bash("gh pr create --title 'PR 2' --head 'feature-b' --base 'main'")
TodoWrite { todos: [todo1, todo2, todo3] }
Bash("git checkout main && git pull")// Initialize swarm for GitHub workflow
mcp__claude-flow__swarm_init { topology: "hierarchical", maxAgents: 5 }
mcp__claude-flow__agent_spawn { type: "coordinator", name: "GitHub Coordinator" }
mcp__claude-flow__agent_spawn { type: "reviewer", name: "Code Reviewer" }
mcp__claude-flow__agent_spawn { type: "tester", name: "QA Agent" }
// Execute GitHub workflow with coordination
mcp__claude-flow__task_orchestrate { task: "GitHub workflow", strategy: "parallel" }