Get Brief Wiggum running in 5 minutes.
⚠️ EXPERIMENTAL SOFTWARE: Brief Wiggum is in early development. Test thoroughly in a non-production environment first. See the README for full disclaimer.
- Brief account with API access
- Claude Code or Cursor installed
- Node.js 18+ with pnpm/npm/yarn
- jq (for Ralph loop):
brew install jqorapt install jq
# Fork on GitHub, then clone
git clone https://github.com/YOUR_USERNAME/brief-wiggum.git
cd brief-wiggum./.claude/scripts/setup.shThis verifies:
- Git hooks are executable
- Scripts are executable
- Required tools are installed
See Brief MCP Setup for detailed instructions.
Quick version for Claude Code:
- Get your Brief API key from the Brief dashboard
- Add to your Claude Code MCP settings:
{
"mcpServers": {
"brief": {
"url": "https://app.briefhq.ai/api/mcp/sse",
"transport": "sse",
"headers": {
"Authorization": "Bearer YOUR_BRIEF_API_KEY"
}
}
}
}cp CLAUDE.md.template CLAUDE.mdEdit CLAUDE.md and fill in:
- Your project name
- Your tech stack (frontend, backend, database, etc.)
- Your build commands (dev, build, test, lint)
- Your code conventions
# Start Claude Code
claude
# Or open in Cursor
cursor .Then type:
/onboard
The agent will:
- Load Brief product context
- Check your codebase structure
- Report readiness
/health
Should show:
✅ Brief MCP: Connected
Try running a dangerous command:
git reset --hardShould be blocked with an explanation.
./.claude/scripts/ralph.sh --dry-run "Add a test file"Should show the prompt that would be sent.
- Read the philosophy: philosophy.md
- Understand skills: Browse
.claude/skills/ - Customize patterns: Add project-specific skills
- Connect Linear (optional): For issue tracking integration
- Check your API key is valid
- Verify the MCP server URL
- Restart Claude Code/Cursor
chmod +x .claude/hooks/*.sh
chmod +x .claude/scripts/*.shInstall jq for your platform:
- macOS:
brew install jq - Ubuntu:
apt install jq - Windows:
choco install jq