@heart-of-gold/toolkit 0.1.5 → 0.1.7

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
@@ -35,12 +35,13 @@ pi install npm:@heart-of-gold/toolkit
35
35
 
36
36
  Pi also discovers skills from the shared `~/.agents/skills/` location, so installs done with the OpenCode target are usable from Pi too.
37
37
 
38
- When installed as a Pi package, Heart of Gold also exposes pi-native enhancement commands for flagship workflows:
39
- - `/hog-brainstorm` — guided brainstorm intake for the shared `brainstorm` skill
40
- - `/hog-plan` — planning mode entrypoint with pi-friendly tool defaults
41
- - `/hog-work` — execution mode entrypoint with stronger work guardrails
38
+ When installed as a Pi package, Heart of Gold exposes Pi-native extension commands for the flagship workflows:
39
+ - `/deep-thought-brainstorm` — guided brainstorm intake for the shared `brainstorm` skill
40
+ - `/deep-thought-plan` — planning mode entrypoint with pi-friendly tool defaults
41
+ - `/marvin-work` — execution mode entrypoint with stronger work guardrails
42
+ - `/marvin-execute` — leave planning mode and begin execution
42
43
 
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
+ For Pi, these extension commands replace the direct shared-skill entries for `brainstorm`, `plan`, and `work` so the command palette stays clean and there is only one obvious command per flagship workflow.
44
45
 
45
46
  ### List available skills
