Qwen Code Extensions
Qwen Code extensions package prompts, MCP servers, subagents, skills and custom commands into a familiar and user-friendly format. With extensions, you can expand the capabilities of Qwen Code and share those capabilities with others. They are designed to be easily installable and shareable.
Extensions and plugins from Gemini CLI Extensions Gallery and Claude Code Marketplace can be directly installed into Qwen Code. This cross-platform compatibility gives you access to a rich ecosystem of extensions and plugins, dramatically expanding Qwen Code’s capabilities without requiring extension authors to maintain separate versions.
Extension management
We offer a suite of extension management tools using both qwen extensions CLI commands and /extensions slash commands within the interactive CLI.
Runtime Extension Management (Slash Commands)
You can manage extensions at runtime within the interactive CLI using /extensions slash commands. These commands support hot-reloading, meaning changes take effect immediately without restarting the application.
| Command | Description |
|---|---|
/extensions or /extensions manage | Manage all installed extensions |
/extensions install <source> | Install an extension from a git URL, local path or archive, archive URL, npm package, or marketplace |
/extensions explore [source] | Open extensions source page(Gemini or ClaudeCode) in your browser |
The interactive extension manager
Running /extensions (or /extensions manage) opens an interactive manager with three tabs. Press Tab or the ←/→ arrows to switch between them.
- Discover — browse plugins from your configured marketplace sources. Type to search,
Enterto view a plugin’s details, and install it (you’ll be asked to choose an install scope). PressCtrl+Rto re-fetch the listings, andEscto go back. - Installed — your installed extensions, grouped by scope (User level, Project level, and favorites). Use
↑/↓to navigate,Spaceto enable/disable an extension,fto favorite it, andEnterto open its details. MCP servers bundled by an extension appear nested under their parent extension with live connection status; you can enable or disable each server individually from there. - Sources — manage the marketplace sources that feed the Discover tab. Use
↑/↓to navigate,Enterto select a source, anddto remove one. These are the same sources managed by theqwen extensions sourcesCLI commands described below.
Changes made here hot-reload immediately, without restarting Qwen Code.
CLI Extension Management
You can also manage extensions using qwen extensions CLI commands. Note that changes made via CLI commands will be reflected in active CLI sessions on restart.
Installing an extension
You can install an extension using qwen extensions install from multiple sources:
From Claude Code Marketplace
Qwen Code also supports plugins from the Claude Code Marketplace . Install from a marketplace and choose a plugin:
qwen extensions install <marketplace-name>
# or
qwen extensions install <marketplace-github-url>If you want to install a specific plugin, you can use the format with plugin name:
qwen extensions install <marketplace-name>:<plugin-name>
# or
qwen extensions install <marketplace-github-url>:<plugin-name>For example, to install the prompts.chat plugin from the f/awesome-chatgpt-prompts marketplace:
qwen extensions install f/awesome-chatgpt-prompts:prompts.chat
# or
qwen extensions install https://github.com/f/awesome-chatgpt-prompts:prompts.chatClaude plugins are automatically converted to Qwen Code format during installation:
claude-plugin.jsonis converted toqwen-extension.json- Agent configurations are converted to Qwen subagent format
- Skill configurations are converted to Qwen skill format
- Tool mappings are automatically handled
You can quickly browse available extensions from different marketplaces using the /extensions explore command:
# Open Gemini CLI Extensions marketplace
/extensions explore Gemini
# Open Claude Code marketplace
/extensions explore ClaudeCodeThis command opens the respective marketplace in your default browser, allowing you to discover new extensions to enhance your Qwen Code experience.
Cross-Platform Compatibility: This allows you to leverage the rich extension ecosystems from both Gemini CLI and Claude Code, dramatically expanding the available functionality for Qwen Code users.
From Gemini CLI Extensions
Qwen Code fully supports extensions from the Gemini CLI Extensions Gallery . Simply install them using the git URL:
qwen extensions install <gemini-cli-extension-github-url>
# or
qwen extensions install <owner>/<repo>Gemini extensions are automatically converted to Qwen Code format during installation:
gemini-extension.jsonis converted toqwen-extension.json- TOML command files are automatically migrated to Markdown format
- MCP servers, context files, and settings are preserved
From npm Registry
Qwen Code supports installing extensions from npm registries using scoped package names. This is ideal for teams with private registries that already have auth, versioning, and publishing infrastructure in place.
# Install the latest version
qwen extensions install @scope/my-extension
# Install a specific version
qwen extensions install @scope/my-extension@1.2.0
# Install from a custom registry
qwen extensions install @scope/my-extension --registry https://your-registry.comOnly scoped packages (@scope/package-name) are supported to avoid ambiguity with the owner/repo GitHub shorthand format.
Registry resolution follows this priority:
--registryCLI flag (explicit override)- Scoped registry from
.npmrc(e.g.@scope:registry=https://...) - Default registry from
.npmrc - Fallback:
https://registry.npmjs.org/
Authentication is handled automatically via the NPM_TOKEN environment variable or registry-specific _authToken entries in your .npmrc file.
Note: npm extensions must include a
qwen-extension.jsonfile at the package root, following the same format as any other Qwen Code extension. See Extension Releasing for packaging details.
From Git Repository
qwen extensions install https://github.com/github/github-mcp-serverThis will install the github mcp server extension.
From Local Path
qwen extensions install /path/to/your/extensionLocal .zip and .tar.gz archives are also supported:
qwen extensions install /path/to/your/extension.zip
qwen extensions install /path/to/your/extension.tar.gzThe archive must contain a complete extension at its root, or a single top-level directory containing the extension.
Note that we create a copy of the installed extension, so you will need to run qwen extensions update to pull in changes from both locally-defined extensions and those on GitHub.
From Archive URL
qwen extensions install https://example.com/your/extension.zip
qwen extensions install https://example.com/your/extension.tar.gzArchive URLs can be updated later as long as the URL continues to point at a newer archive for the same extension.
Choosing an install scope
By default, an installed extension is enabled globally (user scope). Pass --scope project to enable it only for the current workspace:
qwen extensions install <source> --scope project--scope workspace is accepted as an alias of --scope project. This matches the scope choice offered when installing from the /extensions manage Discover tab.
Managing marketplace sources
Marketplace sources (Claude plugin marketplaces) power the Discover tab in /extensions manage. You can manage them from the CLI as well:
# Add a marketplace (owner/repo, git URL, https URL to marketplace.json, or local path)
qwen extensions sources add <source>
# List configured marketplaces
qwen extensions sources list
# Re-fetch a marketplace's plugin listing
qwen extensions sources update <name>
# Remove a marketplace
qwen extensions sources remove <name>Uninstalling an extension
To uninstall, run qwen extensions uninstall extension-name, so, in the case of the install example:
qwen extensions uninstall qwen-cli-securityDisabling an extension
Extensions are, by default, enabled across all workspaces. You can disable an extension entirely or for specific workspace.
For example, qwen extensions disable extension-name will disable the extension at the user level, so it will be disabled everywhere. qwen extensions disable extension-name --scope=workspace will only disable the extension in the current workspace.
Enabling an extension
You can enable extensions using qwen extensions enable extension-name. You can also enable an extension for a specific workspace using qwen extensions enable extension-name --scope=workspace from within that workspace.
This is useful if you have an extension disabled at the top-level and only enabled in specific places.
Updating an extension
For extensions installed from a local path or archive, an archive URL, a git repository, or an npm registry, you can explicitly update to the latest version with qwen extensions update extension-name. For npm extensions installed without a version pin (e.g. @scope/pkg), updates check the latest dist-tag. For those installed with a specific dist-tag (e.g. @scope/pkg@beta), updates track that tag. Extensions pinned to an exact version (e.g. @scope/pkg@1.2.0) are always considered up-to-date.
You can update all extensions with:
qwen extensions update --allHow it works
On startup, Qwen Code looks for extensions in <home>/.qwen/extensions
Extensions exist as a directory that contains a qwen-extension.json file. For example:
<home>/.qwen/extensions/my-extension/qwen-extension.json
qwen-extension.json
The qwen-extension.json file contains the configuration for the extension. The file has the following structure:
{
"name": "my-extension",
"version": "1.0.0",
"mcpServers": {
"my-server": {
"command": "node my-server.js"
}
},
"channels": {
"my-platform": {
"entry": "dist/index.js",
"displayName": "My Platform Channel"
}
},
"contextFileName": "QWEN.md",
"commands": "commands",
"skills": "skills",
"agents": "agents",
"settings": [
{
"name": "API Key",
"description": "Your API key for the service",
"envVar": "MY_API_KEY",
"sensitive": true
}
]
}name: The name of the extension. This is used to uniquely identify the extension and for conflict resolution when extension commands have the same name as user or project commands. The name should be lowercase or numbers and use dashes instead of underscores or spaces. This is how users will refer to your extension in the CLI. Note that we expect this name to match the extension directory name.version: The version of the extension.mcpServers: A map of MCP servers to configure. The key is the name of the server, and the value is the server configuration. These servers will be loaded on startup just like MCP servers configured in asettings.jsonfile. If both an extension and asettings.jsonfile configure an MCP server with the same name, the server defined in thesettings.jsonfile takes precedence.- Note that all MCP server configuration options are supported except for
trust.
- Note that all MCP server configuration options are supported except for
channels: A map of custom channel adapters. The key is the channel type name, and the value has anentry(path to compiled JS entry point) and optionaldisplayName. The entry point must export apluginobject conforming to theChannelPlugininterface. See Channel Plugins for a full guide.contextFileName: The name of the file that contains the context for the extension. This will be used to load the context from the extension directory. If this property is not used but aQWEN.mdfile is present in your extension directory, then that file will be loaded.commands: The directory containing custom commands (default:commands). Commands are.mdfiles that define prompts.skills: The directory containing custom skills (default:skills). Skills are discovered automatically and become available via the/skillscommand.agents: The directory containing custom subagents (default:agents). Subagents are.yamlor.mdfiles that define specialized AI assistants.settings: An array of settings that the extension requires. When installing, users will be prompted to provide values for these settings. The values are stored securely and passed to MCP servers as environment variables.- Each setting has the following properties:
name: Display name for the settingdescription: A description of what this setting is used forenvVar: The environment variable name that will be setsensitive: Boolean indicating if the value should be hidden (e.g., API keys, passwords)
- Each setting has the following properties:
Managing Extension Settings
Extensions can require configuration through settings (such as API keys or credentials). These settings can be managed using the qwen extensions settings CLI command:
Set a setting value:
qwen extensions settings set <extension-name> <setting-name> [--scope user|workspace]List all settings and current values for an extension:
qwen extensions settings list <extension-name>Settings can be configured at two levels:
- User level (default): Settings apply across all projects (
~/.qwen/.env) - Workspace level: Settings apply only to the current project (
.qwen/.env)
Workspace settings take precedence over user settings. Sensitive settings are stored securely and never displayed in plain text.
When Qwen Code starts, it loads all the extensions and merges their configurations. If there are any conflicts, the workspace configuration takes precedence.
Custom commands
Extensions can provide custom commands by placing Markdown files in a commands/ subdirectory within the extension directory. These commands follow the same format as user and project custom commands and use standard naming conventions.
Note: The command format has been updated from TOML to Markdown. TOML files are deprecated but still supported. You can migrate existing TOML commands using the automatic migration prompt that appears when TOML files are detected.
Example
An extension named gcp with the following structure:
.qwen/extensions/gcp/
├── qwen-extension.json
└── commands/
├── deploy.md
└── gcs/
└── sync.mdWould provide these commands:
/deploy- Shows as[gcp] Custom command from deploy.mdin help/gcs:sync- Shows as[gcp] Custom command from sync.mdin help
Custom skills
Extensions can provide custom skills by placing skill files in a skills/ subdirectory within the extension directory. Each skill should have a SKILL.md file with YAML frontmatter defining the skill’s name and description.
Example
.qwen/extensions/my-extension/
├── qwen-extension.json
└── skills/
└── pdf-processor/
└── SKILL.mdThe skill will be available via the /skills command when the extension is active.
Custom subagents
Extensions can provide custom subagents by placing agent configuration files in an agents/ subdirectory within the extension directory. Agents are defined using YAML or Markdown files.
Example
.qwen/extensions/my-extension/
├── qwen-extension.json
└── agents/
└── testing-expert.yamlExtension subagents appear in the subagent manager dialog under “Extension Agents” section.
Conflict resolution
Extension commands have the lowest precedence. When a conflict occurs with user or project commands:
- No conflict: Extension command uses its natural name (e.g.,
/deploy) - With conflict: Extension command is renamed with the extension prefix (e.g.,
/gcp.deploy)
For example, if both a user and the gcp extension define a deploy command:
/deploy- Executes the user’s deploy command/gcp.deploy- Executes the extension’s deploy command (marked with[gcp]tag)
Variables
Qwen Code extensions allow variable substitution in qwen-extension.json. This can be useful if e.g., you need the current directory to run an MCP server using "cwd": "${extensionPath}${/}run.ts".
Supported variables:
| variable | description |
|---|---|
${extensionPath} | The fully-qualified path of the extension in the user’s filesystem e.g., ‘/Users/username/.qwen/extensions/example-extension’. This will not unwrap symlinks. |
${workspacePath} | The fully-qualified path of the current workspace. |
${/} or ${pathSeparator} | The path separator (differs per OS). |