pm-pool

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

A requirements-pool manager for recording, reviewing, updating, deleting, and exporting product requests in a shared Markdown file.

In plain words
What is it for?
Use it to add requests with their type, priority, source, description, and acceptance details, then view counts by priority and status.
Why use it?
It keeps growing lists of requests structured and makes their priorities and progress visible. It is unnecessary when there are only a few requests or no ongoing tracking is needed.

Skill for Claude CodeCodex

Part of the superPM 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-pool
Any agent
npx skills add konglong87/superPM --skill pm-pool
Clone the repo
git clone --depth 1 https://github.com/konglong87/superPM

Made for: Claude Code, Codex.

Or install superPM, 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-pool

README.md
[![agentmods](https://agentmods.dev/badge/skills/konglong87/superpm/pm-pool.svg)](https://agentmods.dev/skills/konglong87/superpm/pm-pool)
Your own site
<a href="https://agentmods.dev/skills/konglong87/superpm/pm-pool"><img src="https://agentmods.dev/badge/skills/konglong87/superpm/pm-pool.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,051 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.00059 $0.02051
Opus 5 $0.00030 $0.01026
Sonnet 5 $0.00012 $0.00410
Haiku 4.5 $0.00006 $0.00205

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

Security

Grade A, and why

pm-pool 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 4d 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/01-demand-insight/pm-pool/SKILL.md · 353 lines

How it starts

The opening of the file, as written. The whole thing — 353 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/01-需求调研

# 检查是否有需求池
if [ ! -f "docs/01-需求调研/需求池管理表.md" ]; then
  echo "⚠️  未找到需求池管理表"
  echo ""
  echo "将创建新的需求池"
fi

跨 Agent 交互规则

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

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

执行流程

步骤 1: 选择操作

使用 AskUserQuestion 询问:

🎯 您要对需求池进行什么操作?

A) 添加新需求 B) 查看需求池 C) 更新需求状态 D) 删除需求 E) 导出需求池


步骤 2: 执行操作


操作 A: 添加新需求

使用 AskUserQuestion 逐个询问:

问题 1: 需求名称

请输入需求名称:

例如:"用户登录"、"搜索功能"


问题 2: 需求类型

需求类型是什么?

A) 新功能 B) 功能优化 C) Bug修复 D) 技术债务 E) 其他


问题 3: 优先级

需求优先级?

A) P0 - 紧急重要 B) P1 - 重要不紧急 C) P2 - 紧急不重要 D) P3 - 不紧急不重要


问题 4: 来源

需求来源?

A) 用户反馈 B) 业务部门 C) 产品规划 D) 竞品分析 E) 其他(请手动输入)


问题 5: 描述

请详细描述需求:

包括背景、目标、验收标准等


AI 将需求信息添加到需求池管理表。


操作 B: 查看需求池

读取 docs/01-需求调研/需求池管理表.md,格式化输出:

📋 需求池概览

需求总数: {N}个 P0: {N}个 P1: {N}个 P2: {N}个 P3: {N}个

按状态分类:

  • 待评估: {N}个
  • 已规划: {N}个
  • 开发中: {N}个
  • 已完成: {N}个

查看详情?


操作 C: 更新需求状态

列出所有需求,让用户选择要更新的需求:

请选择要更新的需求:

A) {需求1} - 当前状态: 待评估 B) {需求2} - 当前状态: 已规划 C) {需求3} - 当前状态: 开发中 ...

用户选择后,询问新状态:

新状态是什么?

A) 待评估 B) 已规划 C) 开发中 D) 测试中 E) 已上线 F) 已关闭

更新需求池管理表。


操作 D: 删除需求

列出所有需求,让用户选择要删除的需求:

请选择要删除的需求:

A) {需求1} B) {需求2} ...

确认后删除。


操作 E: 导出需求池

生成可分享的需求池文档:

选择导出格式:

A) Markdown B) CSV C) JSON


步骤 3: 更新需求池管理表

如果需求池管理表不存在,使用 Write 创建:

# 需求池管理表

## 一、需求概览

- **需求总数**: {N}个
- **更新时间**: {当前时间}

---

## 二、需求列表

| ID | 需求名称 | 类型 | 优先级 | 状态 | 来源 | 创建时间 |
|----|----------|------|--------|------|------|----------|
| R001 | {需求1} | {类型} | {优先级} | {状态} | {来源} | {时间} |
| R002 | {需求2} | {类型} | {优先级} | {状态} | {来源} | {时间} |

---

## 三、需求详情

### R001: {需求名称}

**类型**: {类型}

**优先级**: {优先级}

**状态**: {状态}

**来源**: {来源}

**描述**:
{详细描述}

**验收标准**:
- {标准1}
- {标准2}

**负责人**: {负责人}

**预计完成时间**: {时间}

---

## 四、统计信息

### 4.1 按优先级

- P0: {N}个
- P1: {N}个
- P2: {N}个
- P3: {N}个

### 4.2 按状态

- 待评估: {N}个
- 已规划: {N}个
- 开发中: {N}个
- 已上线: {N}个

---

**最后更新**: {时间戳}
**生成工具**: super-pm

Read the full file on GitHub · 353 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. 4d ago First seen · 353 lines · 59 tokens per session scan A 58ddb957f94a

Subscribe to this mod's changes

pm-pool is a skill published in the GitHub repository konglong87/superPM (60 stars, last pushed 22d ago), licensed MIT. It adds 59 tokens to every session and 2,051 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

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

clawteam

Multi-agent swarm coordination via the ClawTeam CLI. Use when the user wants to create agent teams, spawn multiple agents to work in parallel, coordinate tasks with dependencies, broadcast messages between agents, monitor progress via kanban board, or launch pre-built team templates (hedge-fund, code-review…

win4r/ClawTeam-OpenClaw · 106 tokens

ClawTeam

This skill should be used when the user asks to "create a team", "spawn agents", "assign tasks", "coordinate multiple agents", "check team status", "view kanban board", "send messages between agents", "manage team tasks", "monitor team progress", or mentions "clawteam", legacy "oh", "multi-agent coordination", "team…

win4r/ClawTeam-OpenClaw · 200 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

douyin-upload-mcp-skill

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

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

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