46
47
  ```bash
@@ -10,11 +10,11 @@ function sendPrompt(pi: ExtensionAPI, prompt: string, ctx: Parameters<NonNullabl
10
10
  }
11
11
 
12
12
  export default function brainstormExtension(pi: ExtensionAPI) {
13
- pi.registerCommand("hog-brainstorm", {
13
+ pi.registerCommand("deep-thought-brainstorm", {
14
14
  description: "Interactive pi-first intake for the shared brainstorm skill",
15
15
  handler: async (args, ctx) => {
16
16
  if (!ctx.hasUI) {
17
- ctx.ui.notify("/hog-brainstorm requires interactive mode", "warning");
17
+ ctx.ui.notify("/deep-thought-brainstorm requires interactive mode", "warning");
18
18
  return;
19
19
  }
20
20
 
@@ -58,7 +58,7 @@ export default function brainstormExtension(pi: ExtensionAPI) {
58
58
 
59
59
  const theme = ctx.ui.theme;
60
60
  ctx.ui.setStatus(
61
- "hog-brainstorm",
61
+ "deep-thought-brainstorm",
62
62
  theme.fg("accent", "◉") + theme.fg("dim", " Brainstorm flow active"),
63
63
  );
64
64
  sendPrompt(pi, prompt, ctx);
@@ -13,11 +13,11 @@ export default function planExtension(pi: ExtensionAPI) {
13
13
  }
14
14
  };
15
15
 
16
- pi.registerCommand("hog-plan", {
16
+ pi.registerCommand("deep-thought-plan", {
17
17
  description: "Interactive pi-first entrypoint for planning mode and the shared plan skill",
18
18
  handler: async (args, ctx) => {
19
19
  if (!ctx.hasUI) {
20
- ctx.ui.notify("/hog-plan requires interactive mode", "warning");
20
+ ctx.ui.notify("/deep-thought-plan requires interactive mode", "warning");
21
21
  return;
22
22
  }
23
23
 
@@ -54,7 +54,7 @@ export default function planExtension(pi: ExtensionAPI) {
54
54
 
55
55
  const theme = ctx.ui.theme;
56
56
  ctx.ui.setStatus(
57
- "hog-plan",
57
+ "deep-thought-plan",
58
58
  theme.fg("accent", "◉") + theme.fg("dim", " Plan mode active"),
59
59
  );
60
60
 
@@ -67,18 +67,18 @@ export default function planExtension(pi: ExtensionAPI) {
67
67
  },
68
68
  });
69
69
 
70
- pi.registerCommand("hog-execute", {
70
+ pi.registerCommand("marvin-execute", {
71
71
  description: "Exit planning mode, restore tools, and optionally start work",
72
72
  handler: async (args, ctx) => {
73
73
  if (previousTools) {
74
74
  pi.setActiveTools(previousTools);
75
75
  previousTools = null;
76
76
  }
77
- ctx.ui.setStatus("hog-plan", "");
77
+ ctx.ui.setStatus("deep-thought-plan", "");
78
78
 
79
79
  const target = args.trim();
80
80
  if (!target) {
81
- ctx.ui.notify("Planning mode cleared. Run /hog-work <plan-path> when ready.", "info");
81
+ ctx.ui.notify("Planning mode cleared. Run /marvin-work <plan-path> when ready.", "info");
82
82
  return;
83
83
  }
84
84
 
@@ -7,11 +7,11 @@ const BLOCKED_COMMANDS = [/\bgit\s+add\s+\.\b/i, /\brm\s+(-rf?|--recursive)/i];
7
7
  export default function workExtension(pi: ExtensionAPI) {
8
8
  let workMode = false;
9
9
 
10
- pi.registerCommand("hog-work", {
10
+ pi.registerCommand("marvin-work", {
11
11
  description: "Interactive pi-first entrypoint for the shared work skill",
12
12
  handler: async (args, ctx) => {
13
13
  if (!ctx.hasUI) {
14
- ctx.ui.notify("/hog-work requires interactive mode", "warning");
14
+ ctx.ui.notify("/marvin-work requires interactive mode", "warning");
15
15
  return;
16
16
  }
17
17
 
@@ -33,7 +33,7 @@ export default function workExtension(pi: ExtensionAPI) {
33
33
  workMode = true;
34
34
  const theme = ctx.ui.theme;
35
35
  ctx.ui.setStatus(
36
- "hog-work",
36
+ "marvin-work",
37
37
  theme.fg("accent", "◉") + theme.fg("dim", ` Work mode active — ${runMode}`),
38
38
  );
39
39
 
@@ -56,11 +56,11 @@ export default function workExtension(pi: ExtensionAPI) {
56
56
  },
57
57
  });
58
58
 
59
- pi.registerCommand("hog-work-off", {
59
+ pi.registerCommand("marvin-work-off", {
60
60
  description: "Disable Heart of Gold work-mode guardrails",
61
61
  handler: async (_args, ctx) => {
62
62
  workMode = false;
63
- ctx.ui.setStatus("hog-work", "");
63
+ ctx.ui.setStatus("marvin-work", "");
64
64
  ctx.ui.notify("Work mode disabled", "info");
65
65
  },
66
66
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heart-of-gold/toolkit",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
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,10 +48,31 @@
48
48
  "./extensions/pi"
49
49
  ],
50
50
  "skills": [
51
- "./plugins/*/skills",
52
- "!./plugins/deep-thought/skills/brainstorm",
53
- "!./plugins/deep-thought/skills/plan",
54
- "!./plugins/marvin/skills/work"
51
+ "./plugins/babel-fish/skills/audio",
52
+ "./plugins/babel-fish/skills/image",
53
+ "./plugins/babel-fish/skills/visualize",
54
+ "./plugins/deep-thought/skills/architect",
55
+ "./plugins/deep-thought/skills/architecture-review",
56
+ "./plugins/deep-thought/skills/craft-skill",
57
+ "./plugins/deep-thought/skills/cto",
58
+ "./plugins/deep-thought/skills/investigate",
59
+ "./plugins/deep-thought/skills/review",
60
+ "./plugins/deep-thought/skills/think",
61
+ "./plugins/guide/skills/capture",
62
+ "./plugins/guide/skills/codex",
63
+ "./plugins/guide/skills/gemini",
64
+ "./plugins/guide/skills/pipeline",
65
+ "./plugins/guide/skills/setup",
66
+ "./plugins/guide/skills/write-post",
67
+ "./plugins/marvin/skills/compound",
68
+ "./plugins/marvin/skills/quick-review",
69
+ "./plugins/marvin/skills/redteam",
70
+ "./plugins/marvin/skills/scaffold",
71
+ "./plugins/marvin/skills/test-writer",
72
+ "./plugins/quellis/skills/coach",
73
+ "./plugins/quellis/skills/goal-checkin",
74
+ "./plugins/quellis/skills/goal-setting",
75
+ "./plugins/quellis/skills/reflect"
55
76
  ]
56
77
  }
57
78
  }
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: capture
3
+ description: Capture what's on your mind — morning intentions or evening reflections — and save a structured daily thought record
4
+ ---
5
+
1
6
  # /guide:capture — Daily Thought Capture
2
7
 
3
8
  > Capture what's on your mind — morning intentions or evening reflections.
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: pipeline
3
+ description: Run the daily content pipeline to fetch signals, analyze relevance, draft output, edit for voice fidelity, and deliver the brief
4
+ ---
5
+
1
6
  # /guide:pipeline — Daily Content Pipeline
2
7
 
3
8
  > "Time is an illusion. Lunchtime doubly so." — But your daily brief runs on schedule.
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: setup
3
+ description: Configure the Guide content pipeline by creating or updating content/config.yaml, sources, themes, and voice profile settings
4
+ ---
5
+
1
6
  # /guide:setup — Configure Your Content Pipeline
2
7
 
3
8
  > "Would it save you a lot of time if I just gave up and went mad now?"