@gobing-ai/superskill 0.1.8 → 0.2.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 +2 -3
- package/dist/index.js +572 -159
- package/package.json +1 -1
- package/templates/agent/default.md +27 -2
- package/templates/agent/minimal.md +10 -0
- package/templates/agent/specialist.md +47 -0
- package/templates/agent/standard.md +35 -0
- package/templates/command/default.md +27 -5
- package/templates/command/plugin.md +53 -0
- package/templates/command/simple.md +47 -0
- package/templates/command/workflow.md +51 -0
- package/templates/magent/default.md +53 -10
- package/templates/skill/default.md +63 -1
- package/templates/skill/pattern.md +95 -0
- package/templates/skill/reference.md +102 -0
- package/templates/skill/technique.md +107 -0
- package/templates/hook/default.md +0 -8
package/README.md
CHANGED
|
@@ -206,12 +206,11 @@ Since ts-ai-runner 0.3.21, `omp`, `hermes`, and `antigravity-cli` are canonical
|
|
|
206
206
|
| **OpenClaw agents/hooks** | OpenClaw reads skills from `~/.agents/skills/` (implicitly covered). Dedicated agent YAML config and webhook-based hooks are not managed by superskill. |
|
|
207
207
|
## Bundled `cc` plugin
|
|
208
208
|
|
|
209
|
-
superskill ships with a Claude Code plugin at [`plugins/cc/`](plugins/cc/) (marketplace name: `cc`, version `0.1.
|
|
209
|
+
superskill ships with a Claude Code plugin at [`plugins/cc/`](plugins/cc/) (marketplace name: `cc`, version `0.1.8`) that demonstrates the full authoring lifecycle and provides the meta-agent skills the expert personas reference:
|
|
210
210
|
|
|
211
211
|
| Entity | Count | Purpose |
|
|
212
212
|
|--------|-------|---------|
|
|
213
|
-
| **
|
|
214
|
-
| **commands** | 16 | 4 operations × 4 entity types — thin slash-command wrappers that delegate to skills |
|
|
213
|
+
| **commands** | 17 | 4 operations × 4 types + `hook-evaluate` — thin slash-command wrappers that delegate to skills |
|
|
215
214
|
| **agents** | 5 | `expert-agent`, `expert-command`, `expert-hook`, `expert-magent`, `expert-skill` — specialist subagents that route to skills |
|
|
216
215
|
| **hooks** | 1 | `Stop` hook running the anti-hallucination guard |
|
|
217
216
|
| **scripts** | 3 | `ah_guard.ts`, `validate_response.ts`, `logger.ts` — deterministic enforcement for the anti-hallucination protocol |
|