AnEntrypoint/gm-cc
Platform-specific configuration:
{
"mcpServers": {
"gm-cc": {
"command": "npx",
"args": [
"-y",
"gm-cc"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
The easiest way to install gm-cc is through Claude Code's plugin marketplace:
claude plugin marketplace add AnEntrypoint/gm-cc
claude plugin install -s user gm@gm-ccThis installation method is best for:
For development or project-specific customization, install gm-cc directly into your project:
cd /path/to/your/project
npm install gm-cc && npx gm installThis installation method is ideal when you need to:
The npm install gm-cc && npx gm install command performs two steps:
node_modules/ directoryExpected output:
$ npm install gm-cc
added 1 package in 1.2s
$ npx gm install
Installing gm-cc...
✓ Created .claude/ directory
✓ Copied agents/gm.md
✓ Copied hooks to .claude/hooks/
✓ Created .mcp.json for MCP integrationAfter running npx gm install, your project will have:
.claude/
├── agents/
│ └── gm.md # State machine agent rules
├── hooks/
│ ├── pre-tool-use-hook.js # Tool validation and filtering
│ ├── session-start-hook.js # Session initialization
│ ├── prompt-submit-hook.js # Prompt validation
│ ├── stop-hook.js # Session completion enforcement
│ └── stop-hook-git.js # Git state verification
└── .mcp.json Loading reviews...