Skip to content

Commit e159f39

Browse files
fix: sync bundled plugin (ai_codebase_mentor/plugin/) with canonical source
The Python installer uses ai_codebase_mentor/plugin/ as source, not plugins/codebase-wizard/. The bundled copy was stale — missing the frontmatter fixes from v1.2.3 (command descriptions, agent model/color, skill kebab-case names). Synced with rsync from canonical source. This was the root cause of the 'failed to load' error in Claude Code's /plugin UI. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a3d555e commit e159f39

9 files changed

Lines changed: 11 additions & 23 deletions

File tree

ai_codebase_mentor/plugin/.claude-plugin/marketplace.json

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,5 @@
1717
"url": "https://github.com/SpillwaveSolutions/codebase-mentor"
1818
},
1919
"runtime": "claude-code",
20-
"entry": ".claude-plugin/plugin.json",
21-
"install": {
22-
"method": "python-package",
23-
"package": "ai-codebase-mentor",
24-
"command": "ai-codebase-mentor install --for claude"
25-
},
26-
"commands": [
27-
{
28-
"name": "codebase-wizard",
29-
"description": "Start a wizard session — explain, explore, or document any codebase or artifact."
30-
},
31-
{
32-
"name": "codebase-wizard-setup",
33-
"description": "One-time setup: install Agent Rulez hooks and write session-agent permissions."
34-
},
35-
{
36-
"name": "codebase-wizard-export",
37-
"description": "Synthesize captured session logs into CODEBASE.md, TOUR.md, or FILE-NOTES.md."
38-
}
39-
]
20+
"entry": ".claude-plugin/plugin.json"
4021
}

ai_codebase_mentor/plugin/agents/codebase-wizard-agent.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: codebase-wizard-agent
33
description: >
44
Pre-authorized agent for the Codebase Wizard. Covers scanning, Q&A,
55
capture, synthesis, and export. Zero approval prompts during sessions.
6+
model: inherit
7+
color: blue
68

79
allowed_tools:
810
# File exploration (read-only, unrestricted paths)

ai_codebase_mentor/plugin/agents/codebase-wizard-setup-agent.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ description: >
44
Pre-authorized agent for Codebase Wizard setup. Covers storage creation,
55
Agent Rulez install, hook registration, and settings.local.json write.
66
Broader permissions than the session agent — only used during /codebase-wizard-setup.
7+
model: inherit
8+
color: yellow
79

810
allowed_tools:
911
# File exploration (read-only, unrestricted)

ai_codebase_mentor/plugin/commands/codebase-wizard-export.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
description: "Synthesize captured session logs into CODEBASE.md, TOUR.md, or FILE-NOTES.md."
23
context: fork
34
agent: codebase-wizard-agent
45
---

ai_codebase_mentor/plugin/commands/codebase-wizard-setup.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
description: "One-time setup: install Agent Rulez hooks and write session-agent permissions."
23
context: fork
34
agent: codebase-wizard-setup-agent
45
---

ai_codebase_mentor/plugin/commands/codebase-wizard.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
description: "Start a wizard session — explain, explore, or document any codebase or artifact."
23
context: fork
34
agent: codebase-wizard-agent
45
---

ai_codebase_mentor/plugin/skills/configuring-codebase-wizard/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Configuring Codebase Wizard
2+
name: configuring-codebase-wizard
33
description: >
44
One-time setup for the Codebase Wizard. Use when the user runs
55
/codebase-wizard-setup, says "set up the wizard", "install wizard", or

ai_codebase_mentor/plugin/skills/explaining-codebase/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: codebase-wizard
2+
name: explaining-codebase
33
description: >
44
Universal explainer for codebases, specs, design docs, and markdown files.
55
Activates when a user wants to understand how their code works, explore a

ai_codebase_mentor/plugin/skills/exporting-conversation/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Exporting Conversation
2+
name: exporting-conversation
33
description: >
44
Synthesizes raw wizard session JSON into structured documentation. Use when
55
the user runs /codebase-wizard-export, says "export session", "generate docs",

0 commit comments

Comments
 (0)