@heart-of-gold/toolkit 0.1.30 → 0.1.31
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 +1 -1
- package/extensions/pi/share.ts +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ When installed as a Pi package, Heart of Gold exposes Pi-native extension comman
|
|
|
39
39
|
- `/deep-thought-brainstorm` — start a brainstorm (collaborative discovery)
|
|
40
40
|
- `/deep-thought-plan` — start planning (research and produce a plan document)
|
|
41
41
|
- `/deep-thought-architect` — turn brainstorm decisions into stories and architecture docs
|
|
42
|
-
- `/share` — publish an HTML file or static site directory through the portable `share-html` skill
|
|
42
|
+
- `/share-html` — publish an HTML file or static site directory through the portable `share-html` skill
|
|
43
43
|
- `/share-server-setup` — set up or adopt the local share server through the portable `share-server-setup` skill
|
|
44
44
|
- `/marvin-work` — start executing a plan (with always-on safety guardrails)
|
|
45
45
|
|
package/extensions/pi/share.ts
CHANGED
|
@@ -19,7 +19,7 @@ function queueOrSend(
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
export default function shareExtension(pi: ExtensionAPI) {
|
|
22
|
-
pi.registerCommand("share", {
|
|
22
|
+
pi.registerCommand("share-html", {
|
|
23
23
|
description: "Publish an HTML file or static site directory via the share-html skill",
|
|
24
24
|
handler: async (args, ctx) => {
|
|
25
25
|
const source = args.trim() || (ctx.hasUI ? (await ctx.ui.editor?.("HTML file or static site directory", ""))?.trim() : undefined);
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { shareServerCommand } from "./commands/share-server";
|
|
|
8
8
|
const main = defineCommand({
|
|
9
9
|
meta: {
|
|
10
10
|
name: "heart-of-gold",
|
|
11
|
-
version: "0.1.
|
|
11
|
+
version: "0.1.31",
|
|
12
12
|
description:
|
|
13
13
|
"Cross-platform installer for Heart of Gold skills — Codex, OpenCode, Pi, Claude Code, and more",
|
|
14
14
|
},
|