Skip to content

Commit 12536bd

Browse files
committed
Fix plugin validation errors
- Fix agent tools format: use JSON array ["Tool1", "Tool2"] not comma-separated - Add strict: true to all marketplace entries to avoid manifest conflicts - Hooks already fixed in previous commit Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 3ae538a commit 12536bd

4 files changed

Lines changed: 20 additions & 8 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,33 @@
1111
"plugins": [
1212
{
1313
"name": "godot-claude",
14-
"description": "Comprehensive Godot 4.6 development toolkit for studios. 15 skills covering GDScript, C#, shaders, GDExtension, navigation, animation, audio, patterns, multiplayer, optimization, and more.",
15-
"source": "./godot-claude"
14+
"description": "Comprehensive Godot 4.6 development toolkit for studios.",
15+
"source": "./godot-claude",
16+
"strict": true
1617
},
1718
{
1819
"name": "mcp-app-next-ui",
1920
"description": "Build MCP Apps with Next.js, React, Tailwind CSS, and shadcn/ui.",
20-
"source": "./mcp-app-next-ui"
21+
"source": "./mcp-app-next-ui",
22+
"strict": true
2123
},
2224
{
2325
"name": "open-responses",
2426
"description": "Open Responses specification implementation for multi-provider LLM orchestration.",
25-
"source": "./open-responses"
27+
"source": "./open-responses",
28+
"strict": true
2629
},
2730
{
2831
"name": "creative-frontend",
2932
"description": "Create distinctive, production-grade frontend interfaces with WebGPU 3D graphics.",
30-
"source": "./creative-frontend"
33+
"source": "./creative-frontend",
34+
"strict": true
3135
},
3236
{
3337
"name": "tool-creator",
3438
"description": "Create AI-First CLI tools with uv, Typer, Pydantic, and Loguru.",
35-
"source": "./tool-creator"
39+
"source": "./tool-creator",
40+
"strict": true
3641
}
3742
]
3843
}

.claude/settings.local.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"mcp__serena__list_dir"
5+
]
6+
}
7+
}

godot-claude/agents/godot-code-reviewer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: godot-code-reviewer
33
description: Reviews Godot 4.6 GDScript, C#, and shader code for best practices, performance issues, and common mistakes. Use when the user wants a code review after writing or modifying Godot code.
4-
tools: Read, Glob, Grep
4+
tools: ["Read", "Glob", "Grep"]
55
model: sonnet
66
color: magenta
77
---

godot-claude/agents/godot-performance-analyzer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: godot-performance-analyzer
33
description: Analyzes Godot 4.6 scenes and scripts for performance issues, recommending optimizations. Use when the user wants to optimize their Godot project for better FPS or identify bottlenecks.
4-
tools: Read, Glob, Grep
4+
tools: ["Read", "Glob", "Grep"]
55
model: sonnet
66
color: yellow
77
---

0 commit comments

Comments
 (0)