@modastar/godot-skills 0.1.3 → 0.1.4

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.
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
3
3
  "name": "godot-skills",
4
4
  "displayName": "godot-skills",
5
- "version": "0.1.3",
5
+ "version": "0.1.4",
6
6
  "description": "Agent Skills for Godot 4.7+.",
7
7
  "keywords": ["godot", "gdscript", "gdshader", "agent-skills"]
8
8
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "godot-skills",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Agent Skills for Godot 4.7+.",
5
5
  "keywords": ["godot", "gdscript", "gdshader", "agent-skills"],
6
6
  "skills": "./skills/",
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # godot-skills
2
2
 
3
- A efficient and lightweight Agent Skills plugin for Godot 4.7+. Works with Claude Code, Codex, and Pi Coding Agent.
3
+ A efficient and lightweight Agent Skills plugin for Godot 4.7+. Works with Claude Code, Codex CLI, Codex App, Antigravity, OpenCode, Hermes Agent, and Pi Coding Agent.
4
4
 
5
5
  ## Install
6
6
 
@@ -13,13 +13,31 @@ A efficient and lightweight Agent Skills plugin for Godot 4.7+. Works with Claud
13
13
 
14
14
  If the install summary says `Run /reload-plugins to activate.`, run that command.
15
15
 
16
- ### Codex
16
+ ### Codex CLI
17
17
 
18
18
  ```sh
19
19
  codex plugin marketplace add https://github.com/xlanstar/godot-skills
20
20
  codex plugin add godot-skills@godot-skills
21
21
  ```
22
22
 
23
+ ### Antigravity
24
+
25
+ ```sh
26
+ agy plugin install https://github.com/xlanstar/godot-skills
27
+ ```
28
+
29
+ ### Codex App, OpenCode, Hermes Agent
30
+
31
+ These read the cross-agent `.agents/skills/` convention. From your Godot
32
+ project root:
33
+
34
+ ```sh
35
+ git clone https://github.com/xlanstar/godot-skills.git ~/godot-skills
36
+ mkdir -p .agents/skills && ln -s ~/godot-skills/skills/* .agents/skills/
37
+ ```
38
+
39
+ Hermes Agent additionally needs the project trusted once: `hermes skills trust .`
40
+
23
41
  ### Pi Coding Agent
24
42
 
25
43
  ```sh
@@ -33,6 +51,7 @@ Load from a working copy without installing:
33
51
  ```sh
34
52
  claude --plugin-dir /absolute/path/to/godot-skills # session only
35
53
  codex plugin marketplace add /absolute/path/to/godot-skills
54
+ agy plugin install /absolute/path/to/godot-skills
36
55
  pi install /absolute/path/to/godot-skills
37
56
  ```
38
57
 
@@ -45,14 +64,18 @@ We assume modern frontier LLMs already have sufficient reasoning ability and nee
45
64
  ## Architecture
46
65
 
47
66
  ```text
67
+ plugin.json Agent Plugins manifest (Cursor, Antigravity)
48
68
  .claude-plugin/plugin.json Claude Code metadata
49
- .codex-plugin/plugin.json Codex plugin metadata
50
- .agents/plugins/marketplace.json Codex local marketplace entry
69
+ .codex-plugin/plugin.json Codex CLI plugin metadata
70
+ .agents/plugins/marketplace.json Codex CLI local marketplace entry
51
71
  package.json Pi package metadata
52
72
  AGENTS.md Shared instructions (CLAUDE.md symlinks here)
53
73
  skills/*/SKILL.md Portable Agent Skills
54
74
  ```
55
75
 
76
+ Codex App, OpenCode, and Hermes Agent consume `skills/` through the
77
+ `.agents/skills/` convention rather than a manifest.
78
+
56
79
  The plugin intentionally has no hooks, MCP server, runtime code, or dependencies.
57
80
 
58
81
  ## Release
@@ -62,13 +85,14 @@ npm version patch # or minor / major
62
85
  ```
63
86
 
64
87
  `npm version` bumps `package.json`, runs `scripts/sync-version.sh` to mirror the
65
- version into `.claude-plugin/plugin.json` and `.codex-plugin/plugin.json`,
88
+ version into `plugin.json`, `.claude-plugin/plugin.json`, and
89
+ `.codex-plugin/plugin.json`,
66
90
  commits, tags `vX.Y.Z`, and pushes with the tag. The pushed tag triggers
67
91
  `.github/workflows/release.yml`, which verifies the tag matches `package.json`,
68
92
  creates a GitHub Release with generated notes, and publishes to npm (for `pi
69
93
  install`) when the `NPM_TOKEN` repo secret exists.
70
94
 
71
- Claude Code and Codex install straight from the Git repo, so nothing else is
95
+ Most hosts install straight from the Git repo, so nothing else is
72
96
  published; the tag is the release.
73
97
 
74
98
  Versioning: **patch** = wording or fixes inside a skill, **minor** = new skill
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modastar/godot-skills",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Agent Skills for Godot 4.7+.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -14,6 +14,7 @@
14
14
  "postversion": "git push --follow-tags"
15
15
  },
16
16
  "files": [
17
+ "plugin.json",
17
18
  ".claude-plugin",
18
19
  ".codex-plugin",
19
20
  ".agents",
package/plugin.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
3
+ "name": "godot-skills",
4
+ "version": "0.1.4",
5
+ "description": "Agent Skills for Godot 4.7+."
6
+ }