Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
702999a
docs: add code backend single-repo vendoring design
Dingxingdi Apr 15, 2026
a49ce05
docs: align code real smoke plan with mcp
Dingxingdi Apr 16, 2026
1672c2d
Vendor code backend tools
Dingxingdi Apr 16, 2026
a2c0bd1
Fix vendored tool upstream contracts
Dingxingdi Apr 16, 2026
96dc16e
Rewrite code backend around vendored tools
Dingxingdi Apr 16, 2026
3255926
Make vendored bash tool non-blocking
Dingxingdi Apr 16, 2026
652cf7b
Clean up canceled vendored bash subprocesses
Dingxingdi Apr 16, 2026
255a377
Restore vendored bash text-mode decoding
Dingxingdi Apr 16, 2026
c20cc19
Align code backend schema docs and config tests
Dingxingdi Apr 16, 2026
5d38fda
Add code rollout real smoke gating
Dingxingdi Apr 16, 2026
2d52b29
Fix code real smoke collection gating
Dingxingdi Apr 16, 2026
7937314
Set code real smoke turn budget
Dingxingdi Apr 16, 2026
9be169a
Fix lazy loading for code backend imports
Dingxingdi Apr 16, 2026
3108a59
Adapt code backend smoke test to vendored config
Dingxingdi Apr 16, 2026
b7fc32d
Tighten code backend loader smoke test
Dingxingdi Apr 16, 2026
0a5baac
Restore eager resource exports
Dingxingdi Apr 16, 2026
38adac8
Align MCP tests with eager imports
Dingxingdi Apr 16, 2026
529dcb0
Merge main into code backend vendor tools
Dingxingdi Apr 16, 2026
f5e8ce7
Align MCP test and desktop env requirements with main
Dingxingdi Apr 16, 2026
6876b06
Restore MCP backend test formatting from main
Dingxingdi Apr 16, 2026
c1f6bf6
Fix vendored code bash and grep failures
Dingxingdi Apr 16, 2026
b6d8d7b
Add code backend failure regressions
Dingxingdi Apr 16, 2026
35149a5
Quote interpreter in bash backend test
Dingxingdi Apr 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions configs/sandbox-server/code_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"server": {
"url": "http://127.0.0.1:18890",
"port": 18890,
"session_ttl": 300
},
"resources": {
"code": {
"enabled": true,
"description": "Lightweight coding backend powered by vendored internal tools",
"backend_class": "sandbox.server.backends.resources.code.CodeBackend",
"config": {
"workspace_root": "/tmp/agentflow_code"
}
}
},
"warmup": {
"enabled": false,
"resources": []
}
}
Loading