9ff8e915b8
User-agnostic, shareable AI-assisted development workflow distilled from 26+ real projects. Includes 9 composable rules, 4 project templates, pre-push secret scanning hook, 3 methodology guides, and customization docs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"_comment": "Example Claude Code settings.json — copy relevant sections to ~/.claude/settings.json",
|
|
|
|
"enabledPlugins": {
|
|
"_comment": "Recommended plugins from the official marketplace",
|
|
"superpowers@claude-plugins-official": true,
|
|
"code-review@claude-plugins-official": true,
|
|
"code-simplifier@claude-plugins-official": true,
|
|
"claude-md-management@claude-plugins-official": true
|
|
},
|
|
|
|
"hooks": {
|
|
"PreToolUse": [
|
|
{
|
|
"matcher": "Bash",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "~/.config/git/check-secrets-before-push.sh",
|
|
"timeout": 30,
|
|
"statusMessage": "Checking for secrets before push..."
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
|
|
"_permissions_example": {
|
|
"_comment": "Add to permissions.deny to block access to sensitive files",
|
|
"deny": [
|
|
"Read(~/.ssh/*)",
|
|
"Read(~/.aws/*)",
|
|
"Read(~/.env)",
|
|
"Read(**/credentials*)",
|
|
"Read(**/.env*)",
|
|
"Read(**/*.pem)",
|
|
"Read(**/*.key)",
|
|
"Write(~/.ssh/*)",
|
|
"Write(~/.aws/*)",
|
|
"Write(**/.env*)"
|
|
]
|
|
},
|
|
|
|
"_mcp_example": {
|
|
"_comment": "Example MCP server configuration — add servers relevant to your workflow",
|
|
"mcpServers": {
|
|
"example-server": {
|
|
"command": "/path/to/server",
|
|
"args": [],
|
|
"env": {}
|
|
}
|
|
}
|
|
}
|
|
}
|