impulso 0.20.20 → 0.20.22
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/harnesses/opencode/bin/darwin-amd64/impulso-hub +0 -0
- package/harnesses/opencode/bin/darwin-arm64/impulso-hub +0 -0
- package/harnesses/opencode/bin/linux-amd64/impulso-hub +0 -0
- package/harnesses/opencode/bin/linux-arm64/impulso-hub +0 -0
- package/harnesses/opencode/plugin.js +2 -0
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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.
|
|
3
|
+
"version": "0.20.22",
|
|
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",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"sync:agents": "node scripts/sync-agents.cjs",
|
|
25
25
|
"check:canaries": "node scripts/check-canaries.cjs",
|
|
26
26
|
"check:hooks": "node scripts/check-hooks-parity.cjs",
|
|
27
|
-
"test": "node shared/tests.cjs && node harnesses/claude/tests.cjs && node harnesses/opencode/tests.js && node scripts/impulso-bench.test.cjs && cd
|
|
27
|
+
"test": "node shared/tests.cjs && node shared/repository-tests.cjs && node harnesses/claude/tests.cjs && node harnesses/opencode/tests.js && node scripts/impulso-bench.test.cjs && cd hub && go test ./...",
|
|
28
28
|
"coverage": "c8 --check-coverage --lines 90 --functions 92 --branches 68 --reporter=text --reporter=text-summary npm test",
|
|
29
29
|
"lint": "eslint shared/ harnesses/",
|
|
30
30
|
"format": "prettier --write .",
|