@heart-of-gold/toolkit 0.1.12 → 0.1.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heart-of-gold/toolkit",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
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": {
@@ -13,11 +13,15 @@ This skill is task-based, not review-only. Use `plan` for safe read-only analysi
13
13
 
14
14
  | Model | Best for |
15
15
  | --- | --- |
16
+ | `default` | Anthropic's recommended default for the current account and environment |
16
17
  | `sonnet` | Default recommendation for most coding, review, and analysis tasks |
17
18
  | `opus` | Stronger reasoning for ambiguous, high-stakes, or architecture-heavy work |
18
19
  | `haiku` | Fast, lightweight follow-ups and narrow questions |
20
+ | `opusplan` | Hybrid mode that uses `opus` for planning and `sonnet` for execution |
19
21
 
20
- Default recommendation: `sonnet` for most tasks, `opus` when depth matters more than speed.
22
+ Prefer aliases over hardcoded snapshot names in this skill, because Anthropic documents aliases as the stable Claude Code interface and moves them forward as newer snapshots ship.
23
+
24
+ Default recommendation: `sonnet` for most tasks, `opus` when depth matters more than speed, and `opusplan` when the task naturally alternates between planning and execution.
21
25
 
22
26
  ## Permission Modes
23
27
 
@@ -33,7 +37,7 @@ Choose the permission mode based on what Claude Code needs to do:
33
37
  `plan` is not the general default for this skill. It is only the safe default for bounded read-only tasks.
34
38
 
35
39
  ## Running a Task
36
- 1. Ask the user which model to use (default: `sonnet`) and which permission mode to use when that choice materially affects behavior.
40
+ 1. Ask the user which model alias to use (default: `sonnet`) and which permission mode to use when that choice materially affects behavior.
37
41
  2. Decide whether Claude should receive the artifact directly or discover it itself:
38
42
  - Pass diffs, logs, or file contents via stdin for safe read-only review
39
43
  - Let Claude inspect the working tree when the task requires tool use
package/src/index.ts CHANGED
@@ -7,7 +7,7 @@ import { targetsCommand } from "./commands/targets";
7
7
  const main = defineCommand({
8
8
  meta: {
9
9
  name: "heart-of-gold",
10
- version: "0.1.12",
10
+ version: "0.1.13",
11
11
  description:
12
12
  "Cross-platform installer for Heart of Gold skills — Codex, OpenCode, Pi, Claude Code, and more",
13
13
  },