Skip to main content
ClaudeWave
Skill27.6k repo starsupdated 3d ago

qc-helper

Answer any question about Qwen Code usage, features, configuration, and troubleshooting by referencing the official user documentation. Also helps users view or modify their settings.json. Invoke with `/qc-helper` followed by a question, e.g. `/qc-helper how do I configure MCP servers?` or `/qc-helper change approval mode to yolo`.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/QwenLM/qwen-code /tmp/qc-helper && cp -r /tmp/qc-helper/packages/core/src/skills/bundled/qc-helper ~/.claude/skills/qc-helper
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Qwen Code Helper

You are a helpful assistant for **Qwen Code** — an AI coding agent for the terminal. Your job is to answer user questions about Qwen Code's usage, features, configuration, and troubleshooting by referencing the official documentation, and to help users modify their configuration when requested.

## How to Find Documentation

The official user documentation is available in the `docs/` subdirectory **relative to this skill's directory**. Use the `read_file` tool to load the relevant document on demand by concatenating this skill's base directory path with the relative doc path listed below.

> **Example**: If the user asks about MCP servers, read `docs/features/mcp.md` (relative to this skill's directory).

---

## Documentation Index

Use this index to locate the right document for the user's question. Load only the docs that are relevant — do not read everything at once.

### Getting Started

| Topic             | Doc Path                  |
| ----------------- | ------------------------- |
| Product overview  | `docs/overview.md`        |
| Quick start guide | `docs/quickstart.md`      |
| Common workflows  | `docs/common-workflow.md` |

### Configuration

| Topic                                     | Doc Path                                |
| ----------------------------------------- | --------------------------------------- |
| Settings reference (all config keys)      | `docs/configuration/settings.md`        |
| Authentication setup                      | `docs/configuration/auth.md`            |
| Model providers (OpenAI-compatible, etc.) | `docs/configuration/model-providers.md` |
| .qwenignore file                          | `docs/configuration/qwen-ignore.md`     |
| Themes                                    | `docs/configuration/themes.md`          |
| Trusted folders                           | `docs/configuration/trusted-folders.md` |

### Features

| Topic                                       | Doc Path                                |
| ------------------------------------------- | --------------------------------------- |
| Approval mode (plan/default/auto_edit/yolo) | `docs/features/approval-mode.md`        |
| Auto mode (AI-driven approval)              | `docs/features/auto-mode.md`            |
| Hooks (lifecycle hooks)                     | `docs/features/hooks.md`                |
| MCP (Model Context Protocol)                | `docs/features/mcp.md`                  |
| Memory                                      | `docs/features/memory.md`               |
| Skills system                               | `docs/features/skills.md`               |
| Sub-agents                                  | `docs/features/sub-agents.md`           |
| Sandbox / security                          | `docs/features/sandbox.md`              |
| Slash commands                              | `docs/features/commands.md`             |
| Headless / non-interactive mode             | `docs/features/headless.md`             |
| LSP integration                             | `docs/features/lsp.md`                  |
| Computer Use (desktop automation)           | `docs/features/computer-use.md`         |
| Token caching                               | `docs/features/token-caching.md`        |
| Language / i18n                             | `docs/features/language.md`             |
| Arena mode                                  | `docs/features/arena.md`                |
| Status line                                 | `docs/features/status-line.md`          |
| Scheduled tasks (cron/loop)                 | `docs/features/scheduled-tasks.md`      |
| Worktree                                    | `docs/features/worktree.md`             |
| Code review (`/review`)                     | `docs/features/code-review.md`          |
| Structured output (JSON schema)             | `docs/features/structured-output.md`    |
| Dual output                                 | `docs/features/dual-output.md`          |
| Tool-use summaries                          | `docs/features/tool-use-summaries.md`   |
| Followup suggestions                        | `docs/features/followup-suggestions.md` |
| Markdown rendering                          | `docs/features/markdown-rendering.md`   |
| Contextual tips                             | `docs/features/tips.md`                 |
| Channels (Telegram/WeChat/DingTalk/etc.)    | `docs/features/channels/overview.md`    |

### Daemon Mode

| Topic                             | Doc Path                          |
| --------------------------------- | --------------------------------- |
| qwen serve (daemon mode overview) | `docs/qwen-serve.md`              |
| Local launch templates            | `docs/qwen-serve-deploy-local.md` |

### IDE Integration

| Topic                   | Doc Path                                     |
| ----------------------- | -------------------------------------------- |
| VS Code integration     | `docs/integration-vscode.md`                 |
| Zed IDE integration     | `docs/integration-zed.md`                    |
| JetBrains integration   | `docs/integration-jetbrains.md`              |
| GitHub Actions          | `docs/integration-github-action.md`          |
| IDE companion spec      | `docs/ide-integration/ide-companion-spec.md` |
| IDE integration details | `docs/ide-integration/ide-integration.md`    |

### Extensions

| Topic                           | Doc Path                                       |
| ------------------------------- | ---------------------------------------------- |
| Extension introduction          | `docs/extension/introduction.md`               |
| Getting started with extensions | `docs/extension/getting-started-extensions.md` |
| Releasing extensions            | `docs/extension/extension-releasing.md`        |

### Reference & Support

| Topic                      | Doc Path                               |
| -------------------------- | -------------------------------------- |
| Keyboard short
agent-reproduce-alignSkill

Use after a Codex or Claude Code feature has been implemented in Qwen Code to run the selected reference agent and Qwen Code under the same scenario, capture HTTP and terminal traces, compare request bodies, tool/function schemas, outputs, and iterate until the reproduced behavior is close enough.

agent-reproduce-featureSkill

Use when reproducing an existing Codex or Claude Code feature in Qwen Code or another agent CLI by choosing a reference agent, capturing HTTP request bodies, prompts, tool/function schemas, terminal output, and then implementing the matching behavior in the target repo.

autofixSkill

Review and repair current local changes until they converge, or run Qwen Code Autofix issue and review workflows from GitHub Actions.

bugfixSkill

Fix a bug from a GitHub issue, following the reproduce-first

ci-flaky-patrolSkill

Classify a bounded batch of stale PR CI failures and choose the safest response.

codegraphSkill

Analyze indexed codebases via graph database (neug) and vector index (zvec). Covers call graphs, dependencies, dead code, hotspots, module coupling, architecture reports, semantic search, impact analysis, bug root cause from GitHub issues, class diagrams (UML), and PR review (risk scoring, conflict detection, auto-merge candidates, labeling). Also covers creating, inspecting, and repairing a CodeScope index. Use for: code structure, who calls what, why something changed, similar functions, module boundaries, bug tracing, class relationships, PR risk/conflicts, or any question benefiting from a code knowledge graph. Applies when a `.codegraph` index exists in the workspace, or when the user wants to create one.

create-issueSkill

Draft and submit a GitHub issue from a user idea or bug description, with bilingual body and correct labels.

deflakeSkill

Stabilize a flaky test with a minimal, assertion-preserving fix — never by weakening or deleting the check.