make_plan

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

A guide for asking a stronger coding agent to produce a step-by-step plan that you carry out yourself.

In plain words
What is it for?
Use it to request an actionable plan, refine that plan in a follow-up conversation, and then execute the steps yourself.
Why use it?
It separates planning from execution when a task needs careful sequencing, checkpoints, or work across several parts of a project.

Skill for Claude CodeCodex

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

Good fit Use it to request an actionable plan, refine that plan in a follow-up conversation, and then execute the steps yourself.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentscope-ai/qwenpaw/make_plan-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 · 35,089 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_plan-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_plan

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw/make_plan-en"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw/make_plan-en.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,511 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.00051 $0.01511
Opus 5 $0.00026 $0.00756
Sonnet 5 $0.00010 $0.00302
Haiku 4.5 $0.00005 $0.00151

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

Security

Grade A, and why

make_plan 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 9d ago.

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_plan-en/SKILL.md · 198 lines

How it starts

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

Make Plan

Use this Skill when you need to make an external plan request to a stronger Agent.

The goal of this Skill is not to outsource a task, but rather to:

  • Request a plan from a stronger Agent
  • The plan must consist of clear, actionable steps
  • You execute the plan yourself
  • Do not ask the consulted Agent to execute the task directly

How to invoke:

  • Use list_agents() to check available Agents
  • Use chat_with_agent(...) to request the stronger Agent to "make a plan"
  • In text, explicitly include the prompt: only provide a step-by-step executable plan, do not execute
  • To supplement or refine the original plan in a follow-up, pass session_id

Recommended invocation skeleton:

list_agents()

chat_with_agent(
  to_agent="<stronger_agent>",
  text="[Agent <auto> requesting] Please help me create an execution plan for the following task. You do not need to execute the task -- just output clear, actionable steps in order.",
)

Core Rules

This Skill handles one thing only:

  1. Find a stronger Agent
  2. Request that Agent to output an execution plan
  3. Require the plan to be step-by-step, actionable, and in sequential order
  4. You execute the plan yourself rather than asking the other Agent to do it for you

If what you truly need is a "plan", use this Skill. If what you need is a final answer, architectural judgment, review conclusion, or direct execution, do not misuse this Skill.

Applicable Scenarios

The following scenarios are suitable for making an external plan request:

  • The task requires multi-step decomposition
  • Steps have dependencies between them
  • A clear sequence, checkpoints, or verification points are needed
  • Multiple modules, files, systems, or roles are involved
  • The user explicitly requests a plan before execution
  • You want to obtain a more complete and reliable execution path first

Do Not Use This Way

Do not use this Skill in the following situations:

  • You actually want the other Agent to do the task for you
  • What you really lack is a small piece of factual information, not a plan
  • What you truly need is an architectural judgment or solution comparison
  • You have not yet clearly understood the task objective

Read the full file on GitHub · 198 lines

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. 9d ago First seen · 198 lines · 51 tokens per session scan A 79b4c0b9d8e0

Subscribe to this mod's changes

make_plan is a skill published in the GitHub repository agentscope-ai/QwenPaw (35,089 stars, last pushed today), licensed Apache-2.0. It adds 51 tokens to every session and 1,511 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.