plugins/conjure/skills/qwen-delegation/SKILL.md
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.
npx skillsauth add athola/claude-night-market qwen-delegationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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).
Skill(conjure:delegation-core) determines Qwen is suitableqwen CLI is installed and configuredInstallation:
# Install Qwen CLI
pip install qwen-cli
# Verify installation
qwen --version
# Check authentication
qwen auth status
# Login if needed
qwen auth login
# Or set API key
export QWEN_API_KEY="your-key"
Verification: Run python --version to verify Python environment.
# Basic file analysis
python ~/conjure/tools/delegation_executor.py qwen "Analyze this code" --files src/main.py
# With specific model
python ~/conjure/tools/delegation_executor.py qwen "Summarize" --files src/**/*.py --model qwen-max
# With output format
python ~/conjure/tools/delegation_executor.py qwen "Extract functions" --files src/main.py --format json
# Basic command
qwen -p "@path/to/file Analyze this code"
# Multiple files
qwen -p "@src/**/*.py Summarize these files"
# Specific model
qwen --model qwen-max -p "..."
qwen -p "..." > delegations/qwen/$(date +%Y%m%d_%H%M%S).md
The shared delegation executor can auto-select the best service:
# Auto-select based on requirements
python ~/conjure/tools/delegation_executor.py auto "Analyze large codebase" \
--files src/**/* --requirement large_context
For Qwen-specific models, CLI options, cost reference,
and troubleshooting, see modules/qwen-specifics.md.
tools
Detect friction signals; graduate patterns into rules. Use for session retrospectives.
testing
Use when you need a diff-derived test plan for an MR — reads the diff, groups changes by area, runs targeted verifications, and proves revert-tests are genuine guards, not dead assertions.
development
Curate the web-capture index. Use when the capture backlog grows, captures sit unprocessed at seedling/pending, or to surface stored research during work.
testing
Probe memory/summary clarity via dual anchor questions: task progress, info gaps. Use when verifying session state or summary before handoff or compression.