impulso 0.20.20 → 0.20.21

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.
@@ -17,6 +17,7 @@ import { registerCommands } from './commands-loader.js';
17
17
  import { ImpulsoDirectSpeechPlugin } from './directspeech/plugin.js';
18
18
  import { ImpulsoOrchestrationPlugin } from './orchestration/index.js';
19
19
  import { ImpulsoSessionNamePlugin } from './session-name/plugin.js';
20
+ import { installHub } from '../../scripts/install-hub.js';
20
21
 
21
22
  const here = path.dirname(fileURLToPath(import.meta.url));
22
23
  const pkgRoot = path.resolve(here, '..', '..');
@@ -46,6 +47,7 @@ function enforceRequiredBinaries() {
46
47
  }
47
48
 
48
49
  export const ImpulsoPlugin = async (ctx) => {
50
+ await installHub({ packageRoot: pkgRoot });
49
51
  enforceRequiredBinaries();
50
52
 
51
53
  const sub = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impulso",
3
- "version": "0.20.20",
3
+ "version": "0.20.21",
4
4
  "description": "Impulso — plugin bundle for opencode and Claude Code: Plannotator skills + Impulso-DirectSpeech (rethemed ex-Caveman) + RTK. Harness-neutral repo; per-harness glue under harnesses/.",
5
5
  "type": "module",
6
6
  "main": "harnesses/opencode/plugin.js",