impulso 0.21.1 → 0.22.0

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
@@ -206,7 +206,7 @@ tokensave init # build the tokensave index (once per repo)
206
206
  ### Maintenance
207
207
 
208
208
  ```bash
209
- ./doctor.sh # health check: binaries, symlinks, configs, MCP
209
+ impulso-hub doctor # health check: binaries, symlinks, configs, MCP
210
210
  ./harnesses/claude/uninstall.sh # reverse the claude install (targeted, safe)
211
211
  ./harnesses/opencode/uninstall.sh # remove the opencode profile
212
212
  ```
@@ -300,7 +300,7 @@ in the `opencode` block only.
300
300
  opencode ships logical aliases, not concrete model IDs. Every agent in the
301
301
  `opencode` block resolves through an `llm/<key>` alias that must be mapped in
302
302
  your opencode provider config — Impulso provides no fallback. An undefined alias
303
- fails at dispatch. `doctor.sh` warns when aliases are active (spec §7).
303
+ fails at dispatch. `impulso-hub doctor` warns when aliases are active (spec §7).
304
304
 
305
305
  | Agent | Shipped alias |
306
306
  | -------------------- | -------------------------- |
@@ -390,7 +390,6 @@ impulso/
390
390
  ├── .mcp.json # tokensave MCP (plugin route + project-local)
391
391
  ├── run_here.sh # boots opencode against this repo
392
392
  ├── run_here_claude.sh # boots Claude Code against this repo
393
- ├── doctor.sh # health checks: binaries, symlinks, configs, MCP
394
393
  ├── opencode/ # self-boot config: opencode.jsonc + AGENTS.md -> shared/ + symlinks
395
394
  ├── claude/ # self-boot config: settings.json + CLAUDE.md + AGENTS.md -> shared/ + symlinks
396
395
  ├── skills/ # harness-agnostic skill files (SKILL.md per dir)
@@ -33,7 +33,7 @@ content, never `rm -rf`'s `~/.claude`:
33
33
  Health check for the whole harness (binaries, symlinks, configs, MCP):
34
34
 
35
35
  ```bash
36
- ./doctor.sh
36
+ impulso-hub doctor
37
37
  ```
38
38
 
39
39
  Launch with the isolated profile:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impulso",
3
- "version": "0.21.1",
3
+ "version": "0.22.0",
4
4
  "description": "Impulso — plugin bundle for opencode and Claude Code: Plannotator skills + Impulso-DirectSpeech (rethemed ex-Caveman). Harness-neutral repo; per-harness glue under harnesses/.",
5
5
  "type": "module",
6
6
  "main": "harnesses/opencode/plugin.js",
@@ -19,7 +19,6 @@
19
19
  "install:claude": "harnesses/claude/install.sh",
20
20
  "uninstall:opencode": "harnesses/opencode/uninstall.sh",
21
21
  "uninstall:claude": "harnesses/claude/uninstall.sh",
22
- "doctor": "./doctor.sh",
23
22
  "sync:commands": "node harnesses/opencode/sync-commands.js && prettier --write commands/",
24
23
  "sync:agents": "node scripts/sync-agents.cjs",
25
24
  "check:canaries": "node scripts/check-canaries.cjs",