claude-flow-depth
Version:
DEPTH Methodology Installer - Ousterhout-First Development for Claude Code
47 lines • 1.28 kB
JSON
{
"mcp": {
"mcpServers": {
"depth-frontend": {
"command": "curl",
"args": [
"-X", "POST",
"{{FRONTEND_MCP_URL}}",
"-H", "Content-Type: application/json",
"-H", "Authorization: Bearer {{SUPABASE_API_KEY}}",
"-d", "@-"
],
"env": {
"SUPABASE_URL": "{{FRONTEND_MCP_URL}}",
"SUPABASE_KEY": "{{SUPABASE_API_KEY}}"
}
},
"depth-backend": {
"command": "curl",
"args": [
"-X", "POST",
"{{BACKEND_MCP_URL}}",
"-H", "Content-Type: application/json",
"-H", "Authorization: Bearer {{SUPABASE_API_KEY}}",
"-d", "@-"
],
"env": {
"SUPABASE_URL": "{{BACKEND_MCP_URL}}",
"SUPABASE_KEY": "{{SUPABASE_API_KEY}}"
}
}
}
},
"depth": {
"enabled": true,
"methodology": "ousterhout-first",
"quality_gates_enforced": true,
"auto_mcp_integration": true,
"session_persistence": true
},
"hooks": {
"pre-edit": "npx claude-flow-depth hooks pre-edit",
"post-edit": "npx claude-flow-depth hooks post-edit",
"pre-task": "npx claude-flow-depth hooks pre-task",
"post-task": "npx claude-flow-depth hooks post-task"
}
}