mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-28 19:52:02 +00:00
- 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>
27 lines
799 B
JSON
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"]
|
|
}
|