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.