Merge remote-tracking branch 'origin/master' into feat/plan-mode

# Conflicts:
#	docs/config-catalog.md
#	docs/cordis-catalog/services.md
#	docs/event-producer-consumer.md
#	docs/module-graph.md
#	packages/README.md
#	packages/bash/tool-bash/src/index.ts
#	packages/core/tools/tests/gen-tool-catalog.spec.ts
#	pnpm-lock.yaml
#	scripts/doc-budgets.manifest.json
This commit is contained in:
Tianyi Cui
2026-07-17 21:22:16 +08:00
357 changed files with 18449 additions and 2870 deletions

View File

@@ -722,7 +722,13 @@ class FakeSandboxExecutor extends BashExecutor {
}
resolve(request: BashExecRequest): BashExecSpec {
return { command: request.command, workdir: '/w', timeoutMs: 1000, sandboxMode: request.sandboxMode }
return {
command: request.command,
workdir: '/w',
timeoutMs: 1000,
stdoutMaxBytes: request.stdoutMaxBytes ?? 1000,
sandboxMode: request.sandboxMode,
}
}
run(_spec: BashExecSpec): Promise<BashRunResult> {