pm-feature

pm-feature is a skill for Claude Code, Codex from konglong87/superPM. It costs 60 tokens per session (2,002 once invoked), scanned A, original, MIT.

A workflow for breaking product features into detailed implementation tasks using product and design documents as input.

In plain words
What is it for?
Use it to break down all core features, one complex feature, or a module’s features before development or scheduling.
Why use it?
It checks whether the needed planning documents exist before splitting work, reducing the risk of missing requirements or interaction details. It can also guide the process when those documents are incomplete.

Skill for Claude CodeCodex

Part of the super-pm plugin — 55 skills, 1 hook shipped together

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.

agentmods
npx agentmods add skills/konglong87/superpm/pm-feature
Any agent
npx skills add konglong87/superPM --skill pm-feature
Clone the repo
git clone --depth 1 https://github.com/konglong87/superPM

Made for: Claude Code, Codex.

Or install super-pm, the plugin that ships this one along with the rest of its 55 skills, 1 hook.

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 pm-feature

README.md
[![agentmods](https://agentmods.dev/badge/skills/konglong87/superpm/pm-feature.svg)](https://agentmods.dev/skills/konglong87/superpm/pm-feature)
Your own site
<a href="https://agentmods.dev/skills/konglong87/superpm/pm-feature"><img src="https://agentmods.dev/badge/skills/konglong87/superpm/pm-feature.svg" alt="Measured on agentmods" 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 2,002 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00060 $0.02002
Opus 5 $0.00030 $0.01001
Sonnet 5 $0.00012 $0.00400
Haiku 4.5 $0.00006 $0.00200

Measured 5d ago against content hash 4a3229494c4a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pm-feature 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 5d 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.

skills/02-solution-design/pm-feature/SKILL.md · 245 lines

How it starts

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

Preamble (run first)

bash "$(dirname "${BASH_SOURCE[0]}")/../../check-update.sh" 2>/dev/null || true
mkdir -p docs/02-方案设计

echo "📊 正在检查前置文档..."
if [ -f "docs/02-方案设计/PRD产品需求文档.md" ]; then
  echo "✅ PRD文档 - 已找到"
else
  echo "⏳ PRD文档 - 未找到"
fi
if [ -f "docs/02-方案设计/原型设计方案.md" ]; then
  echo "✅ 原型设计方案 - 已找到"
else
  echo "⏳ 原型设计方案 - 未找到"
fi

跨 Agent 交互规则

当流程要求与用户交互时:

  1. 如果当前环境支持 AskUserQuestion,使用 AskUserQuestion(最佳体验)。
  2. 如果当前环境不支持 AskUserQuestion,必须用普通聊天消息提出同样问题。
  3. 一次只问一个问题。
  4. 提问后必须停止当前回合,等待用户回答(STOP and WAIT)。
  5. 不得在用户回答前生成文档、写入 docs。
  6. 已有 docs 文件不能替代本轮用户回答。

执行流程

步骤 1: 选择需要拆解的功能

您希望拆解哪个功能?

A) 拆解所有核心功能(基于PRD功能列表) B) 拆解单个功能(请指定功能名称) C) 拆解某个模块的所有功能 D) 其他(请手动输入)

💡 提示:开发准备→拆解所有,技术评审→拆解单个复杂功能,项目排期→拆解某模块

记录到变量 FEATURE_SCOPE


步骤 2: 读取前置数据

必需文档:PRD产品需求文档、原型设计方案(需其一) 可选文档:技术对接方案、MVP方案

如果 PRD 不存在:

⚠️ 未找到 PRD 文档

A) 执行 /pm-docs 生成 PRD B) 使用 MVP 方案作为输入 C) 手动输入功能需求(快速模式)


步骤 3: 功能列表提取

从 PRD 提取功能模块划分、功能需求列表、优先级。 从原型设计提取页面功能、交互功能、状态功能。

📋 基于PRD识别出以下功能列表:

用户模块:用户注册、登录、个人信息管理 业务模块:商品浏览、搜索、购物车、订单管理

是否拆解所有功能?

