qwen-code/integration-tests/concurrent-runner/examples/toy-config.json
tanzhenxin 3f16948225 feat: remove npm install/build and add keep_worktree option
- Remove npm install and npm run build from worktree initialization
- Remove INITIALIZING status enum and related code
- Add keep_worktree config option (default: false)
- When keep_worktree is true, worktree is preserved for debugging
- Renumber execution steps after removing initialize step

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
2026-01-28 16:43:50 +08:00

27 lines
799 B
JSON

{
"concurrency": 2,
"yolo": true,
"source_repo": "/Users/andy/workspace/projects/qwen-code/integration-tests/concurrent-runner/examples/toy-project",
"worktree_base": "~/.qwen/worktrees",
"outputs_dir": "./examples/test-run",
"results_file": "./examples/test-run/results.json",
"keep_worktree": false,
"tasks": [
{
"id": "task-1",
"name": "Rabbit Counting",
"prompts": [
"Suppose we have 3 rabbits and 4 carrots. How many animals are there?"
]
},
{
"id": "task-2",
"name": "File Writer",
"prompts": [
"Use shell tool to get current date.",
"Create a new file called 'counter.txt' with numbers 1 to 10, each on a new line."
]
}
],
"models": ["qwen3-coder-plus", "claude-sonnet-4-20250514"]
}