fabrik-plan

fabrik-plan is a skill for Claude Code from handarbeit/fabrik. It costs 35 tokens per session (4,477 once invoked), scanned A, original, Apache-2.0.

An implementation-planning workflow that turns feature requirements and research findings into a concrete task list for developers.

In plain words
What is it for?
Use it to choose an implementation approach and produce a step-by-step plan that another developer can follow.
Why use it?
It removes design decisions from the coding stage by documenting the approach, file changes, interfaces, data structures, and risks beforehand.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the fabrik plugin — 12 skills shipped together

Good fit Use it to choose an implementation approach and produce a step-by-step plan that another developer can follow.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/handarbeit/fabrik/fabrik-plan
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.

Any agent
npx skills add handarbeit/fabrik --skill fabrik-plan
Clone the repo
git clone --depth 1 https://github.com/handarbeit/fabrik

Made for: Claude Code.

Or install fabrik, the plugin that ships this one along with the rest of its 12 skills.

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 fabrik-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/handarbeit/fabrik/fabrik-plan/github.svg)](https://agentmods.dev/skills/handarbeit/fabrik/fabrik-plan)
Your own site
<a href="https://agentmods.dev/skills/handarbeit/fabrik/fabrik-plan"><img src="https://agentmods.dev/badge/skills/handarbeit/fabrik/fabrik-plan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fabrik-plan

Your own site · 80×15
<a href="https://agentmods.dev/skills/handarbeit/fabrik/fabrik-plan"><img src="https://agentmods.dev/badge/skills/handarbeit/fabrik/fabrik-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,477 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.1 $0.00035 $0.04477
Opus 5 $0.00017 $0.02239
Sonnet 5 $0.00007 $0.00895
Haiku 4.5 $0.00003 $0.00448

Measured 10d ago against content hash 460d016d559e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

fabrik-plan 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 10d 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.

plugin/fabrik-workflows/skills/fabrik-plan/SKILL.md · 315 lines

How it starts

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

Fabrik Plan Stage

You are the Plan agent in the Fabrik SDLC pipeline. Your job is to design a concrete implementation approach based on the spec and research findings. You produce a plan that an implementer can follow task-by-task without needing to make design decisions.

Goal

Produce an implementation plan that is specific enough to follow mechanically, but flexible enough to accommodate discoveries during implementation.

Before You Start

Read the context files the engine has written to .fabrik-context/ in your working directory:

  • .fabrik-context/issue.md — the issue body (the spec); start here to understand what needs to be built
  • .fabrik-context/stage-Specify.md — the Specify stage output, if present
  • .fabrik-context/stage-Research.md — the research findings; this is your primary input for planning

These files are always fresher than the inline prompt. Read them before designing the approach.

What You Do

Design the approach

Based on the spec and research findings:

  • Choose the implementation approach, considering trade-offs
  • Decide on file organization (new files vs modifications)
  • Design interfaces, types, and data structures
  • Identify the testing strategy
  • Determine the order of operations (what to build first)

Make decisions. Don't present options — that was Research's job. If the research surfaced options and the user chose one, follow their choice. If no choice was made, make a reasonable one and document why.

Create the task checklist

Break the work into an ordered checklist using GitHub markdown checkboxes:

## Task Checklist

- [ ] Task 1: Brief description
- [ ] Task 2: Brief description
...

Tasks should be:

  • Ordered — each task can be done after the ones above it
  • Atomic — each task is a single logical unit of work (one commit)
  • Testable — you can verify each task is done correctly
  • Concrete — "Add FetchItemDetails method to github/project.go" not "Update the API layer"

Include testing tasks alongside the code they test, not as a separate phase at the end.

Read the full file on GitHub · 315 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. 10d ago First seen · 315 lines · 35 tokens per session scan A 460d016d559e

Subscribe to this mod's changes

fabrik-plan is a skill published in the GitHub repository handarbeit/fabrik (22 stars, last pushed yesterday), licensed Apache-2.0. It adds 35 tokens to every session and 4,477 once invoked, about $0.0002 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

forge-prd

Generate a structured PRD (markdown + meta) for a non-trivial build and auto-create a ticket per acceptance criterion (Forge Mission Control Phase 2, WP3 "PRD generator"). Use before starting a non-trivial feature/build, typically right after Deep Learn Mode. Trigger on "write a PRD", "generate a PRD", "scope this…

ForgeyClap/claude-forge · 87 tokens

ticket

Write or draft a minimal tracker ticket: a type/parent line, a terse " :" title, and 2 to 4 bullets of what should change and why in product language, and nothing else (no headings, no acceptance criteria, no Out-of-scope block, no verification gate). Project tokens read from .claude/harness/profile.md. Use when…

waqas1412/claude-harness · 0 tokens

timeline-creator

Create HTML timelines and project roadmaps with Gantt charts, milestones, phase groupings, and progress indicators. Use when users request timelines, roadmaps, Gantt charts, project schedules, or milestone visualizations.

mhattingpete/claude-skills-marketplace · 47 tokens

hr-talent

HR and talent management expertise for talent acquisition, performance management, compensation strategy, organizational design, culture building, succession planning, and D&I programs. Use when hiring, managing performance, designing organizations, or building culture.

travisjneuman/.claude · 47 tokens

leadership

Executive leadership expertise for decision-making, change management, crisis management, stakeholder management, team building, and organizational leadership. Use when leading teams, managing change, navigating crises, or developing leadership skills.

travisjneuman/.claude · 42 tokens

proposal-writer

Write a client proposal, quote, scope of work, or engagement letter for a service business. Covers project understanding, scope, timeline, pricing presentation, and terms. Use whenever the user asks for a proposal, quote, project proposal, client proposal, SOW, statement of work, engagement letter, or B2B service…

jezweb/claude-skills · 85 tokens