qwen-coder

qwen-coder is a skill for Claude Code from giuseppe-trisciuoglio/developer-kit. It costs 117 tokens per session (2,583 once invoked), scanned A, original, MIT.

A workflow for sending selected coding tasks to Qwen Coder through its command-line tool. It covers model selection, permissions, sessions, and result formats.

In plain words
What is it for?
It helps delegate code generation, refactoring, debugging, and architecture analysis, including continuing or resuming earlier Qwen sessions.
Why use it?
It gives the agent a consistent way to request a second opinion or delegated implementation, refactoring, debugging, or architecture work when Qwen is explicitly requested.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

Part of the developer-kit-tools plugin — 6 skills, 2 MCP servers shipped together

Good fit It helps delegate code generation, refactoring, debugging, and architecture analysis, including continuing or resuming earlier Qwen sessions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/giuseppe-trisciuoglio/developer-kit/qwen-coder
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add giuseppe-trisciuoglio/developer-kit --skill qwen-coder
Clone the repo
git clone --depth 1 https://github.com/giuseppe-trisciuoglio/developer-kit

Made for: Claude Code.

Or install developer-kit-tools, the plugin that ships this one along with the rest of its 6 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for qwen-coder

README.md
[![agentmods](https://agentmods.dev/badge/skills/giuseppe-trisciuoglio/developer-kit/qwen-coder/github.svg)](https://agentmods.dev/skills/giuseppe-trisciuoglio/developer-kit/qwen-coder)
Your own site
<a href="https://agentmods.dev/skills/giuseppe-trisciuoglio/developer-kit/qwen-coder"><img src="https://agentmods.dev/badge/skills/giuseppe-trisciuoglio/developer-kit/qwen-coder/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for qwen-coder

Your own site · 80×15
<a href="https://agentmods.dev/skills/giuseppe-trisciuoglio/developer-kit/qwen-coder"><img src="https://agentmods.dev/badge/skills/giuseppe-trisciuoglio/developer-kit/qwen-coder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 117 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,583 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 12 Apr 2026
  • Snyk pass 12 Apr 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00117 $0.02583
Opus 5 $0.00059 $0.01291
Sonnet 5 $0.00023 $0.00517
Haiku 4.5 $0.00012 $0.00258

Measured today against content hash fa31e45d61f4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

qwen-coder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/developer-kit-tools/skills/qwen-coder/SKILL.md · 375 lines

How it starts

The opening of the file, as written. The whole thing — 375 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Qwen Coder CLI Delegation

Delegate selected tasks from Claude Code to Qwen Coder CLI using non-interactive commands, explicit model selection, safe permission flags, and shareable outputs.

Overview

This skill standardizes delegation to Qwen Coder CLI (qwen) for cases where Qwen's specific strengths may benefit the task. It covers:

  • Non-interactive execution with -p / --prompt
  • Model selection with -m / --model
  • Approval control (--approval-mode)
  • Session continuation with -c / --continue or -r / --resume
  • Output format options (text, json, stream-json)

Use this skill only when delegation to Qwen Coder is explicitly requested or clearly beneficial.

When to Use

Use this skill when:

  • The user asks to delegate work to Qwen Coder CLI
  • The user wants a second opinion from Qwen Coder on a task
  • The user asks for Qwen Coder CLI output integrated into the current workflow
  • The user wants to continue a previous Qwen Coder session

Trigger phrases:

  • "use qwen"
  • "use qwen coder"
  • "delegate to qwen"
  • "ask qwen"
  • "second opinion from qwen"
  • "qwen opinion"
  • "continue with qwen"
  • "qwen session"

Prerequisites

Verify tool availability and authentication before delegation:

# CLI availability
qwen --version

# Authentication status
qwen auth status

If qwen is unavailable, inform the user and stop execution until Qwen Coder CLI is installed. If authentication is invalid, provide authentication setup instructions and stop execution.

Reference

  • Command reference: references/cli-command-reference.md

Instructions

1) Confirm Delegation Scope

Before running Qwen Coder:

  • Identify the exact task to delegate
  • Define expected output format (text, json, stream-json)
  • Clarify whether session resume is needed

If scope is ambiguous, ask for clarification first.

2) Formulate Prompt in English

All delegated prompts to Qwen Coder CLI must be in English.

Build a precise English prompt from the user request.

Read the full file on GitHub · 375 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 375 lines · 117 tokens per session scan A fa31e45d61f4

Subscribe to this mod's changes

qwen-coder is a skill published in the GitHub repository giuseppe-trisciuoglio/developer-kit (343 stars, last pushed yesterday), licensed MIT. It adds 117 tokens to every session and 2,583 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-10.