| name | qwen-delegation |
| description | Delegates tasks to Qwen CLI via delegation-core for Alibaba's models. Use when delegation-core selects Qwen or large-context batch processing is needed. |
| alwaysApply | false |
| category | delegation-implementation |
| tags | ["qwen","cli","delegation","alibaba","large-context"] |
| dependencies | ["delegation-core"] |
| tools | ["qwen-cli","delegation_executor.py"] |
| usage_patterns | ["qwen-cli-integration","large-context-analysis","bulk-processing"] |
| complexity | intermediate |
| model_hint | standard |
| estimated_tokens | 600 |
| progressive_loading | true |
| modules | ["modules/qwen-specifics.md"] |
| references | ["delegation-core/shared-shell-execution.md"] |
Table of Contents
Qwen CLI Delegation
Overview
This skill implements conjure:delegation-core for the Qwen CLI.
It provides Qwen-specific authentication, quota management,
and command construction.
For shared delegation patterns, see Skill(conjure:delegation-core).
When To Use
- After
Skill(conjure:delegation-core) determines Qwen is suitable
- When you need Qwen's large context window (100K+ tokens)
- For batch processing, summarization, or multi-file analysis
- If the
qwen CLI is installed and configured
When NOT To Use
- Choosing which provider to delegate to (use
conjure:delegation-core)
- Gemini was the selected provider (use
conjure:gemini-delegation)
Prerequisites
Installation:
pip install qwen-cli
qwen --version
qwen auth status
qwen auth login
export QWEN_API_KEY="your-key"
Verification: Run python --version to verify Python environment.
Quick Start
Using Shared Delegation Executor
python ~/conjure/tools/delegation_executor.py qwen "Analyze this code" --files src/main.py
python ~/conjure/tools/delegation_executor.py qwen "Summarize" --files src/**/*.py --model qwen-max
python ~/conjure/tools/delegation_executor.py qwen "Extract functions" --files src/main.py --format json