@guyghost/swarm-dao-copilot-adapter
v0.3.0
Published
Swarm DAO governance plugin for GitHub Copilot — MCP server, 7 custom DAO agents, and governance workflow
Maintainers
Readme
@guyghost/swarm-dao-copilot-adapter
Swarm DAO governance adapter for GitHub Copilot (VS Code Copilot Chat, Copilot CLI, and the Copilot coding agent).
It bundles:
- the Swarm DAO MCP server (
swarm-dao-copilotbin) - a native
.vscode/mcp.jsontemplate - Copilot custom instructions (
copilot-instructions.md) - a
HostAdapterimplementation for programmatic use
Install
npm install @guyghost/swarm-dao-copilot-adapterConfigure
VS Code Copilot Chat
Copy .vscode/mcp.json into your project (it registers the swarm-dao MCP
server). Restart VS Code, then the dao_* tools appear under the swarm-dao
MCP server in Copilot Chat.
Custom instructions
Append the contents of copilot-instructions.md to your repo's
.github/copilot-instructions.md so Copilot follows the DAO workflow.
Run the server directly
swarm-dao-copilot # uses $DAO_ROOT or cwdProgrammatic API
import { createCopilotHostAdapter, startCopilotServer } from "@guyghost/swarm-dao-copilot-adapter";
const adapter = createCopilotHostAdapter("/path/to/repo");
await startCopilotServer(); // boots the stdio MCP serverWorkflow
See copilot-instructions.md for the full
DAO workflow (setup → propose → deliberate → dispatch → record → control →
execute → ship).
License
MIT
