godot-cli 0.8.0 → 0.9.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/dist/utils/agents.d.ts +1 -1
- package/dist/utils/skills.d.ts +1 -1
- package/dist/utils/skills.js +1 -1
- package/package.json +1 -1
package/dist/utils/agents.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* An AI-agent MCP-client configurator. Mirrors the Godot addon's
|
|
3
|
-
* `GodotAgentConfigurator` registry (`addons/godot_mcp/UI/Agents/`), adapted
|
|
3
|
+
* `GodotAgentConfigurator` registry (`addons/godot_mcp/Editor/UI/Agents/`), adapted
|
|
4
4
|
* to the CLI's file-writing surface, and brought to parity with the Unity CLI's
|
|
5
5
|
* agent roster (`Unity-MCP/cli/src/utils/agents.ts`). Each agent knows where its
|
|
6
6
|
* MCP-client config lives and what HTTP-transport server entry to write.
|
package/dist/utils/skills.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export interface SkillFamily {
|
|
|
15
15
|
/**
|
|
16
16
|
* The Godot-MCP tool-family catalog. Mirrors the 10 families documented in
|
|
17
17
|
* `Godot-MCP/CLAUDE.md` § Tool families and the `[AiToolType]` classes under
|
|
18
|
-
* `addons/godot_mcp/Tools/`. Tool names are the `[AiTool("<name>")]` identifiers
|
|
18
|
+
* `addons/godot_mcp/Runtime/Tools/` and `addons/godot_mcp/Editor/Tools/`. Tool names are the `[AiTool("<name>")]` identifiers
|
|
19
19
|
* an MCP client invokes.
|
|
20
20
|
*/
|
|
21
21
|
export declare const SKILL_FAMILIES: readonly SkillFamily[];
|
package/dist/utils/skills.js
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
/**
|
|
19
19
|
* The Godot-MCP tool-family catalog. Mirrors the 10 families documented in
|
|
20
20
|
* `Godot-MCP/CLAUDE.md` § Tool families and the `[AiToolType]` classes under
|
|
21
|
-
* `addons/godot_mcp/Tools/`. Tool names are the `[AiTool("<name>")]` identifiers
|
|
21
|
+
* `addons/godot_mcp/Runtime/Tools/` and `addons/godot_mcp/Editor/Tools/`. Tool names are the `[AiTool("<name>")]` identifiers
|
|
22
22
|
* an MCP client invokes.
|
|
23
23
|
*/
|
|
24
24
|
export const SKILL_FAMILIES = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "godot-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Cross-platform CLI tool for Godot-MCP (Skills & MCP). Resolves and launches the Godot editor with MCP connection env vars, runs MCP/system tools over HTTP, probes server health, configures AI agents (Claude Code, Cursor, VS Code, …), and enables/disables the godot_mcp addon. Works with Claude Code, Cursor, Copilot, and any MCP client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/lib.js",
|