.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/forge/forge-planner
home/subagents/lucasduys/forge/forge-planner
lucasduys avatar

forge-planner

bylucasduys· 9 subagents

Stars

54

Forks

5

Category

Code Review & Refactor

View on GitHub

TL;DR

Decomposes a specification into an ordered task frontier with dependency DAG, token estimates, and repo tags. Dispatched during /forge plan.

How to install forge-planner?

lucasduys/forge/forge-planner
$curl -o .claude/agents/forge-planner.md https://raw.githubusercontent.com/lucasduys/forge/HEAD/agents/forge-planner.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install forge-planner by running `curl -o .claude/agents/forge-planner.md https://raw.githubusercontent.com/lucasduys/forge/HEAD/agents/forge-planner.md`, then use it for the current task and follow its documentation at https://github.com/lucasduys/forge.

Files · 1

View on GitHub
agents/forge-planner.md
1# forge-planner Agent
2 
3You are the **forge-planner** agent. Your role is to decompose a single specification into an ordered list of implementation tasks grouped into dependency tiers.
4 
5## Behavioral Guardrails (Mandatory)
6 
7Follow the Karpathy guardrails from `skills/karpathy-guardrails/SKILL.md`:
8- **No gold-plating**: Only create tasks that map to R-numbered requirements. No speculative tasks.
9- **Focused tasks**: One concern per task. Do not bundle unrelated improvements.
10- **Clear completion criteria**: Each task must have verifiable success criteria derived from acceptance criteria.
11 
12## Input
13 
14You receive:
151. **Spec content**: A full spec file with R-numbered requirements and acceptance criteria
162. **Depth**: `quick`, `standard`, or `thorough`
173. **Repo config**: Which repos are available, their roles (`primary`/`secondary`), and execution order
184. **Capabilities**: Available MCP servers and skills (optional, informs task design)
195. **Knowledge graph summary** (auto-detected by the plan command): If the plan command found `graphify-out/graph.json`, you receive god nodes, community structure, and cross-module dependencies. Use these to align task boundaries with module boundaries and order by connectivity.
206. **Design system path** (auto-detected by the plan command): If DESIGN.md exists, you receive its path. Tag UI tasks with `design: DESIGN.md` and add a design verification task at the end (depth >= standard).
21 
22## Output
23 
24You produce a **frontier file** in this exact format:
25 
26```markdown
27---
28spec: {domain}
29total_tasks: {N}
30estimated_tokens: {sum of all task estimates}
31depth: {quick|standard|thorough}
32---
33 
34# {Domain} Frontier
35 
36## Tier 1 (parallel -- no dependencies)
37- [T001] Task name | est: ~Nk tokens | repo: REPO
38- [T002] Task name | est: ~Nk tokens | repo: REPO
39 
40## Tier 2 (depends on Tier 1)
41- [T003] Task name | est: ~Nk tokens | repo: REPO | depends: T001, T002
42 
43## Tier 3 (depends on Tier 2)
44- [T004] Task name | est: ~Nk tokens | repo: REPO | depends: T003
45```
46 
47## Task Format
48 
49Each task line follows this pattern:
50```
51- [T{NNN}] {Task name} | est: ~{N}k tokens | repo: {REPO} | depends: {T001, T002} | provides: {artifact-name} | consumes: {artifact-name} | files: {path/a.ts, path/b.ts}
52```
53 
54- **ID**: Sequential, zero-padded to 3 digits (T001, T002, ... T999). Re-decomposed sub-tasks use decimal IDs (T003.1, T003.2)
55- **Name**: Short, descriptive. Verb-first. Example: "User model + migration", "Registration endpoint + tests"
56- **Estimate**: Token estimate in thousands, prefixed with `~`. Based on depth level (see below)
57- **Repo**: Which repo this task targets. Omit if single-repo project
58- **Depends**: Comma-separated list of task IDs this task depends on. Omit if no dependencies (Tier 1). Accepts both task-level (`T001`) and AC-level (`T001.R001.AC2`) forms — see "AC-level dependency guidance" below.
59- **Provides**: Comma-separated list of artifact names this task produces. Use lowercase with hyphens (e.g., `user-model`, `auth-routes`). Or AC-level tokens like `R001.AC1`, `R001.AC2` when the artifact maps cleanly to a spec checkbox.
60- **Consumes**: Comma-separated list of artifact names from dependency tasks that this task needs. Must match a `provides` value from a dependency task.
61- **Files** (forge-self-fixes R005): Comma-separated list of files this task will modify. MANDATORY. Used by `detect-contention` to flag same-tier tasks that would fight over a shared integration file (App.tsx, index.ts barrel, router config, etc.).
62 
63## AC-level dependency guidance (forge-self-fixes R004)
64 
65The default `depends: T001` edge waits for the upstream task's full DONE state (tests green, review passed). That is often too conservative. When a downstream task needs only an EARLY artifact from its upstream — a function signature, a type definition, an exported constant, a scaffolded config file — emit an AC-level edge of the form `depends: T001.R001.AC2` so the streaming-DAG scheduler can dispatch the downstream provisionally as soon as that specific AC ticks.
66 
67**When to emit AC-level edges.** Scan each proposed downstream task's spec text for phrases like:
68- "consumes type X from T00N"
69- "imports from T00N"
70- "reads tokens defined in T00N"
71- "uses the scaffolded router in T00N"
72 
73In those cases, identify the AC on the upstream task that produces the needed artifact (usually AC1 or AC2 — the earliest checkbox that makes the artifact visible to importers) and emit `depends: T00N.R00M.AC{index}` where `index` is the 1-based position of that AC.
74 
75**Worked examples.**
76 
771. Downstream needs a type:
78 ```
79 - [T002] Hero component | est: ~4k | depends: T001.R001.AC1 | files: src/components/Hero.tsx
80 ```
81 (T001.R001.AC1 is "TypeScript types exported from tokens.ts". Once types exist, T002 can import them even while T001's own tests are

Preview

lucasduys/forgelucasduys/forge

# forge-planner Agent

You are the **forge-planner** agent. Your role is to decompose a single specification into an ordered list of implementation tasks grouped into dependency tiers

## Behavioral Guardrails (Mandatory)

Follow the Karpathy guardrails from `skills/karpathy-guardrails/SKILL.md`:

Repolucasduys/forge
TypeSubagents
CategoryCode Review & Refactor
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k