blueprint

blueprint is a skill for Claude Code from Alexander-Tyagunov/magician. It costs 45 tokens per session (107 once invoked), scanned A, original, MIT.

A planning tool that turns an approved project specification into a task plan, showing which tasks can run in parallel and which must wait.

In plain words
What is it for?
Use it after approving a specification to prepare an implementation plan saved in the project's shared workspace.
Why use it?
It removes the need to work out task order and dependencies by hand before coding.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Codex.

Part of the magician plugin — 26 skills, 4 agents, 10 hooks shipped together

Good fit Use it after approving a specification to prepare an implementation plan saved in the project's shared workspace.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alexander-tyagunov/magician/blueprint
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 Alexander-Tyagunov/magician --skill blueprint
Clone the repo
git clone --depth 1 https://github.com/Alexander-Tyagunov/magician

Made for: Claude Code.

Or install magician, the plugin that ships this one along with the rest of its 26 skills, 4 agents, 10 hooks.

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 blueprint

README.md
[![agentmods](https://agentmods.dev/badge/skills/alexander-tyagunov/magician/blueprint/github.svg)](https://agentmods.dev/skills/alexander-tyagunov/magician/blueprint)
Your own site
<a href="https://agentmods.dev/skills/alexander-tyagunov/magician/blueprint"><img src="https://agentmods.dev/badge/skills/alexander-tyagunov/magician/blueprint/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 blueprint

Your own site · 80×15
<a href="https://agentmods.dev/skills/alexander-tyagunov/magician/blueprint"><img src="https://agentmods.dev/badge/skills/alexander-tyagunov/magician/blueprint.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 107 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.
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.00045 $0.00107
Opus 5 $0.00023 $0.00053
Sonnet 5 $0.00009 $0.00021
Haiku 4.5 $0.00005 $0.00011

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

Security

Grade A, and why

blueprint 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 12d 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.

.codex-plugin/skills/blueprint/SKILL.md · 9 lines

What it actually says

$blueprint — Codex Adapter

Read ../../references/codex-adapter.md, then read ../../../skills/blueprint/SKILL.md and follow the source skill through that Codex adapter. Keep the source skill's gates, safety checks, and completion criteria.

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. 12d ago First seen · 9 lines · 45 tokens per session scan A 38204bf9ae42

Subscribe to this mod's changes

blueprint is a skill published in the GitHub repository Alexander-Tyagunov/magician (14 stars, last pushed 11d ago), licensed MIT. It adds 45 tokens to every session and 107 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

workflow-patterns

Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol.

wshobson/agents · 35 tokens

principle-test-behavior-not-implementation

Apply when you write, change, or keep a test. Call the code the way its users do and assert the result they observe against a literal expected value. If the test would still pass when every imported function returns undefined, rewrite the assertion or delete the test.

michael-denyer/pstack-claude · 63 tokens

tdd

A Test-Driven Development guide. TDD means writing a failing test first, adding the smallest implementation that passes it, and then improving the code while keeping the tests passing.

Insajin/autopus-adk · 11 tokens

debugging

A structured method for finding and fixing software bugs. It starts by writing a test that reproduces the failure, then investigates its underlying cause before making a small fix.

Insajin/autopus-adk · 16 tokens

eval-backfill

Run the eval harness against every card under example-cards/ in parallel and persist scores to eval/store.sqlite. Use when the user asks to "backfill", "score everything", or "score all cards" for quality eval.

hoangsonww/AI-News-Briefing · 46 tokens

eval-regression

Re-judge every pinned golden card in eval/golden/ and fail if any composite has dropped more than 0.5 points vs its baseline. Use when the user asks to "run regression", "check golden set", or wants CI-style quality gating after a prompt or judge change.

hoangsonww/AI-News-Briefing · 58 tokens