claude-code-orchestrator-kit 1.2.4 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/agents/health/orchestrators/bug-orchestrator.md +39 -0
- package/.claude/agents/health/orchestrators/dead-code-orchestrator.md +19 -0
- package/.claude/agents/health/orchestrators/dependency-orchestrator.md +20 -1
- package/.claude/agents/health/orchestrators/reuse-orchestrator.md +1112 -0
- package/.claude/agents/health/orchestrators/security-orchestrator.md +19 -0
- package/.claude/agents/health/workers/reuse-fixer.md +496 -0
- package/.claude/agents/health/workers/reuse-hunter.md +545 -0
- package/.claude/commands/health-reuse.md +327 -0
- package/.claude/commands/speckit.implement.md +21 -0
- package/.claude/commands/speckit.plan.md +6 -1
- package/.claude/commands/speckit.tasks.md +7 -0
- package/.claude/project-index.md +75 -0
- package/.claude/skills/load-project-context/SKILL.md +89 -0
- package/.claude/skills/resume-session/SKILL.md +164 -0
- package/.claude/skills/save-session-context/SKILL.md +123 -0
- package/.claude/templates/project-index.template.md +67 -0
- package/.claude/templates/session/context.template.md +40 -0
- package/.claude/templates/session/log.template.md +72 -0
- package/CLAUDE.md +17 -0
- package/README.md +94 -12
- package/mcp/.mcp.full.json +11 -0
- package/package.json +1 -1
- package/switch-mcp.sh +10 -4
package/switch-mcp.sh
CHANGED
|
@@ -29,11 +29,12 @@ echo -e "${GREEN}2${NC} - SUPABASE (Base + Supabase MegaCampusAI)
|
|
|
29
29
|
echo -e "${GREEN}3${NC} - SUPABASE + LEGACY (Base + Supabase + Legacy project) ~3000 tokens"
|
|
30
30
|
echo -e "${GREEN}4${NC} - N8N (Base + n8n-workflows + n8n-mcp) ~2500 tokens"
|
|
31
31
|
echo -e "${GREEN}5${NC} - FRONTEND (Base + Playwright + ShadCN) ~2000 tokens"
|
|
32
|
-
echo -e "${GREEN}6${NC} -
|
|
32
|
+
echo -e "${GREEN}6${NC} - SERENA (Base + Serena LSP semantic search) ~2500 tokens"
|
|
33
|
+
echo -e "${GREEN}7${NC} - FULL (All servers including Serena) ~6500 tokens"
|
|
33
34
|
echo ""
|
|
34
35
|
echo -e "${YELLOW}0${NC} - STATUS (Show current configuration)"
|
|
35
36
|
echo ""
|
|
36
|
-
read -p "Your choice (0-
|
|
37
|
+
read -p "Your choice (0-7): " choice
|
|
37
38
|
|
|
38
39
|
case "$choice" in
|
|
39
40
|
1)
|
|
@@ -57,8 +58,12 @@ case "$choice" in
|
|
|
57
58
|
desc="FRONTEND (Playwright + ShadCN)"
|
|
58
59
|
;;
|
|
59
60
|
6)
|
|
61
|
+
config="serena"
|
|
62
|
+
desc="SERENA (Base + LSP semantic search)"
|
|
63
|
+
;;
|
|
64
|
+
7)
|
|
60
65
|
config="full"
|
|
61
|
-
desc="FULL (All servers)"
|
|
66
|
+
desc="FULL (All servers including Serena)"
|
|
62
67
|
;;
|
|
63
68
|
0)
|
|
64
69
|
echo ""
|
|
@@ -76,11 +81,12 @@ case "$choice" in
|
|
|
76
81
|
[ -f "$MCP_DIR/.mcp.supabase-full.json" ] && echo -e " ✓ $MCP_DIR/.mcp.supabase-full.json"
|
|
77
82
|
[ -f "$MCP_DIR/.mcp.n8n.json" ] && echo -e " ✓ $MCP_DIR/.mcp.n8n.json"
|
|
78
83
|
[ -f "$MCP_DIR/.mcp.frontend.json" ] && echo -e " ✓ $MCP_DIR/.mcp.frontend.json"
|
|
84
|
+
[ -f "$MCP_DIR/.mcp.serena.json" ] && echo -e " ✓ $MCP_DIR/.mcp.serena.json"
|
|
79
85
|
[ -f "$MCP_DIR/.mcp.full.json" ] && echo -e " ✓ $MCP_DIR/.mcp.full.json"
|
|
80
86
|
exit 0
|
|
81
87
|
;;
|
|
82
88
|
*)
|
|
83
|
-
echo -e "${RED}Invalid choice. Use numbers 0-
|
|
89
|
+
echo -e "${RED}Invalid choice. Use numbers 0-7.${NC}"
|
|
84
90
|
exit 1
|
|
85
91
|
;;
|
|
86
92
|
esac
|