# Github Release Swarm Swarm Coordination

> Sub-skill of github-release-swarm: Swarm Coordination (+1).

- Skill: `vamseeachanta/github-release-swarm-swarm-coordination` (Agent Skill)
- Install (CLI): `npx skillmds@latest add vamseeachanta/github-release-swarm-swarm-coordination`
- Raw SKILL.md: https://api.skillmd.com/api/skills/vamseeachanta/github-release-swarm-swarm-coordination/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: vamseeachanta (https://skillmd.com/u/vamseeachanta)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/vamseeachanta/github-release-swarm-swarm-coordination

---


# Swarm Coordination (+1)

## Swarm Coordination


```javascript
    topology: "hierarchical",
    maxAgents: 6,
    strategy: "sequential"
})

    tasks: [
        { task: "generate-changelog", agent: "changelog-agent" },
        { task: "build-artifacts", agent: "build-agent" },
        { task: "run-tests", agent: "test-agent" }

*See sub-skills for full details.*

## Memory for Release State


```javascript
    action: "store",
    key: "release/v2.0.0/state",
    value: JSON.stringify({
        stage: "testing",
        changelog: "generated",
        artifacts: ["npm", "docker"],
        tests: "running"
    })
})
```

