@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 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
 
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heart-of-gold/toolkit",
3
- "version": "0.1.30",
3
+ "version": "0.1.31",
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": {
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.30",
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
  },