@heart-of-gold/toolkit 0.1.4 → 0.1.5
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 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -40,6 +40,8 @@ When installed as a Pi package, Heart of Gold also exposes pi-native enhancement
|
|
|
40
40
|
- `/hog-plan` — planning mode entrypoint with pi-friendly tool defaults
|
|
41
41
|
- `/hog-work` — execution mode entrypoint with stronger work guardrails
|
|
42
42
|
|
|
43
|
+
For Pi, these flagship commands intentionally replace the direct shared-skill entries for `brainstorm`, `plan`, and `work` so the command palette stays clean and the Pi-native interactive flow is the default.
|
|
44
|
+
|
|
43
45
|
### List available skills
|
|
44
46
|
```bash
|
|
45
47
|
bunx @heart-of-gold/toolkit list
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heart-of-gold/toolkit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Cross-platform installer for Heart of Gold skills — works with Codex, OpenCode, Pi, Claude Code, and more",
|
|
6
6
|
"bin": {
|
|
@@ -48,7 +48,10 @@
|
|
|
48
48
|
"./extensions/pi"
|
|
49
49
|
],
|
|
50
50
|
"skills": [
|
|
51
|
-
"./plugins/*/skills"
|
|
51
|
+
"./plugins/*/skills",
|
|
52
|
+
"!./plugins/deep-thought/skills/brainstorm",
|
|
53
|
+
"!./plugins/deep-thought/skills/plan",
|
|
54
|
+
"!./plugins/marvin/skills/work"
|
|
52
55
|
]
|
|
53
56
|
}
|
|
54
57
|
}
|