@gobing-ai/superskill 0.2.19 → 0.3.1
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/README.md +20 -7
- package/dist/index.js +1853 -533
- package/package.json +5 -6
- package/templates/agent/default.md +0 -33
- package/templates/agent/minimal.md +0 -10
- package/templates/agent/specialist.md +0 -47
- package/templates/agent/standard.md +0 -35
- package/templates/command/default.md +0 -38
- package/templates/command/plugin.md +0 -53
- package/templates/command/simple.md +0 -47
- package/templates/command/workflow.md +0 -51
- package/templates/magent/default.md +0 -65
- package/templates/skill/default.md +0 -72
- package/templates/skill/pattern.md +0 -97
- package/templates/skill/reference.md +0 -104
- package/templates/skill/technique.md +0 -109
package/README.md
CHANGED
|
@@ -49,18 +49,31 @@ Full walkthrough: [Quick start guide](docs/help/quick_start.md).
|
|
|
49
49
|
| Agent | Skills | Commands | Subagents | Hooks |
|
|
50
50
|
|-------|:------:|:--------:|:---------:|:-----:|
|
|
51
51
|
| Claude Code | ✓ | ✓ | ✓ | ✓ |
|
|
52
|
-
|
|
|
53
|
-
|
|
|
54
|
-
|
|
|
55
|
-
|
|
|
56
|
-
|
|
|
57
|
-
| Antigravity
|
|
52
|
+
| Grok | ✓ | ✓ | ✓ | ✓ |
|
|
53
|
+
| Codex | ✓ | ✓ | ✓ | ✓ |
|
|
54
|
+
| Pi | ✓ | ✓ | ✓ | ✓ |
|
|
55
|
+
| omp | ✓ | ✓ | ✓ | ✓ |
|
|
56
|
+
| OpenCode | ✓ | ✓ | ✓ | ✓ |
|
|
57
|
+
| Antigravity IDE | ✓ | ✓ | — | ✓ |
|
|
58
|
+
| Antigravity CLI | ✓ | ✓ | — | ✓ |
|
|
58
59
|
| Hermes | ✓ | ✓ | — | ✓ |
|
|
59
|
-
|
|
60
|
+
|
|
61
|
+
Both Antigravity targets get skills, commands, and hooks from rulesync
|
|
62
|
+
(`codexcli`/`codexcli`/`antigravity-ide` adapters); subagents are not part of the
|
|
63
|
+
rulesync→antigravity map, so they don't ship there. `omp`, Grok, and Claude Code
|
|
64
|
+
install plugins natively (no rulesync pass); the remaining targets route through
|
|
65
|
+
rulesync's per-target generators. Hermes copies skills/commands from OpenCode's
|
|
66
|
+
rulesync output and adds a canonical `hooks.json` copy at `~/.hermes/hooks.json`.
|
|
67
|
+
|
|
68
|
+
Grok loads the Claude-format plugin natively — slash form is `/plugin:command`
|
|
69
|
+
(e.g. `/cc:skill-add`). Codex/Pi-installed skills under `~/.agents/` may also
|
|
70
|
+
appear in Grok as `/plugin-command` (hyphen form) when Grok discovers the shared
|
|
71
|
+
skills root; prefer the colon form for plugin commands.
|
|
60
72
|
|
|
61
73
|
See [entity locations](docs/help/entity_locations.md) for the exact install directories per agent.
|
|
62
74
|
|
|
63
75
|
> Agents that don't natively support some entity types still get them. `superskill install` adapts commands and subagents as Skills 2.0 skill directories for targets that lack them — so every agent receives the full plugin surface, regardless of native feature set.
|
|
76
|
+
</input>
|
|
64
77
|
|
|
65
78
|
## Commands
|
|
66
79
|
|