make-skill

make-skill is a skill for Claude Code, Codex from agentscope-ai/QwenPaw. It costs 60 tokens per session (1,506 once invoked), scanned A, original, Apache-2.0.

A guide for turning the current conversation or workflow into a reusable QwenPaw skill, stored as a SKILL.md file. It uses a two-stage process: propose a plan first, then create the skill after approval.

In plain words
What is it for?
Creating a new reusable skill from a task, troubleshooting session, or workflow, including its instructions and supporting files.
Why use it?
It preserves a useful process so it can be followed again later. The approval step lets the user review the proposed scope before any skill files are created.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for qwenpaw. Also seen: mentions subagents; built for qwenpaw.

Good fit Creating a new reusable skill from a task, troubleshooting session, or workflow, including its instructions and supporting files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentscope-ai/qwenpaw/make-skill-en
About the project

QwenPaw is a personal AI assistant that runs on a local machine or in the cloud and connects to multiple chat applications. It provides memory, file workspaces, multiple agents, skills, plugins, and integrations with language-model providers and external tools. The catalogue entries are skills that extend its capabilities.

agentscope-ai/QwenPaw · 34,741 stars · on GitHub · qwenpaw.agentscope.io

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 agentscope-ai/QwenPaw --skill make-skill-en
Clone the repo
git clone --depth 1 https://github.com/agentscope-ai/QwenPaw

Made for: Claude Code, Codex.

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 make-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/make-skill-en/github.svg)](https://agentmods.dev/skills/agentscope-ai/qwenpaw/make-skill-en)
Your own site
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw/make-skill-en"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/make-skill-en/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 make-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw/make-skill-en"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/make-skill-en.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,506 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. ✓ AI security review Fable 5.1 · 6 Sept 2026 📄 Read the review Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 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.00060 $0.01506
Opus 5 $0.00030 $0.00753
Sonnet 5 $0.00012 $0.00301
Haiku 4.5 $0.00006 $0.00151

Measured 3d ago against content hash f269e951f0fc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

make-skill 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 3d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/create_plan.py, scripts/init_draft.py, scripts/publish_skill.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

src/qwenpaw/agents/skills/make-skill-en/SKILL.md · 106 lines

How it starts

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

Make Skill

Create one new workspace Skill from the raw current conversation. Use the scripts in this directory for the lifecycle below; do not rely on a make-skill-specific core tool, mode, or state store.

Run each documented python scripts/... command through execute_shell_command, setting cwd to this Skill's <dir> from the available-skills entry; every script reads one JSON object from stdin (or --input <file>) and writes one JSON object to stdout.

Plan

The focus in /make-skill <focus> is required. For a natural-language request, infer it from the request and current conversation. Later user corrections replace conflicting earlier rules. Preserve stable guidance, contracts, templates, and workflows that should change future behavior; exclude one-off data, temporary paths, secrets, and retry chatter.

Read primary type and package, then choose one primary type and only the files it needs. When the proposed test mode is not off, read behavior testing before defining its target.

Batch workflows

A stored batch is a parameterized run_tool_batch program bundled with a workflow Skill. Use batch: true when a reusable region's actions, branches, and success condition can be stated before execution and one stored entrypoint saves meaningful agent-tool round trips. The region may be the whole workflow, one substantial helper, or one semantic tool-native action; action count is not the criterion. Runtime data, observations, and a final agent review do not prevent batching when the rule for handling them is already known.

Use batch: false only when execution must invent the next action or success condition at runtime, or a shared entrypoint has no practical reuse value. If the user explicitly requests Batch, treat it as an approved plan refinement and revise the plan without reopening eligibility.

Only after selecting batch: true, read run batch before finalizing the workflow and file tree. When batch: false, do not read it.

Read the full file on GitHub · 106 lines

Files

What ships with it

7 files 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. 3d ago Changed · -618 lines · -25 tokens per session f269e951f0fc
  2. 10d ago First seen · 724 lines · 85 tokens per session scan A 6f6c153131cb

Subscribe to this mod's changes

make-skill is a skill published in the GitHub repository agentscope-ai/QwenPaw (34,741 stars, last pushed today), licensed Apache-2.0. It adds 60 tokens to every session and 1,506 once invoked, about $0.0003 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-08-30.