@evalops/maestro 0.10.47 → 0.10.48
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 +4 -0
- package/dist/audit/logger.d.ts +1 -1
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +2 -0
- package/dist/cli/args.js.map +1 -1
- package/dist/cli/commands/update.d.ts +12 -0
- package/dist/cli/commands/update.d.ts.map +1 -0
- package/dist/cli/commands/update.js +148 -0
- package/dist/cli/commands/update.js.map +1 -0
- package/dist/cli/help.d.ts.map +1 -1
- package/dist/cli/help.js +4 -0
- package/dist/cli/help.js.map +1 -1
- package/dist/cli-tui/commands/command-catalog.js +2 -2
- package/dist/cli-tui/commands/command-catalog.js.map +1 -1
- package/dist/cli-tui/commands/subcommands/ui-commands.d.ts +1 -1
- package/dist/cli-tui/commands/subcommands/ui-commands.js +2 -2
- package/dist/cli-tui/commands/subcommands/ui-commands.js.map +1 -1
- package/dist/cli-tui/footer.d.ts.map +1 -1
- package/dist/cli-tui/footer.js +1 -1
- package/dist/cli-tui/footer.js.map +1 -1
- package/dist/cli-tui/tui-renderer/ui-state-controller.d.ts +1 -1
- package/dist/cli-tui/tui-renderer/ui-state-controller.d.ts.map +1 -1
- package/dist/cli-tui/tui-renderer/ui-state-controller.js +5 -11
- package/dist/cli-tui/tui-renderer/ui-state-controller.js.map +1 -1
- package/dist/cli-tui/tui-renderer.d.ts.map +1 -1
- package/dist/cli-tui/tui-renderer.js +1 -1
- package/dist/cli-tui/tui-renderer.js.map +1 -1
- package/dist/cli-tui/ui-state.js +1 -1
- package/dist/cli-tui/ui-state.js.map +1 -1
- package/dist/cli-tui/utils/footer-utils.d.ts +1 -1
- package/dist/cli-tui/utils/footer-utils.d.ts.map +1 -1
- package/dist/cli-tui/utils/footer-utils.js.map +1 -1
- package/dist/cli.js +4072 -3450
- package/dist/cli.js.map +1 -1
- package/dist/codex/app-server-client.d.ts +8 -0
- package/dist/codex/app-server-client.d.ts.map +1 -1
- package/dist/codex/app-server-client.js +49 -3
- package/dist/codex/app-server-client.js.map +1 -1
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +5 -0
- package/dist/main.js.map +1 -1
- package/dist/models/config-loader.d.ts +13 -13
- package/dist/node_modules/@evalops/contracts/dist/scenario.d.ts +2 -0
- package/dist/node_modules/@evalops/contracts/dist/scenario.d.ts.map +1 -1
- package/dist/node_modules/@evalops/contracts/dist/scenario.js.map +1 -1
- package/dist/node_modules/@evalops/contracts/package.json +1 -1
- package/dist/node_modules/@evalops/tui/package.json +1 -1
- package/dist/platform/operating-plane-client.d.ts +3 -3
- package/dist/platform/operating-plane-client.d.ts.map +1 -1
- package/dist/platform/operating-plane-client.js.map +1 -1
- package/dist/platform/operating-plane-summary.js +3 -6
- package/dist/platform/operating-plane-summary.js.map +1 -1
- package/dist/server/agent-trajectory-scenarios.d.ts.map +1 -1
- package/dist/server/agent-trajectory-scenarios.js +29 -6
- package/dist/server/agent-trajectory-scenarios.js.map +1 -1
- package/dist/server/handlers/ui.d.ts.map +1 -1
- package/dist/server/handlers/ui.js +5 -5
- package/dist/server/handlers/ui.js.map +1 -1
- package/dist/server/stores/ui-store.d.ts.map +1 -1
- package/dist/server/stores/ui-store.js +8 -1
- package/dist/server/stores/ui-store.js.map +1 -1
- package/dist/tools/background/task-types.d.ts +1 -1
- package/dist/update/check.d.ts +2 -0
- package/dist/update/check.d.ts.map +1 -1
- package/dist/update/check.js +100 -41
- package/dist/update/check.js.map +1 -1
- package/dist/update/startup-refresh.d.ts +56 -0
- package/dist/update/startup-refresh.d.ts.map +1 -0
- package/dist/update/startup-refresh.js +321 -0
- package/dist/update/startup-refresh.js.map +1 -0
- package/dist/version.json +2 -2
- package/package.json +297 -296
package/package.json
CHANGED
|
@@ -1,298 +1,299 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
2
|
+
"name": "@evalops/maestro",
|
|
3
|
+
"description": "Maestro by EvalOps - Deterministic coding agent with TUI/CLI and Web UI for AI-assisted development",
|
|
4
|
+
"version": "0.10.48",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"workspaces": [
|
|
8
|
+
"packages/*"
|
|
9
|
+
],
|
|
10
|
+
"bin": {
|
|
11
|
+
"maestro": "dist/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"main": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"skills"
|
|
18
|
+
],
|
|
19
|
+
"maestroRuntimeWorkspaces": [
|
|
20
|
+
"@evalops/contracts",
|
|
21
|
+
"@evalops/tui"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"clean": "node ./scripts/clean-paths.js dist ./tmp/tsbuildinfo/composer.tsbuildinfo",
|
|
25
|
+
"prepare": "husky",
|
|
26
|
+
"postinstall": "node -e \"const fs=require('node:fs');const cp=require('node:child_process');if(!fs.existsSync('./scripts/ensure-deps.js')||!fs.existsSync('./packages/contracts/package.json'))process.exit(0);const r=cp.spawnSync(process.execPath,['./scripts/ensure-deps.js','--no-install'],{stdio:'inherit'});process.exit(r.status??1);\"",
|
|
27
|
+
"install:local": "node ./scripts/install-client.js",
|
|
28
|
+
"prebuild": "node ./scripts/ensure-deps.js && node ./scripts/session-wire-format-codegen.mjs && node ./scripts/headless-protocol-codegen.mjs && bun run generate:headless-proto:buf",
|
|
29
|
+
"build": "node ./scripts/ensure-dir.js ./tmp/tsbuildinfo && tsc -b tsconfig.build.json --force && bun build ./src/cli.ts --target node --packages external --external tree-sitter --external tree-sitter-bash --outfile dist/cli.js && node ./scripts/bundle-runtime-deps.mjs && node ./scripts/copy-themes.js && node ./scripts/copy-db-migrations.js",
|
|
30
|
+
"start": "node --enable-source-maps dist/cli.js",
|
|
31
|
+
"start:native": "MAESTRO_AGENT_SCRIPT=\"$(pwd)/dist/cli.js\" ./packages/tui-rs/target/release/maestro-tui",
|
|
32
|
+
"dev": "node ./scripts/headless-protocol-codegen.mjs && bun run generate:headless-proto:buf && node ./scripts/ensure-dir.js ./tmp/tsbuildinfo && tsc -b tsconfig.build.json --watch --preserveWatchOutput",
|
|
33
|
+
"dev:all": "concurrently --names \"cli,test\" --prefix-colors \"cyan,yellow\" \"npm run dev\" \"npm run test:watch\"",
|
|
34
|
+
"test:watch": "node ./scripts/run-vitest.js --watch",
|
|
35
|
+
"test:fast": "VITEST_FAST=1 node ./scripts/run-vitest.js --run",
|
|
36
|
+
"lint": "biome check . && npm run lint:evals",
|
|
37
|
+
"setup:worktree": "node scripts/setup-worktree.mjs",
|
|
38
|
+
"check:headless-proto:generated": "node scripts/check-headless-proto-generated.mjs",
|
|
39
|
+
"verify:headless-proto:sync": "node scripts/verify-headless-proto-sync.mjs",
|
|
40
|
+
"lint:headless-proto": "buf lint && bun run verify:headless-proto:sync && bun run check:headless-proto:generated",
|
|
41
|
+
"check:drift-surfaces": "node scripts/check-drift-prone-surfaces.mjs",
|
|
42
|
+
"check:staged-rollout": "node scripts/check-staged-rollout.mjs",
|
|
43
|
+
"check:context-manifest": "tsx scripts/check-context-manifest-contract.ts",
|
|
44
|
+
"check:session-wire-contract": "tsx scripts/check-session-wire-contract.ts",
|
|
45
|
+
"check:cli-runtime-conformance": "tsx scripts/check-cli-runtime-conformance.ts",
|
|
46
|
+
"check:rpc-protocol-conformance": "tsx scripts/check-rpc-protocol-conformance.ts",
|
|
47
|
+
"check:session-replay-fixtures": "tsx scripts/check-session-replay-fixtures.ts",
|
|
48
|
+
"check:agent-trajectory-fixtures": "tsx scripts/check-agent-trajectory-fixtures.ts",
|
|
49
|
+
"check:agent-trajectory-replay-fixtures": "tsx scripts/check-agent-trajectory-replay-fixtures.ts",
|
|
50
|
+
"check:agent-trajectory-score-fixtures": "tsx scripts/check-agent-trajectory-score-fixtures.ts",
|
|
51
|
+
"check:agent-trajectory-inspection-fixtures": "tsx scripts/check-agent-trajectory-inspection-fixtures.ts",
|
|
52
|
+
"check:agent-trajectory-scenario-fixtures": "tsx scripts/check-agent-trajectory-scenario-fixtures.ts",
|
|
53
|
+
"check:slack-teammate-runtime-scenarios": "tsx scripts/check-slack-teammate-runtime-scenarios.ts",
|
|
54
|
+
"check:scripted-scenario-fixtures": "tsx scripts/check-scripted-scenario-fixtures.ts",
|
|
55
|
+
"check:evidence-integrity": "tsx scripts/check-evidence-integrity.ts",
|
|
56
|
+
"check:maestro-release-gate-events": "tsx scripts/check-maestro-release-gate-events.ts",
|
|
57
|
+
"check:scenario-replay-gate": "node scripts/run-scenario-replay-gate.mjs",
|
|
58
|
+
"check:codex-parity": "node scripts/check-codex-parity-conformance.mjs",
|
|
59
|
+
"check:codex-operating-layer": "node scripts/check-codex-operating-layer-conformance.mjs",
|
|
60
|
+
"check:platform-runtime-conformance": "node scripts/check-platform-runtime-conformance.mjs",
|
|
61
|
+
"check:release-surface": "node scripts/check-release-surface-conformance.mjs",
|
|
62
|
+
"lint:evals": "bun run lint:headless-proto && node scripts/ensure-deps.js --no-install --workspace @evalops/contracts && node scripts/verify-evals.js && node scripts/verify-tool-versions.js && node scripts/validate-system-paths.js && node scripts/validate-package-boundaries.js && node scripts/validate-public-package-deps.js && node scripts/check-public-surface-boundary.mjs && npm run check:context-manifest && npm run check:session-wire-contract && npm run check:cli-runtime-conformance && npm run check:rpc-protocol-conformance && npm run check:evidence-integrity && npm run check:maestro-release-gate-events && npm run check:session-replay-fixtures && npm run check:agent-trajectory-fixtures && npm run check:agent-trajectory-replay-fixtures && npm run check:agent-trajectory-score-fixtures && npm run check:agent-trajectory-inspection-fixtures && npm run check:agent-trajectory-scenario-fixtures && npm run check:slack-teammate-runtime-scenarios && npm run check:scripted-scenario-fixtures && node scripts/session-wire-format-codegen.mjs --check && node scripts/headless-protocol-codegen.mjs --check && npm run check:app-server-schema && npm run check:drift-surfaces && npm run check:staged-rollout && npm run check:codex-parity && npm run check:codex-operating-layer && npm run check:platform-runtime-conformance && npm run check:release-surface && npm run developer-surface:check",
|
|
63
|
+
"platform:sdk-smoke": "tsx scripts/check-platform-sdk-contract.ts",
|
|
64
|
+
"platform:agentruntime-e2e": "tsx scripts/smoke-platform-agentruntime-lifecycle.ts",
|
|
65
|
+
"platform:timeline-e2e": "tsx scripts/smoke-platform-timeline-e2e.ts",
|
|
66
|
+
"platform:a2a-delegation-live": "tsx scripts/smoke-platform-a2a-delegation-live.ts",
|
|
67
|
+
"platform:a2a-evidence-verify": "tsx scripts/verify-platform-a2a-live-evidence.ts",
|
|
68
|
+
"developer-surface:check": "node scripts/check-developer-surface.mjs",
|
|
69
|
+
"format": "biome format .",
|
|
70
|
+
"check": "npm run lint && npm run check --workspaces --if-present && tsc -p tsconfig.build.json --noEmit",
|
|
71
|
+
"evals": "npm run build && node scripts/run-evals.js",
|
|
72
|
+
"evals:skill-package": "bunx tsx scripts/evals/run-skill-package-evals.ts",
|
|
73
|
+
"evals:pipeline-tool-integration": "bun run build && bunx tsx scripts/evals/run-pipeline-tool-integration-evals.ts",
|
|
74
|
+
"evals:shared-memory-integration": "bun run build && bunx tsx scripts/evals/run-shared-memory-integration-evals.ts",
|
|
75
|
+
"evals:platform-fermata-scenario-suite": "bun run build && bunx tsx scripts/evals/run-platform-fermata-scenario-suite.ts",
|
|
76
|
+
"evals:openrouter-live-smoke": "bun run build && bunx tsx scripts/evals/run-openrouter-live-smoke.ts",
|
|
77
|
+
"evals:openrouter-approvals-judge": "bun run build && bunx tsx scripts/evals/run-openrouter-approvals-judge-evals.ts",
|
|
78
|
+
"evals:openrouter-tool-surface-judge": "bun run build && bunx tsx scripts/evals/run-openrouter-tool-surface-judge-evals.ts",
|
|
79
|
+
"telemetry:report": "node scripts/telemetry-report.js",
|
|
80
|
+
"device-identity:harness": "MAESTRO_DEVICE_IDENTITY_ALLOW_TEST_HELPER=1 node ./scripts/run-vitest.js --run test/oauth-device-identity-harness.test.ts",
|
|
81
|
+
"generate-models": "bun scripts/generate-models.ts",
|
|
82
|
+
"generate:headless-protocol": "node scripts/headless-protocol-codegen.mjs",
|
|
83
|
+
"generate:app-server-schema": "tsx scripts/app-server-schema-codegen.ts",
|
|
84
|
+
"check:app-server-schema": "tsx scripts/app-server-schema-codegen.ts --check",
|
|
85
|
+
"generate:session-wire-format": "node scripts/session-wire-format-codegen.mjs",
|
|
86
|
+
"check:session-wire-format:generated": "node scripts/session-wire-format-codegen.mjs --check",
|
|
87
|
+
"generate:headless-proto:buf": "buf generate --template buf.gen.yaml && bunx biome check --write --unsafe packages/contracts/src/proto/maestro/v1/headless_pb.ts",
|
|
88
|
+
"test": "node ./scripts/run-vitest.js --run",
|
|
89
|
+
"test:coverage": "node ./scripts/run-vitest.js --run --coverage",
|
|
90
|
+
"prepublishOnly": "npm run clean && npm run build && npm run verify:runtime-deps",
|
|
91
|
+
"bun:install": "bun install",
|
|
92
|
+
"bun:cli": "bun run ./src/cli.ts",
|
|
93
|
+
"bun:watch": "bun run --watch ./src/cli.ts",
|
|
94
|
+
"web": "node dist/web-server.js",
|
|
95
|
+
"web:rust-control": "packages/control-plane-rs/target/release/maestro-control-plane",
|
|
96
|
+
"web:dev": "node ./scripts/ensure-deps.js --workspace @evalops/contracts && concurrently --names \"server,ui\" --prefix-colors \"blue,green\" \"tsx --watch src/web-server.ts\" \"bun run dev:web\"",
|
|
97
|
+
"web:dev:local": "MAESTRO_WEB_REQUIRE_KEY=0 MAESTRO_WEB_REQUIRE_REDIS=0 MAESTRO_WEB_ORIGIN=http://localhost:3000 npm run web:dev",
|
|
98
|
+
"bun:lint": "bunx biome check . && bun run lint:evals",
|
|
99
|
+
"bun:test": "node ./scripts/run-vitest.js --run",
|
|
100
|
+
"bun:test:fast": "VITEST_FAST=1 node ./scripts/run-vitest.js --run",
|
|
101
|
+
"bun:check": "bun run bun:lint && bunx tsc -p tsconfig.build.json --noEmit",
|
|
102
|
+
"bun:compile": "npm run build && bun build ./dist/cli.js --compile --external tree-sitter --external tree-sitter-bash --outfile dist/maestro-bun",
|
|
103
|
+
"bun:compile:bytecode": "npm run build && bun build ./dist/cli.js --compile --bytecode --external tree-sitter --external tree-sitter-bash --outfile dist/maestro-bun-bytecode",
|
|
104
|
+
"bun:evals": "bun run build && bun run ./scripts/run-evals.js",
|
|
105
|
+
"compile:binary": "npm run bun:compile && echo \"Binary ready at dist/maestro-bun\"",
|
|
106
|
+
"cli": "node ./dist/cli.js",
|
|
107
|
+
"verify-build": "bun scripts/verify-build.ts",
|
|
108
|
+
"verify-build:packages": "VERIFY_PACKAGES=1 bun scripts/verify-build.ts",
|
|
109
|
+
"release:check": "node scripts/release-readiness.js release",
|
|
110
|
+
"release:check:ci": "node scripts/release-readiness.js ci",
|
|
111
|
+
"ci:plan": "node scripts/plan-ci-checks.mjs",
|
|
112
|
+
"pr:ready": "node scripts/pr-ready-to-merge.mjs",
|
|
113
|
+
"pr:feedback": "node scripts/pr-feedback-audit.mjs",
|
|
114
|
+
"verify:runtime-deps": "node scripts/check-runtime-deps.js && node scripts/check-docker-runtime-workspaces.mjs && node scripts/check-packed-bundled-workspaces.mjs",
|
|
115
|
+
"tui": "npm run cli",
|
|
116
|
+
"verify": "npm run format && npm run lint && npm run test && npm run build && npm run smoke && npm run telemetry:report",
|
|
117
|
+
"smoke": "node scripts/smoke-cli.js",
|
|
118
|
+
"smoke:local-e2e": "node scripts/smoke-cli.js",
|
|
119
|
+
"smoke:codex-app-server-live": "node scripts/smoke-codex-app-server-live.mjs",
|
|
120
|
+
"smoke:fathom-cua-mcp": "tsx scripts/smoke-fathom-cua-mcp.ts",
|
|
121
|
+
"smoke:event-bus": "tsx scripts/smoke-maestro-event-bus.ts",
|
|
122
|
+
"smoke:a2a-local": "tsx scripts/smoke-maestro-a2a-local.ts",
|
|
123
|
+
"smoke:a2a-local-swarm": "tsx scripts/smoke-maestro-a2a-local-swarm.ts",
|
|
124
|
+
"smoke:a2a-input-required": "tsx scripts/smoke-maestro-a2a-input-required.ts",
|
|
125
|
+
"smoke:a2a-tmux": "bash scripts/smoke-maestro-a2a-tmux.sh",
|
|
126
|
+
"a2a": "tsx src/cli.ts a2a",
|
|
127
|
+
"a2a:codex-bridge": "python3 scripts/codex-a2a-bridge.py",
|
|
128
|
+
"a2a:peer": "tsx src/cli.ts a2a",
|
|
129
|
+
"smoke:headless": "node scripts/smoke-headless.js",
|
|
130
|
+
"smoke:exec-replay-e2e": "node scripts/smoke-exec-replay-e2e.js",
|
|
131
|
+
"headless:responsiveness": "node scripts/headless-responsiveness-harness.js",
|
|
132
|
+
"smoke:pack": "node scripts/smoke-packed-cli.js",
|
|
133
|
+
"metadata:sync": "node scripts/sync-package-metadata.js",
|
|
134
|
+
"metadata:check": "node scripts/sync-package-metadata.js --check",
|
|
135
|
+
"cutover:check": "node scripts/check-package-cutover-readiness.js",
|
|
136
|
+
"factory:import": "npm run build && node dist/scripts/import-factory-config.js",
|
|
137
|
+
"factory:export": "npm run build && node dist/scripts/export-factory-config.js",
|
|
138
|
+
"version:patch": "node scripts/version.js patch",
|
|
139
|
+
"version:minor": "node scripts/version.js minor",
|
|
140
|
+
"version:major": "node scripts/version.js major",
|
|
141
|
+
"version:sync": "node scripts/sync-versions.js",
|
|
142
|
+
"openapi:generate": "bun scripts/generate-openapi.ts",
|
|
143
|
+
"openapi:check": "bun scripts/generate-openapi.ts --check",
|
|
144
|
+
"openapi:serve": "bun scripts/serve-openapi.ts",
|
|
145
|
+
"nix:update-hash": "bash scripts/update-nix-hash.sh",
|
|
146
|
+
"dev:web": "bun run --filter @evalops/maestro-web dev",
|
|
147
|
+
"dev:tui": "bun run --filter @evalops/tui dev",
|
|
148
|
+
"dev:packages": "concurrently --names \"tui,web\" --prefix-colors \"magenta,green\" \"bun run dev:tui\" \"bun run dev:web\"",
|
|
149
|
+
"guardian": "bash scripts/guardian.sh",
|
|
150
|
+
"guardian:install-hook": "node scripts/install-guardian-hook.js",
|
|
151
|
+
"build:all": "bun run --filter @evalops/contracts build && bun run --filter @evalops/consumer build && bun run --filter @evalops/tui build && bun run --filter @evalops/maestro-web build && bun run build && bun run --filter @evalops/ai build",
|
|
152
|
+
"test:all": "npm run test && npm run test --workspaces --if-present",
|
|
153
|
+
"db:generate": "MAESTRO_DATABASE_TYPE=postgres drizzle-kit generate",
|
|
154
|
+
"db:migrate": "bun run src/db/migrate.ts",
|
|
155
|
+
"db:migrate:status": "bun run -e \"import('./src/db/migrate.js').then(m => m.getMigrationStatus()).then(console.log)\"",
|
|
156
|
+
"db:studio": "drizzle-kit studio",
|
|
157
|
+
"db:seed": "bun run src/db/seed.ts",
|
|
158
|
+
"db:check": "bun run src/db/check.ts",
|
|
159
|
+
"vscode:build": "npx nx run vscode-extension:build",
|
|
160
|
+
"vscode:package": "npx nx run vscode-extension:package",
|
|
161
|
+
"vscode:publish": "npx nx run vscode-extension:publish",
|
|
162
|
+
"tui-rs:build": "cd packages/tui-rs && cargo build --release",
|
|
163
|
+
"control-plane-rs:build": "cd packages/control-plane-rs && cargo build --release --bin maestro-control-plane",
|
|
164
|
+
"control-plane-rs:check": "cd packages/control-plane-rs && cargo check --bin maestro-control-plane",
|
|
165
|
+
"rust:harness": "bash scripts/rust-local-harness.sh",
|
|
166
|
+
"tui-rs:build:debug": "cd packages/tui-rs && cargo build",
|
|
167
|
+
"tui-rs:check": "cd packages/tui-rs && cargo check",
|
|
168
|
+
"tui-rs:test": "cd packages/tui-rs && cargo test",
|
|
169
|
+
"release:verify:published": "node scripts/smoke-registry-install.js",
|
|
170
|
+
"release:verify:published:e2e": "node scripts/smoke-published-replay-e2e.js",
|
|
171
|
+
"release:verify:published:evidence": "node scripts/verify-published-replay-evidence.js",
|
|
172
|
+
"release:deprecate": "node scripts/deprecate-release.js"
|
|
173
|
+
},
|
|
174
|
+
"dependencies": {
|
|
175
|
+
"@aws-sdk/client-bedrock-runtime": "^3.1020.0",
|
|
176
|
+
"@bufbuild/protobuf": "^2.11.0",
|
|
177
|
+
"@crosscopy/clipboard": "^0.2.8",
|
|
178
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
179
|
+
"@openai/codex": "^0.135.0",
|
|
180
|
+
"@opentelemetry/api": "^1.9.1",
|
|
181
|
+
"@opentelemetry/auto-instrumentations-node": "^0.76.0",
|
|
182
|
+
"@opentelemetry/resources": "^2.7.1",
|
|
183
|
+
"@opentelemetry/sdk-node": "0.218.0",
|
|
184
|
+
"@opentelemetry/semantic-conventions": "^1.41.1",
|
|
185
|
+
"@sentry/node": "^10.53.1",
|
|
186
|
+
"@sinclair/typebox": "^0.34.49",
|
|
187
|
+
"ajv": "^8.18.0",
|
|
188
|
+
"ajv-formats": "^3.0.1",
|
|
189
|
+
"bcrypt": "^6.0.0",
|
|
190
|
+
"chalk": "^5.6.2",
|
|
191
|
+
"clipboardy": "^4.0.0",
|
|
192
|
+
"diff": "^8.0.4",
|
|
193
|
+
"dotenv": "^16.6.1",
|
|
194
|
+
"drizzle-orm": "0.45.2",
|
|
195
|
+
"exceljs": "^4.4.0",
|
|
196
|
+
"fflate": "^0.8.2",
|
|
197
|
+
"glob": "^13.0.6",
|
|
198
|
+
"ioredis": "^5.10.1",
|
|
199
|
+
"jiti": "^2.6.1",
|
|
200
|
+
"jose": "^6.2.2",
|
|
201
|
+
"js-yaml": "^4.1.1",
|
|
202
|
+
"jsonc-parser": "^3.3.1",
|
|
203
|
+
"jsonwebtoken": "^9.0.3",
|
|
204
|
+
"jszip": "^3.10.1",
|
|
205
|
+
"luxon": "^3.7.2",
|
|
206
|
+
"mammoth": "^1.12.0",
|
|
207
|
+
"marked": "^17.0.5",
|
|
208
|
+
"mime-types": "^3.0.2",
|
|
209
|
+
"minimatch": "^10.2.5",
|
|
210
|
+
"nats": "^2.29.3",
|
|
211
|
+
"openai": "^6.33.0",
|
|
212
|
+
"otplib": "^13.4.0",
|
|
213
|
+
"partial-json": "^0.1.7",
|
|
214
|
+
"pdf-parse": "^2.4.5",
|
|
215
|
+
"postgres": "^3.4.8",
|
|
216
|
+
"smol-toml": "^1.6.1",
|
|
217
|
+
"string-width": "^8.2.0",
|
|
218
|
+
"uuid": "^14.0.0",
|
|
219
|
+
"vscode-jsonrpc": "^8.2.1",
|
|
220
|
+
"ws": "^8.20.0",
|
|
221
|
+
"yaml": "^2.8.3",
|
|
222
|
+
"zod": "^4.3.6",
|
|
223
|
+
"zod-validation-error": "^5.0.0"
|
|
224
|
+
},
|
|
225
|
+
"devDependencies": {
|
|
226
|
+
"@bufbuild/buf": "^1.67.0",
|
|
227
|
+
"@bufbuild/protoc-gen-es": "2.12.0",
|
|
228
|
+
"@biomejs/biome": "^1.9.4",
|
|
229
|
+
"@google/genai": "^1.50.1",
|
|
230
|
+
"@smithy/types": "^4.13.1",
|
|
231
|
+
"@types/bcrypt": "^6.0.0",
|
|
232
|
+
"@types/diff": "^7.0.2",
|
|
233
|
+
"@types/js-yaml": "^4.0.9",
|
|
234
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
235
|
+
"@types/luxon": "^3.7.1",
|
|
236
|
+
"@types/mime-types": "^3.0.1",
|
|
237
|
+
"@types/node": "^24.12.0",
|
|
238
|
+
"@types/pdf-parse": "^1.1.5",
|
|
239
|
+
"@types/uuid": "^11.0.0",
|
|
240
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
241
|
+
"concurrently": "^9.2.1",
|
|
242
|
+
"drizzle-kit": "1.0.0-beta.21",
|
|
243
|
+
"esbuild": "^0.27.4",
|
|
244
|
+
"fast-check": "^4.6.0",
|
|
245
|
+
"google-auth-library": "^10.6.2",
|
|
246
|
+
"husky": "^9.1.7",
|
|
247
|
+
"nx": "22.6.5",
|
|
248
|
+
"tsx": "^4.21.0",
|
|
249
|
+
"typescript": "^5.9.3",
|
|
250
|
+
"vitest": "^4.1.2"
|
|
251
|
+
},
|
|
252
|
+
"keywords": [
|
|
253
|
+
"maestro",
|
|
254
|
+
"evalops",
|
|
255
|
+
"ai",
|
|
256
|
+
"llm",
|
|
257
|
+
"cli",
|
|
258
|
+
"tui",
|
|
259
|
+
"agent"
|
|
260
|
+
],
|
|
261
|
+
"author": "EvalOps",
|
|
262
|
+
"license": "BUSL-1.1",
|
|
263
|
+
"maestro": {
|
|
264
|
+
"canonicalPackageName": "@evalops/maestro",
|
|
265
|
+
"packageAliases": [
|
|
266
|
+
"@evalops/maestro",
|
|
267
|
+
"@evalops-jh/maestro"
|
|
268
|
+
]
|
|
269
|
+
},
|
|
270
|
+
"repository": {
|
|
271
|
+
"type": "git",
|
|
272
|
+
"url": "git+https://github.com/evalops/maestro.git"
|
|
273
|
+
},
|
|
274
|
+
"engines": {
|
|
275
|
+
"node": ">=20.0.0",
|
|
276
|
+
"bun": ">=1.1.0"
|
|
277
|
+
},
|
|
278
|
+
"overrides": {
|
|
279
|
+
"jws": ">=4.0.1",
|
|
280
|
+
"rollup": ">=4.59.0",
|
|
281
|
+
"koa": ">=2.16.4",
|
|
282
|
+
"axios": ">=1.15.0",
|
|
283
|
+
"follow-redirects": ">=1.16.0",
|
|
284
|
+
"@isaacs/brace-expansion": ">=5.0.1",
|
|
285
|
+
"picomatch": ">=4.0.4",
|
|
286
|
+
"qs": ">=6.14.2"
|
|
287
|
+
},
|
|
288
|
+
"optionalDependencies": {
|
|
289
|
+
"sharp": "0.34.5",
|
|
290
|
+
"tree-sitter": "^0.25.0",
|
|
291
|
+
"tree-sitter-bash": "^0.25.1"
|
|
292
|
+
},
|
|
293
|
+
"packageManager": "bun@1.3.6",
|
|
294
|
+
"trustedDependencies": [
|
|
295
|
+
"electron",
|
|
296
|
+
"tree-sitter",
|
|
297
|
+
"tree-sitter-bash"
|
|
298
|
+
]
|
|
298
299
|
}
|