Skip to content

Commit 817c04d

Browse files
chore: sync public mirror from internal
1 parent e9efb25 commit 817c04d

460 files changed

Lines changed: 62462 additions & 2025 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bun.lockb

5.2 KB
Binary file not shown.

evals/tools/surface-smoke-cases.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,12 @@
110110
}
111111
},
112112
{
113-
"name": "extract_document reads a local smoke fixture",
113+
"name": "extract_document blocks a local smoke fixture",
114114
"kind": "extractDocument",
115-
"judgeRubric": "extract_document should preserve the text payload, recognize the text format, and report the downloaded filename.",
115+
"judgeRubric": "extract_document should reject private or local document URLs instead of downloading them.",
116116
"expected": {
117-
"text": "Maestro extract document smoke test",
118-
"format": "text",
119-
"fileName": "fixture.txt"
117+
"blocked": true,
118+
"message": "Blocked document URL host: private or local address"
120119
}
121120
},
122121
{

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,12 @@
5858
"check:workflow-footguns": "node scripts/check-workflow-footguns.mjs",
5959
"check:test-skip-hygiene": "node scripts/check-test-skip-hygiene.mjs",
6060
"check:test-timing-wait-hygiene": "node scripts/check-test-timing-wait-hygiene.mjs",
61+
"check:atomic-write-hygiene": "node scripts/check-atomic-write-hygiene.mjs",
6162
"check:codex-parity": "node scripts/check-codex-parity-conformance.mjs",
6263
"check:codex-operating-layer": "node scripts/check-codex-operating-layer-conformance.mjs",
6364
"check:platform-runtime-conformance": "node scripts/check-platform-runtime-conformance.mjs",
6465
"check:release-surface": "node scripts/check-release-surface-conformance.mjs",
65-
"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:workflow-footguns && npm run check:test-skip-hygiene && npm run check:test-timing-wait-hygiene && 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",
66+
"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:workflow-footguns && npm run check:test-skip-hygiene && npm run check:test-timing-wait-hygiene && npm run check:atomic-write-hygiene && 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",
6667
"platform:sdk-smoke": "tsx scripts/check-platform-sdk-contract.ts",
6768
"platform:agentruntime-e2e": "tsx scripts/smoke-platform-agentruntime-lifecycle.ts",
6869
"platform:timeline-e2e": "tsx scripts/smoke-platform-timeline-e2e.ts",
@@ -182,6 +183,7 @@
182183
"@bufbuild/protobuf": "^2.11.0",
183184
"@crosscopy/clipboard": "^0.2.8",
184185
"@modelcontextprotocol/sdk": "^1.29.0",
186+
"@napi-rs/keyring": "^1.3.0",
185187
"@openai/codex": "^0.135.0",
186188
"@opentelemetry/api": "^1.9.1",
187189
"@opentelemetry/auto-instrumentations-node": "^0.76.0",
@@ -221,6 +223,7 @@
221223
"postgres": "^3.4.8",
222224
"smol-toml": "^1.6.1",
223225
"string-width": "^8.2.0",
226+
"undici": "^7.25.0",
224227
"uuid": "^14.0.0",
225228
"vscode-jsonrpc": "^8.2.1",
226229
"ws": "^8.20.0",

0 commit comments

Comments
 (0)