Install
openclaw skills install qwen-orchestratorQwen Chat (chat.qwen.ai) access via Puppeteer browser automation with CDP interceptor. Persistent daemon (~35ms startup), health checks, graceful shutdown, PM2 management. Configurable via `.qwen.json`. Use when: (1) need Qwen responses without API key, (2) code analysis, review, or generation, (3) text analysis, summarization, translation, (4) web search via Qwen's built-in search, (5) "consult Qwen" or ask-qwen.sh.
openclaw skills install qwen-orchestratorWhat this is: Browser automation that talks to Qwen Chat via Puppeteer.
Default runtime policy: before sending a prompt, qwen-orchestrator must switch the Qwen model selector to Qwen3.6-Max-Preview and then switch the Qwen mode selector to thinking mode when those selectors are available.
What this is NOT: A general AI router or multi-model orchestrator. It's one browser → one LLM.
Working directory rule: Unless a command here uses an absolute path, run qwen-orchestrator commands from the skill root: ~/.openclaw/workspace/skills/qwen-orchestrator.
If you are not already there, run:
cd ~/.openclaw/workspace/skills/qwen-orchestrator
# Simple question
ask-qwen.sh "What is HTTP?"
# Session (keeps context between questions)
ask-qwen.sh "Explain OAuth2" --session work
ask-qwen.sh "What about OpenID Connect?" --session work
ask-qwen.sh --session work --end-session
# With daemon (fast startup ~35ms vs ~15s cold)
ask-qwen.sh "Question" --daemon
# With web search
ask-qwen.sh "Latest news about AI" --search
# Pipe content
cat code.py | ask-qwen.sh "Find bugs"
ask-qwen.sh --stdin < code.py
ask-qwen.sh <<'EOF'
Long multi-line prompt here
EOF
--daemonask-qwen.sh --dry-run --daemon--session NAMEagent-browser, not qwen-orchestrator| Task | qwen-orchestrator | Direct API | Manual browser |
|---|---|---|---|
| Code analysis / review | ✅ Fast, no API key | Needs API | ❌ Slow |
| Text analysis / summary | ✅ (with --daemon) | Needs API | ❌ Tedious |
| Web search via Qwen | ✅ (with --search) | Needs API | ❌ |
| Brainstorming | ❌ (Dual Thinking) | Needs API | ❌ |
| Web scraping | ❌ Wrong tool | ❌ | ✅ |
Rule: Need LLM reasoning without API key → qwen-orchestrator.
Need browser tasks (scrape, click, fill forms) → use agent-browser skill instead.
Session continuity: in daemon mode, follow-up requests using --session NAME must restore the exact saved Qwen chatUrl for that session unless --new-chat was explicitly requested. Reusing an arbitrary open Qwen tab is incorrect because it breaks multi-round review continuity.
Follow-up continuity invariant: after restoring an existing session chat, the next prompt send must remain bound to that same chat unless --new-chat was explicitly requested. Before follow-up submit, qwen-orchestrator should prefer the cheapest safe continuity check first: navigate to the saved chatUrl only if the current tab is not already bound to that chat, wait for the composer on that exact chat, and require hydrated follow-up chat state rather than a shell-only page before submitting. Hydration readiness now means visible prior history, not just URL + composer presence. If the restored page is still shell-only, qwen-orchestrator must use exact-URL hard rebind rather than sidebar title activation, because duplicate chat titles can bind to the wrong conversation. Submit should stay bound to the composer/send control for that chat, not a page-global Enter fallback unless no safer path exists. If submit still jumps to /c/new-chat or a different chat id, treat it as a continuity failure; do not silently accept or persist the new chat as the session state.
| Flag | Purpose |
|---|---|
--session NAME | Persistent context across requests |
--daemon | Use running Chrome daemon (~35ms startup) |
--search | Enable Qwen web search |
--new-chat | Start new chat within existing session |
--end-session | Close and clean up session |
--visible | Open visible browser (for auth/CAPTCHA fixes) |
--wait | Wait for manual auth completion (with --visible) |
--close | Force close browser after request |
--dry-run | Test auth + composer without sending prompt |
--stdin | Explicitly read prompt body from stdin |
--debug | Verbose debug output |
--verbose | More detailed logs |
-h, --help | Show help |
# 1. Daemon running?
pm2 status | grep -q "qwen-daemon.*online" || echo "Daemon down"
# 2. Dry-run path works?
ask-qwen.sh --dry-run --daemon || echo "Qwen dry-run failed"
# 3. Real response path works?
ask-qwen.sh "OK" --daemon | grep -q "OK" || echo "Qwen not responding"
| If you see this symptom | Run this exact command | Then verify with |
|---|---|---|
Connection refused, daemon not online | pm2 restart qwen-daemon && sleep 8 && ask-qwen.sh --dry-run --daemon | ask-qwen.sh "Say OK" --daemon |
auth expired, CAPTCHA, login page | cd ~/.openclaw/workspace/skills/qwen-orchestrator && pm2 stop qwen-daemon && rm -f .daemon-ws-endpoint && bash ask-qwen.sh --visible --wait --dry-run && pm2 start qwen-daemon | bash ask-qwen.sh --dry-run --daemon |
| response cuts off | ask-qwen.sh "Part 1" --session temp && ask-qwen.sh "Continue" --session temp | ask-qwen.sh --session temp --end-session |
lock, Singleton, profile already in use | cd ~/.openclaw/workspace/skills/qwen-orchestrator && rm -f .profile/Singleton* && pm2 restart qwen-daemon | bash ask-qwen.sh --dry-run |
| selector not found | ask-qwen.sh --dry-run --visible | only after manual inspection consider selector edits |
| Symptom | Exact command | Verify |
|---|---|---|
| daemon offline / connection refused | pm2 restart qwen-daemon && sleep 8 && ask-qwen.sh --dry-run --daemon | ask-qwen.sh "Say OK" --daemon |
| auth expired / login page / CAPTCHA | cd ~/.openclaw/workspace/skills/qwen-orchestrator && pm2 stop qwen-daemon && rm -f .daemon-ws-endpoint && bash ask-qwen.sh --visible --wait --dry-run && pm2 start qwen-daemon | bash ask-qwen.sh --dry-run --daemon |
| profile lock / Singleton files | cd ~/.openclaw/workspace/skills/qwen-orchestrator && rm -f .profile/Singleton* && pm2 restart qwen-daemon | bash ask-qwen.sh --dry-run |
| follow-up continuity looks wrong | ask-qwen.sh --session NAME "Repeat the last answer in one sentence" --daemon | confirm the saved session stays on the same chat URL and does not submit from a shell-only restored page |
cd ~/.openclaw/workspace/skills/qwen-orchestrator && bash scripts/setup-daemon.sh
| Code | Meaning |
|---|---|
| 0 | Success — response received |
| 1 | Config/arg error or generic runtime failure |
| 2 | Qwen/daemon unavailable |
| 3 | Follow-up continuity failure |
0 → success, response printed to stdout1 → fatal config/arg error or generic unrecoverable runtime failure2 → Qwen/daemon unavailable; restart or repair daemon connectivity before retrying3 → follow-up continuity failure; the stored chat binding was not preserved safely--session NAME + --daemon, qwen-orchestrator keeps the saved chatUrl unless --new-chat was explicitly requested.qwen-daemon is active.These warnings may still return exit code 0 if a response was produced:
If the task depends on deep reasoning or web search specifically, treat these warnings as a signal to retry with --visible or manually verify mode state.
--session and continuation prompts for large outputs.QWEN_SUBMIT_BLOCKED_OVERSIZE_PROMPT if delivery never succeeds.3 occurs, end the affected session and start it fresh instead of silently trusting the new chat.# Exit 2: Qwen/daemon unavailable
pm2 restart qwen-daemon && sleep 8
bash ask-qwen.sh --dry-run --daemon
# Exit 3: continuity failure
bash ask-qwen.sh --session NAME --end-session
bash ask-qwen.sh "your prompt" --session NAME --daemon
Session state in .sessions/<name>.json is trusted internal state.
ask-qwen.sh.{
"browserLaunchTimeout": 30000,
"answerTimeout": 600000,
"composerTimeout": 10000,
"navigationTimeout": 30000,
"idleTimeout": 15000,
"heartbeatInterval": 15000,
"domErrorIdleMs": 25000,
"rateLimitMs": 5000,
"maxContinueRounds": 30,
"preferredModel": "Qwen3.6-Max-Preview",
"logToFile": true,
"logPath": ".logs/qwen.log"
}
rateLimitMs: client-side delay between prompt sends. Helps avoid accidental rapid-fire requests against Qwen. Set to 0 to disable.preferredModel: model name that qwen-orchestrator should force before each prompt. Default: Qwen3.6-Max-Preview.--daemon--session NAME--new-chat--end-sessionQwen3.6-Max-Preview (or .qwen.json.preferredModel) if the selector exists; warn if it cannot be confirmed--visible --wait --dry-run--dry-run--session + chunkqwen-daemon is running, prefer --daemon; local mode currently must not run concurrently against the same Chromium profileagent-browser, not qwen-orchestrator--session NAME; do not silently switch to a different open Qwen tabREFERENCE.md. Purpose: debug failures.