You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implements support for Qwen Code CLI (Alibaba's AI coding agent optimized for
Qwen3-Coder models) as a new tool option in agent-commander.
Key features:
- Stream JSON format with --output-format stream-json for real-time NDJSON streaming
- Auto-approval mode with --yolo flag (enabled by default for autonomous execution)
- Session management with --resume and --continue options
- Context options: --all-files and --include-directories
- Partial messages support with --include-partial-messages
- Model aliases: qwen3-coder, coder, gpt-4o
Files changed:
- js/src/tools/qwen.mjs: New tool configuration
- js/src/tools/index.mjs: Tool registry update
- js/test/tools.test.mjs: 23 new tests for Qwen tool
- README.md: Documentation and examples
- js/.changeset/add-qwen-coder-support.md: Changeset for release
Fixes#11
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+31-4Lines changed: 31 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# agent-commander
2
2
3
-
A JavaScript library to control agents enclosed in CLI commands like Anthropic Claude Code CLI, OpenAI Codex, OpenCode, and @link-assistant/agent.
3
+
A JavaScript library to control agents enclosed in CLI commands like Anthropic Claude Code CLI, OpenAI Codex, OpenCode, Qwen Code, and @link-assistant/agent.
4
4
5
5
Built on the success of [hive-mind](https://github.com/link-assistant/hive-mind), `agent-commander` provides a flexible JavaScript interface and CLI tools for managing agent processes with various isolation levels.
6
6
@@ -11,6 +11,7 @@ Built on the success of [hive-mind](https://github.com/link-assistant/hive-mind)
11
11
-`claude` - Anthropic Claude Code CLI
12
12
-`codex` - OpenAI Codex CLI
13
13
-`opencode` - OpenCode CLI
14
+
-`qwen` - Qwen Code CLI (Alibaba's AI coding agent)
0 commit comments