用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill plan-capacity命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | plan-capacity |
| description | >- Use when this capability is needed. |
Assess agent feasibility for a task using Anthropic's proven decision frameworks. Produce a dispatch plan grounded in official best practices, not guesswork.
references/decision-frameworks.md. No invented heuristics.Extract the task from one of these sources:
$ARGUMENTS passed to the skillRestate the task in one sentence so the user can confirm scope.
Break the task into the smallest units where each unit:
List every unit. Number them.
For the task as a whole, answer: "Can you list all subtasks before starting?"
references/decision-frameworks.md (prompt chaining, routing, parallelization, orchestrator-workers, evaluator-optimizer).State the answer and reasoning explicitly.
Apply Anthropic's decision ladder to each atomic unit. Consult references/decision-frameworks.md for the full framework.
For each unit, assign exactly one classification:
| Classification | Criteria | Claude Code approach |
|---|---|---|
| Inline | Single prompt, 1-2 files, clear completion condition | Do it directly in main conversation |
| Explore subagent | Read-only investigation, codebase search, file discovery | subagent_type: Explore |
| General subagent | Self-contained task, clear deliverable, 3-10 tool calls | subagent_type: general-purpose |
| Sequential chain | Depends on a previous unit's output | Must run after its dependency completes |
| Human checkpoint | Ambiguous requirement, judgment call, or moving-target risk | Pause and ask the user |
For every unit classified as a subagent, verify all four elements of Anthropic's delegation spec are present:
Flag any unit missing an element. A subagent dispatched without all four will "duplicate work, leave gaps, or fail to find necessary information."
Scan the full task for known failure patterns from references/decision-frameworks.md:
AGENT CAPACITY ASSESSMENT
═══════════════════════════════════════════
TASK: [one-line summary]
UNITS: [N total]
ENUMERABLE: [YES/NO — from Step 3]
─── DISPATCH PLAN ──────────────────────────
Phase 1 — Parallel [units that can run simultaneously]
[U1] [INLINE] [one-line description]
[U2] [SUBAGENT:explore] [one-line description]
[U3] [SUBAGENT:general] [one-line description]
Phase 2 — Sequential [units depending on Phase 1]
[U4] [INLINE] [one-line description] (depends on U1)
Phase 3 — Human checkpoint
[U5] [HUMAN] [what needs user judgment and why]
─── FAILURE RISKS ──────────────────────────
[List any flagged patterns from Step 6, or "None identified"]
─── DELEGATION SPECS ───────────────────────
[For each subagent unit, show the 4-element spec or flag what's missing]
═══════════════════════════════════════════
TIER: [SIMPLE / COMPARISON / COMPLEX — from the three-tier scale]
Tier definitions (from Anthropic's multi-agent research system):
After the report, offer exactly 2 options:
$ARGUMENTS and no plan exists, say: "No task found. Pass a task description: /agent-capacity [description] or create a plan first."Input: "Fix the risk.py per-market cost check — it doesn't include existing position cost"
TASK: Fix risk.py per-market cost validation to include existing position cost
UNITS: 1
ENUMERABLE: YES
Phase 1 — Inline
[U1] [INLINE] Add existing position cost to per-market check in risk.py
FAILURE RISKS: None identified
TIER: SIMPLE
Input: The 12-item mm-alpha audit list (bugs + dead code + strategy gaps)
TASK: Address 12 audit findings across mm-alpha codebase
UNITS: 12
ENUMERABLE: YES
Phase 1 — Parallel (independent fixes)
[U1] [INLINE] Fix risk.py per-market cost check (1 file, 1 line)
[U8] [SUBAGENT:general] Remove 4 dead code items (_ensure_sdk_client, get_skew_cents, check_inventory_limits, get_expiry_bonus)
[U5] [SUBAGENT:explore] Investigate max_quote_size usage — confirm it's truly unused
Phase 2 — Sequential
[U2] [INLINE] Add pagination to get_fills() (depends on understanding current implementation)
[U6] [HUMAN] Amend threshold inconsistency — which behavior is correct? (needs user judgment)
[U7] [INLINE] Add market dequeue logic for out-of-zone markets
Phase 3 — Design required
[U3] [HUMAN] Adverse-selection detection — needs design approval before implementation
[U4] [HUMAN] TIME_OF_DAY_FILTERS integration — needs strategy decision
FAILURE RISKS:
- Moving target: if dead code removal (U8) changes imports, U2/U7 may need adjustment
- Over-delegation risk: U1 is a one-line fix, do not subagent it
TIER: COMPARISON
Source: ClaudeMonetFullStack/claude-skills — distributed by TomeVault.