@harness-mix/cli 0.2.0 → 0.2.2
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/CHANGELOG.md +17 -0
- package/NOTICE +14 -0
- package/README.md +4 -24
- package/docs/multi-agent-collaboration.md +1 -1
- package/licenses/anthropic-codex-theme-MIT.txt +21 -0
- package/licenses/codex-dream-skin-MIT.txt +21 -0
- package/output/native-build/renderer-extension.js +703 -58
- package/package.json +192 -189
- package/scripts/collaboration-test.cjs +262 -200
- package/scripts/collaboration-ui-smoke.cjs +85 -77
- package/scripts/core-concurrency-test.cjs +23 -1
- package/scripts/e2e-pi-cancel.cjs +99 -0
- package/scripts/native-file-change-test.cjs +42 -2
- package/scripts/native-sidebar-test.cjs +8 -0
- package/scripts/native-vendor-adapters-test.cjs +67 -1
- package/scripts/pets-test.cjs +63 -0
- package/scripts/pi-cancel-race-test.cjs +102 -0
- package/scripts/stuck-turn-test.cjs +73 -0
- package/scripts/workspace-test.cjs +9 -0
- package/src/assets/skins/dream-skin/NOTICE.md +13 -0
- package/src/assets/skins/dream-skin/themes/gothic-void-crusade/hero.webp +0 -0
- package/src/assets/skins/dream-skin/themes/gothic-void-crusade/theme.json +34 -0
- package/src/main/adapters/claude.js +9 -6
- package/src/main/adapters/pi-family.js +41 -8
- package/src/main/harness-adapter/event-normalizer.js +270 -258
- package/src/main/host/collaboration-mcp.cjs +8 -1
- package/src/main/host/collaboration-tools.js +1 -1
- package/src/main/host/collaboration.js +81 -11
- package/src/main/host/runtime.js +1462 -1341
- package/src/main/native/pets.js +79 -2
- package/src/main/native/protocol.js +1164 -1145
- package/src/main/native/thread-list.js +6 -1
- package/src/main/workspace/core-review.js +75 -0
- package/src/main/workspace/diff.js +5 -1
- package/src/main/workspace/file-changes.js +9 -4
- package/src/main/workspace/review-controller.js +115 -102
- package/src/main/workspace/review.js +90 -88
- package/src/native-ui/renderer-extension/dist/contract-audit.js +16637 -0
- package/src/native-ui/renderer-extension/dist/index.js +34853 -0
- package/src/native-ui/renderer-extension/dist/production.js +34263 -0
- package/src/native-ui/renderer-extension/dist/renderer-binding-probe.js +34254 -0
- package/src/native-ui/renderer-extension/dist/types/renderer-binding-probe.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/renderer-model-client.d.ts +11 -0
- package/src/native-ui/renderer-extension/dist/types/renderer-model-client.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/renderer-pet-switcher.d.ts +73 -0
- package/src/native-ui/renderer-extension/dist/types/renderer-pet-switcher.d.ts.map +1 -0
- package/src/native-ui/renderer-extension/dist/types/renderer-settings-lifecycle.d.ts +1 -0
- package/src/native-ui/renderer-extension/dist/types/renderer-settings-lifecycle.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/renderer-team-cards.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/collaboration-page.d.ts +12 -0
- package/src/native-ui/renderer-extension/dist/types/settings/collaboration-page.d.ts.map +1 -0
- package/src/native-ui/renderer-extension/dist/types/settings/icons.d.ts +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/icons.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/localization.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/pages.d.ts +5 -3
- package/src/native-ui/renderer-extension/dist/types/settings/pages.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/pet-market.d.ts +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/pet-market.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/pets-client.d.ts +9 -0
- package/src/native-ui/renderer-extension/dist/types/settings/pets-client.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/skin-runtime.d.ts +1 -1
- package/src/native-ui/renderer-extension/dist/types/settings/skin-runtime.d.ts.map +1 -1
- package/src/native-ui/renderer-extension/dist/types/tsconfig.tsbuildinfo +1 -1
- package/src/native-ui/renderer-extension/src/renderer-binding-probe.ts +3181 -3171
- package/src/native-ui/renderer-extension/src/renderer-model-client.ts +14 -0
- package/src/native-ui/renderer-extension/src/renderer-pet-switcher.ts +308 -0
- package/src/native-ui/renderer-extension/src/renderer-settings-lifecycle.ts +2 -0
- package/src/native-ui/renderer-extension/src/renderer-team-cards.ts +76 -21
- package/src/native-ui/renderer-extension/src/settings/collaboration-page.ts +139 -0
- package/src/native-ui/renderer-extension/src/settings/icons.ts +155 -153
- package/src/native-ui/renderer-extension/src/settings/localization.ts +785 -783
- package/src/native-ui/renderer-extension/src/settings/pages.ts +694 -681
- package/src/native-ui/renderer-extension/src/settings/pet-market.css +110 -1
- package/src/native-ui/renderer-extension/src/settings/pet-market.ts +276 -22
- package/src/native-ui/renderer-extension/src/settings/pets-client.ts +32 -0
- package/src/native-ui/renderer-extension/src/settings/shell.css +2294 -2255
- package/src/native-ui/renderer-extension/src/settings/skin-runtime.ts +51 -1
- package/src/native-ui/renderer-extension/test/renderer-model-client.test.ts +2 -0
- package/src/native-ui/renderer-extension/test/renderer-pet-switcher.test.ts +400 -0
- package/src/native-ui/renderer-extension/test/settings/localization.test.ts +80 -79
- package/src/native-ui/renderer-extension/test/settings/pet-market.test.ts +378 -0
- package/src/native-ui/renderer-extension/test/settings/pets-client.test.ts +83 -0
- package/src/native-ui/renderer-extension/test/settings/shell.test.ts +3 -0
- package/src/native-ui/renderer-extension/test/settings/skin-runtime.test.ts +15 -1
package/package.json
CHANGED
|
@@ -1,189 +1,192 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@harness-mix/cli",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"license": "(Apache-2.0 OR MIT)",
|
|
5
|
-
"description": "Harness Mix native Codex UI bridge for Codex, Pi, Claude Code, DeepSeek Harness, Antigravity, CodeBuddy, Kiro CLI, Cursor CLI and other native coding harnesses.",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"codex",
|
|
8
|
-
"codex-desktop",
|
|
9
|
-
"coding-agent",
|
|
10
|
-
"harness",
|
|
11
|
-
"pi",
|
|
12
|
-
"claude-code",
|
|
13
|
-
"deepseek",
|
|
14
|
-
"antigravity",
|
|
15
|
-
"codebuddy",
|
|
16
|
-
"kiro",
|
|
17
|
-
"cursor",
|
|
18
|
-
"qoder",
|
|
19
|
-
"zcode",
|
|
20
|
-
"trae",
|
|
21
|
-
"ai"
|
|
22
|
-
],
|
|
23
|
-
"homepage": "https://github.com/emo-xiaoyu/harness-mix#readme",
|
|
24
|
-
"bugs": "https://github.com/emo-xiaoyu/harness-mix/issues",
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "git+https://github.com/emo-xiaoyu/harness-mix.git"
|
|
28
|
-
},
|
|
29
|
-
"bin": {
|
|
30
|
-
"harness-mix": "scripts/launch-codex.cjs"
|
|
31
|
-
},
|
|
32
|
-
"publishConfig": {
|
|
33
|
-
"access": "public",
|
|
34
|
-
"registry": "https://registry.npmjs.org"
|
|
35
|
-
},
|
|
36
|
-
"postinstall": "node scripts/install-native.cjs",
|
|
37
|
-
"files": [
|
|
38
|
-
"CHANGELOG.md",
|
|
39
|
-
"src",
|
|
40
|
-
"scripts",
|
|
41
|
-
"config",
|
|
42
|
-
"docs",
|
|
43
|
-
"licenses",
|
|
44
|
-
"NOTICE",
|
|
45
|
-
"Start-Codex.cmd",
|
|
46
|
-
"output/native-build/harness-mix-shim.exe",
|
|
47
|
-
"output/native-build/harness-mix-appx.exe",
|
|
48
|
-
"output/native-build/harness-mix-secret.exe",
|
|
49
|
-
"output/native-build/desktop-controller.mjs",
|
|
50
|
-
"output/native-build/renderer-extension.js",
|
|
51
|
-
"!src/main/native/rs/target",
|
|
52
|
-
"!**/*.log",
|
|
53
|
-
"output/native-build/harness-mix-shim"
|
|
54
|
-
],
|
|
55
|
-
"os": [
|
|
56
|
-
"win32",
|
|
57
|
-
"darwin",
|
|
58
|
-
"linux"
|
|
59
|
-
],
|
|
60
|
-
"cpu": [
|
|
61
|
-
"x64",
|
|
62
|
-
"arm64"
|
|
63
|
-
],
|
|
64
|
-
"workspaces": [
|
|
65
|
-
"src/native-ui/shared-contracts",
|
|
66
|
-
"src/native-ui/desktop-control",
|
|
67
|
-
"src/native-ui/renderer-extension"
|
|
68
|
-
],
|
|
69
|
-
"engines": {
|
|
70
|
-
"node": ">=22.19.0 <23 || >=24 <25"
|
|
71
|
-
},
|
|
72
|
-
"scripts": {
|
|
73
|
-
"test:integrations": "node scripts/integrations-test.cjs",
|
|
74
|
-
"smoke:integrations-ui": "electron scripts/integrations-ui-smoke.cjs",
|
|
75
|
-
"e2e:integrations": "node scripts/e2e-integrations.cjs",
|
|
76
|
-
"health:harnesses": "node scripts/harness-health-check.cjs",
|
|
77
|
-
"test:dsh-collaboration-acp": "node scripts/dsh-collaboration-acp-test.cjs",
|
|
78
|
-
"test:codebuddy-migration": "node scripts/codebuddy-migration-test.cjs",
|
|
79
|
-
"e2e:native-acp": "node scripts/e2e-native-acp.cjs --live",
|
|
80
|
-
"test:native-acp-depth": "node scripts/native-acp-depth-test.cjs",
|
|
81
|
-
"test:kiro-cursor": "node scripts/kiro-cursor-adapters-test.cjs",
|
|
82
|
-
"test:docs": "node scripts/docs-command-test.cjs",
|
|
83
|
-
"typecheck:native-ui": "tsc -b src/native-ui/shared-contracts/tsconfig.json src/native-ui/desktop-control/tsconfig.json src/native-ui/renderer-extension/tsconfig.json --pretty false",
|
|
84
|
-
"test:native-ui": "vitest run --config vitest.config.mjs",
|
|
85
|
-
"test:ci": "npm run test:docs && npm run check && npm run typecheck:native-ui && npm run test:native-ui && npm run test:core-all && npm run test:native-protocol && npm run test:native-compatibility && npm run test:platform && npm run test:pets",
|
|
86
|
-
"test:pets": "node scripts/pets-test.cjs",
|
|
87
|
-
"test:storage-verification": "node scripts/storage-verification-test.cjs",
|
|
88
|
-
"test:collaboration": "node scripts/collaboration-test.cjs",
|
|
89
|
-
"test:switch-harness": "node scripts/switch-harness-test.cjs",
|
|
90
|
-
"smoke:collaboration-ui": "electron scripts/collaboration-ui-smoke.cjs",
|
|
91
|
-
"smoke:chatgpt-context-ui": "electron scripts/chatgpt-context-ui-smoke.cjs",
|
|
92
|
-
"e2e:collaboration": "node scripts/e2e-collaboration.cjs",
|
|
93
|
-
"test:native-rollback": "node scripts/native-rollback-test.cjs",
|
|
94
|
-
"test:native-images": "node scripts/native-images-test.cjs",
|
|
95
|
-
"build:native": "node scripts/build-native.cjs",
|
|
96
|
-
"test:native-protocol": "node scripts/native-protocol-test.cjs",
|
|
97
|
-
"test:native-sidebar": "node scripts/native-sidebar-test.cjs",
|
|
98
|
-
"smoke:native-ui": "electron scripts/native-ui-smoke.cjs",
|
|
99
|
-
"start": "node scripts/launch-codex.cjs",
|
|
100
|
-
"prepublishOnly": "npm run check && npm run test:core-all && npm run build:native",
|
|
101
|
-
"check:native": "node scripts/launch-codex.cjs --check",
|
|
102
|
-
"test:native-config": "node scripts/native-config-test.cjs",
|
|
103
|
-
"test:native-compatibility": "node scripts/native-compatibility-test.cjs",
|
|
104
|
-
"e2e:native": "node scripts/e2e-native-host.cjs",
|
|
105
|
-
"e2e:native:codex": "node scripts/e2e-native-host.cjs --live-codex",
|
|
106
|
-
"e2e:native:pi": "node scripts/e2e-native-host.cjs --live --harness=pi",
|
|
107
|
-
"e2e:native:dsh": "node scripts/e2e-native-host.cjs --live --harness=deepseek-harness",
|
|
108
|
-
"e2e:native:claude": "node scripts/e2e-native-host.cjs --live --harness=claude-code",
|
|
109
|
-
"start:codex": "node scripts/launch-codex.cjs",
|
|
110
|
-
"check": "node scripts/check.cjs",
|
|
111
|
-
"test:contracts": "node scripts/contracts-test.cjs",
|
|
112
|
-
"test:projector": "node scripts/projector-test.cjs",
|
|
113
|
-
"test:turn": "node scripts/turn-manager-test.cjs",
|
|
114
|
-
"test:sequence": "node scripts/sequence-test.cjs",
|
|
115
|
-
"test:shadow": "node scripts/shadow-test.cjs",
|
|
116
|
-
"test:arch": "node scripts/architecture-test.cjs",
|
|
117
|
-
"test:core-replay": "node scripts/core-replay-test.cjs",
|
|
118
|
-
"test:adapters": "node scripts/adapters-test.cjs",
|
|
119
|
-
"test:dsh-adapter": "node scripts/dsh-adapter-test.cjs",
|
|
120
|
-
"test:codex-adapter": "node scripts/codex-adapter-test.cjs",
|
|
121
|
-
"test:antigravity-adapter": "node scripts/antigravity-adapter-test.cjs",
|
|
122
|
-
"test:openclaw-adapter": "node scripts/openclaw-adapter-test.cjs",
|
|
123
|
-
"test:core-concurrency": "node scripts/core-concurrency-test.cjs",
|
|
124
|
-
"test:thread-title": "node scripts/thread-title-test.cjs",
|
|
125
|
-
"test:handoff": "node scripts/handoff-checkpoint-test.cjs && node scripts/switch-harness-test.cjs",
|
|
126
|
-
"test:core-all": "node scripts/contracts-test.cjs && node scripts/projector-test.cjs && node scripts/turn-manager-test.cjs && node scripts/sequence-test.cjs && node scripts/shadow-test.cjs && node scripts/architecture-test.cjs && node scripts/adapters-test.cjs && node scripts/dsh-adapter-test.cjs && node scripts/codex-adapter-test.cjs && node scripts/codex-accounts-test.cjs && node scripts/antigravity-adapter-test.cjs && node scripts/openclaw-adapter-test.cjs && node scripts/core-replay-test.cjs && node scripts/determinism-test.cjs && node scripts/core-runtime-test.cjs && node scripts/core-services-test.cjs && node scripts/native-file-change-test.cjs && node scripts/native-updater-test.cjs && node scripts/native-update-apply-test.cjs && node scripts/native-vendor-adapters-test.cjs && node scripts/core-concurrency-test.cjs && node scripts/concurrency-layers-test.cjs && node scripts/tool-concurrency-regression-test.cjs && node scripts/handoff-checkpoint-test.cjs && node scripts/switch-harness-test.cjs && node scripts/native-acp-depth-test.cjs && node scripts/thread-title-test.cjs && node scripts/native-job-object-test.cjs && node scripts/integrations-test.cjs && node scripts/storage-verification-test.cjs",
|
|
127
|
-
"test:codex-accounts": "node scripts/codex-accounts-test.cjs",
|
|
128
|
-
"smoke:codex-accounts-ui": "electron scripts/codex-accounts-ui-smoke.cjs",
|
|
129
|
-
"test:transcript": "node scripts/transcript-test.cjs",
|
|
130
|
-
"test:workspace": "node scripts/workspace-test.cjs",
|
|
131
|
-
"e2e:pi": "node scripts/e2e-pi.cjs",
|
|
132
|
-
"e2e:
|
|
133
|
-
"e2e:shadow-
|
|
134
|
-
"e2e:shadow-
|
|
135
|
-
"e2e:dsh": "node scripts/e2e-
|
|
136
|
-
"e2e:
|
|
137
|
-
"e2e:openclaw
|
|
138
|
-
"e2e:
|
|
139
|
-
"e2e:
|
|
140
|
-
"
|
|
141
|
-
"test:
|
|
142
|
-
"
|
|
143
|
-
"e2e:core-
|
|
144
|
-
"e2e:core-
|
|
145
|
-
"e2e:core-
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"e2e:
|
|
149
|
-
"e2e:commands-
|
|
150
|
-
"
|
|
151
|
-
"test:
|
|
152
|
-
"test:
|
|
153
|
-
"
|
|
154
|
-
"e2e:
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"test:native-
|
|
158
|
-
"test:native-
|
|
159
|
-
"test:native-
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
"test:
|
|
163
|
-
"test:
|
|
164
|
-
"test:
|
|
165
|
-
"test:
|
|
166
|
-
"
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
"
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
"
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
"@harness-mix/native-
|
|
186
|
-
"@harness-mix/native-
|
|
187
|
-
"@harness-mix/native-
|
|
188
|
-
|
|
189
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@harness-mix/cli",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"license": "(Apache-2.0 OR MIT)",
|
|
5
|
+
"description": "Harness Mix native Codex UI bridge for Codex, Pi, Claude Code, DeepSeek Harness, Antigravity, CodeBuddy, Kiro CLI, Cursor CLI and other native coding harnesses.",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"codex",
|
|
8
|
+
"codex-desktop",
|
|
9
|
+
"coding-agent",
|
|
10
|
+
"harness",
|
|
11
|
+
"pi",
|
|
12
|
+
"claude-code",
|
|
13
|
+
"deepseek",
|
|
14
|
+
"antigravity",
|
|
15
|
+
"codebuddy",
|
|
16
|
+
"kiro",
|
|
17
|
+
"cursor",
|
|
18
|
+
"qoder",
|
|
19
|
+
"zcode",
|
|
20
|
+
"trae",
|
|
21
|
+
"ai"
|
|
22
|
+
],
|
|
23
|
+
"homepage": "https://github.com/emo-xiaoyu/harness-mix#readme",
|
|
24
|
+
"bugs": "https://github.com/emo-xiaoyu/harness-mix/issues",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/emo-xiaoyu/harness-mix.git"
|
|
28
|
+
},
|
|
29
|
+
"bin": {
|
|
30
|
+
"harness-mix": "scripts/launch-codex.cjs"
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public",
|
|
34
|
+
"registry": "https://registry.npmjs.org"
|
|
35
|
+
},
|
|
36
|
+
"postinstall": "node scripts/install-native.cjs",
|
|
37
|
+
"files": [
|
|
38
|
+
"CHANGELOG.md",
|
|
39
|
+
"src",
|
|
40
|
+
"scripts",
|
|
41
|
+
"config",
|
|
42
|
+
"docs",
|
|
43
|
+
"licenses",
|
|
44
|
+
"NOTICE",
|
|
45
|
+
"Start-Codex.cmd",
|
|
46
|
+
"output/native-build/harness-mix-shim.exe",
|
|
47
|
+
"output/native-build/harness-mix-appx.exe",
|
|
48
|
+
"output/native-build/harness-mix-secret.exe",
|
|
49
|
+
"output/native-build/desktop-controller.mjs",
|
|
50
|
+
"output/native-build/renderer-extension.js",
|
|
51
|
+
"!src/main/native/rs/target",
|
|
52
|
+
"!**/*.log",
|
|
53
|
+
"output/native-build/harness-mix-shim"
|
|
54
|
+
],
|
|
55
|
+
"os": [
|
|
56
|
+
"win32",
|
|
57
|
+
"darwin",
|
|
58
|
+
"linux"
|
|
59
|
+
],
|
|
60
|
+
"cpu": [
|
|
61
|
+
"x64",
|
|
62
|
+
"arm64"
|
|
63
|
+
],
|
|
64
|
+
"workspaces": [
|
|
65
|
+
"src/native-ui/shared-contracts",
|
|
66
|
+
"src/native-ui/desktop-control",
|
|
67
|
+
"src/native-ui/renderer-extension"
|
|
68
|
+
],
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=22.19.0 <23 || >=24 <25"
|
|
71
|
+
},
|
|
72
|
+
"scripts": {
|
|
73
|
+
"test:integrations": "node scripts/integrations-test.cjs",
|
|
74
|
+
"smoke:integrations-ui": "electron scripts/integrations-ui-smoke.cjs",
|
|
75
|
+
"e2e:integrations": "node scripts/e2e-integrations.cjs",
|
|
76
|
+
"health:harnesses": "node scripts/harness-health-check.cjs",
|
|
77
|
+
"test:dsh-collaboration-acp": "node scripts/dsh-collaboration-acp-test.cjs",
|
|
78
|
+
"test:codebuddy-migration": "node scripts/codebuddy-migration-test.cjs",
|
|
79
|
+
"e2e:native-acp": "node scripts/e2e-native-acp.cjs --live",
|
|
80
|
+
"test:native-acp-depth": "node scripts/native-acp-depth-test.cjs",
|
|
81
|
+
"test:kiro-cursor": "node scripts/kiro-cursor-adapters-test.cjs",
|
|
82
|
+
"test:docs": "node scripts/docs-command-test.cjs",
|
|
83
|
+
"typecheck:native-ui": "tsc -b src/native-ui/shared-contracts/tsconfig.json src/native-ui/desktop-control/tsconfig.json src/native-ui/renderer-extension/tsconfig.json --pretty false",
|
|
84
|
+
"test:native-ui": "vitest run --config vitest.config.mjs",
|
|
85
|
+
"test:ci": "npm run test:docs && npm run check && npm run typecheck:native-ui && npm run test:native-ui && npm run test:core-all && npm run test:native-protocol && npm run test:native-compatibility && npm run test:platform && npm run test:pets",
|
|
86
|
+
"test:pets": "node scripts/pets-test.cjs",
|
|
87
|
+
"test:storage-verification": "node scripts/storage-verification-test.cjs",
|
|
88
|
+
"test:collaboration": "node scripts/collaboration-test.cjs",
|
|
89
|
+
"test:switch-harness": "node scripts/switch-harness-test.cjs",
|
|
90
|
+
"smoke:collaboration-ui": "electron scripts/collaboration-ui-smoke.cjs",
|
|
91
|
+
"smoke:chatgpt-context-ui": "electron scripts/chatgpt-context-ui-smoke.cjs",
|
|
92
|
+
"e2e:collaboration": "node scripts/e2e-collaboration.cjs",
|
|
93
|
+
"test:native-rollback": "node scripts/native-rollback-test.cjs",
|
|
94
|
+
"test:native-images": "node scripts/native-images-test.cjs",
|
|
95
|
+
"build:native": "node scripts/build-native.cjs",
|
|
96
|
+
"test:native-protocol": "node scripts/native-protocol-test.cjs",
|
|
97
|
+
"test:native-sidebar": "node scripts/native-sidebar-test.cjs",
|
|
98
|
+
"smoke:native-ui": "electron scripts/native-ui-smoke.cjs",
|
|
99
|
+
"start": "node scripts/launch-codex.cjs",
|
|
100
|
+
"prepublishOnly": "npm run check && npm run test:core-all && npm run build:native",
|
|
101
|
+
"check:native": "node scripts/launch-codex.cjs --check",
|
|
102
|
+
"test:native-config": "node scripts/native-config-test.cjs",
|
|
103
|
+
"test:native-compatibility": "node scripts/native-compatibility-test.cjs",
|
|
104
|
+
"e2e:native": "node scripts/e2e-native-host.cjs",
|
|
105
|
+
"e2e:native:codex": "node scripts/e2e-native-host.cjs --live-codex",
|
|
106
|
+
"e2e:native:pi": "node scripts/e2e-native-host.cjs --live --harness=pi",
|
|
107
|
+
"e2e:native:dsh": "node scripts/e2e-native-host.cjs --live --harness=deepseek-harness",
|
|
108
|
+
"e2e:native:claude": "node scripts/e2e-native-host.cjs --live --harness=claude-code",
|
|
109
|
+
"start:codex": "node scripts/launch-codex.cjs",
|
|
110
|
+
"check": "node scripts/check.cjs",
|
|
111
|
+
"test:contracts": "node scripts/contracts-test.cjs",
|
|
112
|
+
"test:projector": "node scripts/projector-test.cjs",
|
|
113
|
+
"test:turn": "node scripts/turn-manager-test.cjs",
|
|
114
|
+
"test:sequence": "node scripts/sequence-test.cjs",
|
|
115
|
+
"test:shadow": "node scripts/shadow-test.cjs",
|
|
116
|
+
"test:arch": "node scripts/architecture-test.cjs",
|
|
117
|
+
"test:core-replay": "node scripts/core-replay-test.cjs",
|
|
118
|
+
"test:adapters": "node scripts/adapters-test.cjs",
|
|
119
|
+
"test:dsh-adapter": "node scripts/dsh-adapter-test.cjs",
|
|
120
|
+
"test:codex-adapter": "node scripts/codex-adapter-test.cjs",
|
|
121
|
+
"test:antigravity-adapter": "node scripts/antigravity-adapter-test.cjs",
|
|
122
|
+
"test:openclaw-adapter": "node scripts/openclaw-adapter-test.cjs",
|
|
123
|
+
"test:core-concurrency": "node scripts/core-concurrency-test.cjs",
|
|
124
|
+
"test:thread-title": "node scripts/thread-title-test.cjs",
|
|
125
|
+
"test:handoff": "node scripts/handoff-checkpoint-test.cjs && node scripts/switch-harness-test.cjs",
|
|
126
|
+
"test:core-all": "node scripts/contracts-test.cjs && node scripts/projector-test.cjs && node scripts/turn-manager-test.cjs && node scripts/sequence-test.cjs && node scripts/shadow-test.cjs && node scripts/architecture-test.cjs && node scripts/adapters-test.cjs && node scripts/dsh-adapter-test.cjs && node scripts/codex-adapter-test.cjs && node scripts/codex-accounts-test.cjs && node scripts/antigravity-adapter-test.cjs && node scripts/openclaw-adapter-test.cjs && node scripts/core-replay-test.cjs && node scripts/determinism-test.cjs && node scripts/core-runtime-test.cjs && node scripts/core-services-test.cjs && node scripts/native-file-change-test.cjs && node scripts/native-updater-test.cjs && node scripts/native-update-apply-test.cjs && node scripts/native-vendor-adapters-test.cjs && node scripts/core-concurrency-test.cjs && node scripts/concurrency-layers-test.cjs && node scripts/tool-concurrency-regression-test.cjs && node scripts/handoff-checkpoint-test.cjs && node scripts/switch-harness-test.cjs && node scripts/native-acp-depth-test.cjs && node scripts/thread-title-test.cjs && node scripts/native-job-object-test.cjs && node scripts/integrations-test.cjs && node scripts/storage-verification-test.cjs && node scripts/stuck-turn-test.cjs && node scripts/pi-cancel-race-test.cjs",
|
|
127
|
+
"test:codex-accounts": "node scripts/codex-accounts-test.cjs",
|
|
128
|
+
"smoke:codex-accounts-ui": "electron scripts/codex-accounts-ui-smoke.cjs",
|
|
129
|
+
"test:transcript": "node scripts/transcript-test.cjs",
|
|
130
|
+
"test:workspace": "node scripts/workspace-test.cjs",
|
|
131
|
+
"e2e:pi": "node scripts/e2e-pi.cjs",
|
|
132
|
+
"e2e:pi-cancel": "node scripts/e2e-pi-cancel.cjs",
|
|
133
|
+
"e2e:shadow-pi": "node scripts/e2e-shadow.cjs pi",
|
|
134
|
+
"e2e:shadow-claude": "node scripts/e2e-shadow.cjs claude",
|
|
135
|
+
"e2e:shadow-dsh": "node scripts/e2e-shadow.cjs dsh",
|
|
136
|
+
"e2e:dsh": "node scripts/e2e-dsh.cjs",
|
|
137
|
+
"e2e:openclaw": "node scripts/e2e-openclaw.cjs",
|
|
138
|
+
"e2e:openclaw:image": "node scripts/e2e-openclaw-image.cjs",
|
|
139
|
+
"e2e:codex": "node scripts/e2e-codex.cjs",
|
|
140
|
+
"e2e:delegate": "node scripts/e2e-delegate.cjs",
|
|
141
|
+
"test:determinism": "node scripts/determinism-test.cjs",
|
|
142
|
+
"test:core-runtime": "node scripts/core-runtime-test.cjs",
|
|
143
|
+
"e2e:core-pi": "node scripts/e2e-core-resume.cjs pi",
|
|
144
|
+
"e2e:core-claude": "node scripts/e2e-core-resume.cjs claude",
|
|
145
|
+
"e2e:core-dsh": "node scripts/e2e-core-resume.cjs dsh",
|
|
146
|
+
"e2e:core-openclaw": "node scripts/e2e-core-resume.cjs openclaw",
|
|
147
|
+
"test:services": "node scripts/core-services-test.cjs",
|
|
148
|
+
"e2e:core-fork": "node scripts/e2e-core-fork.cjs",
|
|
149
|
+
"e2e:commands-pi": "node scripts/e2e-native-commands.cjs pi",
|
|
150
|
+
"e2e:commands-claude": "node scripts/e2e-native-commands.cjs claude",
|
|
151
|
+
"test:core": "npm run test:core-all",
|
|
152
|
+
"test:interactions": "node scripts/core-services-test.cjs",
|
|
153
|
+
"test:native-files": "node scripts/native-file-change-test.cjs",
|
|
154
|
+
"e2e:core-files": "node scripts/e2e-core-files.cjs",
|
|
155
|
+
"e2e:claude": "node scripts/e2e-core-resume.cjs claude",
|
|
156
|
+
"update": "node scripts/launch-codex.cjs --update",
|
|
157
|
+
"test:native-updater": "node scripts/native-updater-test.cjs",
|
|
158
|
+
"test:native-update-apply": "node scripts/native-update-apply-test.cjs",
|
|
159
|
+
"test:native-job-object": "node scripts/native-job-object-test.cjs",
|
|
160
|
+
"test:native-secret": "node scripts/native-secret-test.cjs",
|
|
161
|
+
"diagnostics": "node scripts/diagnostics.cjs",
|
|
162
|
+
"test:native-vendors": "node scripts/native-vendor-adapters-test.cjs",
|
|
163
|
+
"test:collaboration-recovery": "node scripts/collaboration-recovery-test.cjs",
|
|
164
|
+
"test:tool-concurrency": "node scripts/tool-concurrency-regression-test.cjs",
|
|
165
|
+
"test:platform": "node scripts/platform-test.cjs",
|
|
166
|
+
"test:shim": "node scripts/native-shim-test.cjs",
|
|
167
|
+
"publish:native": "node scripts/publish-native-package.cjs",
|
|
168
|
+
"test:stuck-turn": "node scripts/stuck-turn-test.cjs",
|
|
169
|
+
"test:pi-cancel-race": "node scripts/pi-cancel-race-test.cjs"
|
|
170
|
+
},
|
|
171
|
+
"devDependencies": {
|
|
172
|
+
"@types/node": "24.13.3",
|
|
173
|
+
"electron": "^43.3.0",
|
|
174
|
+
"esbuild": "0.28.1",
|
|
175
|
+
"typescript": "6.0.3",
|
|
176
|
+
"vitest": "4.1.10"
|
|
177
|
+
},
|
|
178
|
+
"dependencies": {
|
|
179
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.263",
|
|
180
|
+
"@deepseek-ai/dsh": "0.1.2-rc.1",
|
|
181
|
+
"lucide": "1.28.0",
|
|
182
|
+
"zod": "4.4.3"
|
|
183
|
+
},
|
|
184
|
+
"optionalDependencies": {
|
|
185
|
+
"@harness-mix/native-win32-x64": "0.2.2",
|
|
186
|
+
"@harness-mix/native-win32-arm64": "0.2.2",
|
|
187
|
+
"@harness-mix/native-darwin-x64": "0.2.2",
|
|
188
|
+
"@harness-mix/native-darwin-arm64": "0.2.2",
|
|
189
|
+
"@harness-mix/native-linux-x64": "0.2.2",
|
|
190
|
+
"@harness-mix/native-linux-arm64": "0.2.2"
|
|
191
|
+
}
|
|
192
|
+
}
|