A) 是的,拆解所有 B) 只拆解部分 C) 需要调整功能列表


步骤 4: 功能拆解(逐个功能)

对每个功能使用拆解模板:

4.1 功能基本信息

📝 {功能名称} 功能描述:{从PRD提取} 优先级:P0/P1/P2 用户价值:{解决什么用户问题}

4.2 用户场景分析

🎯 使用动机: A) 完成核心任务 B) 解决具体问题 C) 满足情感需求 使用场景: A) 日常高频 B) 低频但重要 C) 偶发场景

4.3 功能流程拆解

主流程:前置条件→操作步骤序列(6-12步)→后置操作 分支流程:对每个异常场景:触发条件→系统处理→用户反馈→后续操作

4.4 界面元素拆解

🎨 页面结构:顶部/主体/底部元素 交互元素:输入框(校验规则)、按钮(状态)、列表(分页) 状态展示:加载状态/空状态/错误状态

4.5 数据逻辑拆解

💾 输入数据:字段名/类型/必填/校验规则 数据处理:存储位置/更新逻辑/删除策略 数据校验:格式校验/业务校验/权限校验

4.6 异常处理

前端异常(网络/校验/超时)和后端异常(参数/业务/系统)的处理方案 + 边界条件

4.7 技术实现要点

🔧 前端实现:组件选择、状态管理、性能优化 后端实现:API设计、数据库操作、缓存策略 第三方依赖:{服务名称} - {用途}

4.8 测试要点

功能测试(正常/异常/边界)、性能测试、安全测试、兼容性测试


步骤 5: 输出功能拆解文档

使用 Write 工具创建 docs/02-方案设计/功能细节拆解.md

参考 references/output-template.md 模板,文档结构:

  1. 功能列表总览 - 模块划分、依赖关系
  2. 各模块功能拆解 - 每个功能的完整拆解(基本信息/场景/流程/界面/数据/异常/技术/测试/排期)
  3. 附录 - 开发任务清单、技术风险识别

Read the full file on GitHub · 245 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. 5d ago First seen · 245 lines · 60 tokens per session scan A 4a3229494c4a

Subscribe to this mod's changes

pm-feature is a skill published in the GitHub repository konglong87/superPM (61 stars, last pushed yesterday), licensed MIT. It adds 60 tokens to every session and 2,002 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.

Related

Other skills, from other repositories

multi-search

智能多引擎搜索,自动检测网络环境并按优先级切换:DuckDuckGo -> Tavily -> Bing API -> Bing爬虫。支持自动配额管理和网络缓存。Invoke when user needs web search with automatic engine selection and network adaptation.

Nex-ZMH/Agent-websearch-skill · 60 tokens

freeride

Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs.

Shaivpidadi/FreeRide · 63 tokens

deepsafe-scan

Preflight security scanner for AI coding agents — scans deployment config, skills/MCP servers, memory/sessions, and AI agent config files (hooks injection) for secrets, PII, prompt injection, and dangerous patterns. Runs 4 model behavior probes (persuasion, sandbagging, deception, hallucination). Supports LLM-enhanced…

XiaoYiWeio/deepsafe-scan · 120 tokens

mapick

Mapick — Skill recommendation & privacy protection for OpenClaw. Scans your local skills, suggests what you're missing, and keeps other skills from seeing your sensitive data.

mapick-ai/mapick · 37 tokens

douyin-upload-mcp-skill

通过抖音创作者平台(creator.douyin.com)发布视频和图文内容。首选调用 MCP 工具完成操作,MCP 无法满足时可运行 Skill 脚本兜底。禁止自行启动外部浏览器访问抖音。.

WJZ-P/douyin-upload-mcp-skill · 67 tokens

team-tasks

Coordinate multi-agent development pipelines using shared JSON task files. Use when dispatching work across dev team agents (code-agent, test-agent, docs-agent, monitor-bot), tracking pipeline progress, or running sequential/parallel workflows. Covers project init, task assignment, status tracking, agent dispatch via…

win4r/team-tasks · 88 tokens