Skip to content

Commit 167c4f1

Browse files
fix(claude): track claude-plugin/.mcp.json so the embed compiles from a clean checkout
.gitignore ignores .mcp.json globally with a negation only for codex-plugin; claude-plugin/.mcp.json was therefore untracked, so include_str!("../../claude-plugin/.mcp.json") in src/agents/claude.rs failed to compile on a fresh clone (CI). Add the negation and commit the file (byte-identical to codex-plugin/.mcp.json). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 5d065c7 commit 167c4f1

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
.tracedecay
55
.mcp.json
66
!codex-plugin/.mcp.json
7+
!claude-plugin/.mcp.json
78
.claude/
89
.cursor/
910
docs/superpowers

claude-plugin/.mcp.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"mcpServers": {
3+
"tracedecay": {
4+
"type": "stdio",
5+
"command": "tracedecay",
6+
"args": [
7+
"serve"
8+
],
9+
"env": {
10+
"TRACEDECAY_ENABLE_GLOBAL_DB": "1"
11+
}
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)