Qc Helper logo

Qc Helper

OrganizationPopular
QwenLM
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`.

Overview

PublisherQwenLM
Repositoryqwen-code
Skill nameqc-helper
Stars
27.9K
Forks
3.1K
Bundled files
Instructions only
LicenseApache-2.0
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by QwenLM on GitHub. Read the source before you install it.

Installation

Install the Qc Helper AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/QwenLM/qwen-code.git /tmp/qwen-code
mkdir -p .claude/skills
cp -r /tmp/qwen-code/packages/core/src/skills/bundled/qc-helper .claude/skills/qc-helper
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Qc Helper in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Qc Helper on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Qc Helper is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

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

TopicDoc Path
Product overviewdocs/overview.md
Quick start guidedocs/quickstart.md
Common workflowsdocs/common-workflow.md

Configuration

TopicDoc Path
Settings reference (all config keys)docs/configuration/settings.md
Authentication setupdocs/configuration/auth.md
Model providers (OpenAI-compatible, etc.)docs/configuration/model-providers.md
.qwenignore filedocs/configuration/qwen-ignore.md
Themesdocs/configuration/themes.md
Trusted foldersdocs/configuration/trusted-folders.md

Features

TopicDoc 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
Memorydocs/features/memory.md
Skills systemdocs/features/skills.md
Sub-agentsdocs/features/sub-agents.md
Sandbox / securitydocs/features/sandbox.md
Slash commandsdocs/features/commands.md
Headless / non-interactive modedocs/features/headless.md
LSP integrationdocs/features/lsp.md
Computer Use (desktop automation)docs/features/computer-use.md
Token cachingdocs/features/token-caching.md
Language / i18ndocs/features/language.md
Arena modedocs/features/arena.md
Status linedocs/features/status-line.md
Scheduled tasks (cron/loop)docs/features/scheduled-tasks.md
Worktreedocs/features/worktree.md
Code review (/review)docs/features/code-review.md
Structured output (JSON schema)docs/features/structured-output.md
Dual outputdocs/features/dual-output.md
Tool-use summariesdocs/features/tool-use-summaries.md
Followup suggestionsdocs/features/followup-suggestions.md
Markdown renderingdocs/features/markdown-rendering.md
Contextual tipsdocs/features/tips.md
Channels (Telegram/WeChat/DingTalk/etc.)docs/features/channels/overview.md

Daemon Mode

TopicDoc Path
qwen serve (daemon mode overview)docs/qwen-serve.md
Local launch templatesdocs/qwen-serve-deploy-local.md

IDE Integration

TopicDoc Path
VS Code integrationdocs/integration-vscode.md
Zed IDE integrationdocs/integration-zed.md
JetBrains integrationdocs/integration-jetbrains.md
GitHub Actionsdocs/integration-github-action.md
IDE companion specdocs/ide-integration/ide-companion-spec.md
IDE integration detailsdocs/ide-integration/ide-integration.md

Extensions

TopicDoc Path
Extension introductiondocs/extension/introduction.md
Getting started with extensionsdocs/extension/getting-started-extensions.md
Releasing extensionsdocs/extension/extension-releasing.md

Reference & Support

TopicDoc Path
Keyboard shortcutsdocs/reference/keyboard-shortcuts.md
Troubleshootingdocs/support/troubleshooting.md
Uninstall guidedocs/support/Uninstall.md
Terms of service & privacydocs/support/tos-privacy.md

Configuration Quick Reference

When the user asks about configuration, the primary reference is docs/configuration/settings.md. Here is a quick orientation:

Config File Locations & Priority

LevelPathDescription
User~/.qwen/settings.jsonPersonal global config
Project<project>/.qwen/settings.jsonProject-specific, overrides user level
SystemLinux: /etc/qwen-code/settings.jsonWindows: C:\ProgramData\qwen-code\settings.jsonmacOS: /Library/Application Support/QwenCode/settings.jsonAdmin-level config

Priority (highest to lowest): CLI args > env vars > system settings > project settings > user settings > defaults

Format: JSON with Comments (supports // and /* */), with environment variable interpolation ($VAR or ${VAR})

Common Config Categories

CategoryKey Config KeysReference
Permissionspermissions.allow/ask/denydocs/configuration/settings.md, docs/features/approval-mode.md
MCP ServersmcpServers.*, mcp.*docs/configuration/settings.md, docs/features/mcp.md
Tool Approvaltools.approvalModedocs/configuration/settings.md, docs/features/approval-mode.md, docs/features/auto-mode.md
Hookshooks.*docs/configuration/settings.md, docs/features/hooks.md
Modelmodel.name, modelProvidersdocs/configuration/settings.md, docs/configuration/model-providers.md
General/UIgeneral.*, ui.*, ide.*, output.*docs/configuration/settings.md
Contextcontext.*docs/configuration/settings.md
Advancedenv, webSearch, security, privacy, telemetry, advanced.*docs/configuration/settings.md

Workflow

Answering Questions

  1. Identify the topic from the user's question using the Documentation Index above
  2. Use read_file to load the relevant doc(s) — only load what you need
  3. Provide a clear, concise answer grounded in the documentation content
  4. If the docs don't cover the question, say so honestly and suggest where to look

Helping with Configuration Changes

When the user wants to modify their configuration:

  1. Read the relevant doc to understand the config key, its type, allowed values, and defaults
  2. Ask which config level to modify if not specified: user (~/.qwen/settings.json) or project (.qwen/settings.json)
  3. Use read_file to check the current content of the target settings file
  4. Use edit_file to apply the change with correct JSON syntax
  5. After every configuration change, you MUST remind the user:

Note: Most configuration changes require restarting Qwen Code (/exit then re-launch) to take effect. Only a few settings (like permissions) are picked up dynamically.

Important Notes

  • Always ground your answers in the actual documentation content — do not guess or fabricate config keys
  • When showing config examples, use JSONC format with comments for clarity
  • If a question spans multiple topics (e.g., "How do I set up MCP with sandbox?"), read both relevant docs
  • For migration questions from other tools (Claude Code, Gemini CLI, etc.), check docs/configuration/settings.md for equivalent config keys

Frequently asked questions

What does the Qc Helper AI skill do?

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`.

Why use Qc Helper on TypingMind?

Because you install it once and use it with any model. Qc Helper is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Qc Helper in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/QwenLM/qwen-code/tree/main/packages/core/src/skills/bundled/qc-helper. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Qc Helper?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Qc Helper?

As many as you like. As long as a model supports skills, you can use Qc Helper with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Qc Helper AI skill free?

Yes. It is published on GitHub by QwenLM under the Apache-2.0 license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