seal-plan

seal-plan is a skill for Claude Code from t1djani/servo. It costs 51 tokens per session (697 once invoked), scanned A, original, MIT.

A planning skill that turns an approved specification into a closed, portable plan with acceptance checks that a machine can verify.

In plain words
What is it for?
Use it after a specification passes review to define exact implementation steps, preserved constraints, and tests or other acceptance criteria.
Why use it?
It removes unanswered choices and prevents different executors from interpreting the plan differently or relying on requirements that may change.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: names the TodoWrite tool.

Part of the servo plugin — 9 skills, 1 command shipped together

Good fit Use it after a specification passes review to define exact implementation steps, preserved constraints, and tests or other acceptance criteria.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/t1djani/servo/seal-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 t1djani/servo --skill seal-plan
Clone the repo
git clone --depth 1 https://github.com/t1djani/servo

Made for: Claude Code.

Or install servo, the plugin that ships this one along with the rest of its 9 skills, 1 command.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/t1djani/servo/seal-plan"><img src="https://agentmods.dev/badge/skills/t1djani/servo/seal-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 697 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.00051 $0.00697
Opus 5 $0.00026 $0.00349
Sonnet 5 $0.00010 $0.00139
Haiku 4.5 $0.00005 $0.00070

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

Security

Grade A, and why

seal-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 9d 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.

skills/seal-plan/SKILL.md · 32 lines

How it starts

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

seal-plan

A plan is the hardest artifact in the flow. Its whole job is to be portable and deterministic: hand it to another conversation, or a smaller model, and you should get the same result. That only holds if the plan is sealed. Three properties seal it.

The three properties

  • Closed — zero open decisions. Every choice was made upstream (expert-panel, shape-spec). The plan is pure convergence. A plan that still contains a decision delegates that divergence to execution time, where each executor will resolve it differently — non-deterministic by construction. If you find an open choice while writing the plan, stop and settle it upstream.

  • Pinned to a machine-checkable acceptance oracle. "Same result" needs a definition of "same". It is behavioral equivalence: the same acceptance criteria pass, the same invariants hold — not character-identical output. So the plan must name an acceptance oracle that a machine can check (tests, criteria), and snapshot the volatile part into the plan itself. A plan whose acceptance target can drift between writing and execution is not deterministic. (This is where a plan differs from a spec: the spec points at a live oracle for freshness; the plan snapshots for determinism.)

  • Written for the weakest executor (plan-to-the-floor). Portability is relative to a capability floor. Write the plan for the least capable model you intend to run it on: exact file paths, complete code in every step, exact commands with expected output, zero placeholders. Writing for a strong model and running on a weak one breaks; the reverse is safe. If you will delegate to a cheaper model, the plan must be constrained enough that the cheap model cannot go wrong.

Procedure

  1. Map the files each task touches, then break the work into bite-sized, test-first tasks. Embed the spec's invariants inline so the executor cannot miss them.
  2. For each task: the failing test, the command to see it fail, the minimal code, the command to see it pass, the commit. Real content in every step.
  3. Snapshot the acceptance criteria into the plan.
  4. Gate the plan. Run servo-gate against spec (does the plan cover it, no creep?) and against the plan's own closedness (any open decision, placeholder, or unreachable acceptance check is a STOP). Fix before executing.

Read the full file on GitHub · 32 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. 9d ago First seen · 32 lines · 51 tokens per session scan A 8ffb517177f1

Subscribe to this mod's changes

seal-plan is a skill published in the GitHub repository t1djani/servo (1 stars, last pushed 2mo ago), licensed MIT. It adds 51 tokens to every session and 697 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

quiz-me

Quiz the user on root cause and intended fix BEFORE writing any non-trivial code, then verify comprehension of every change after. Use when the user asks for a bug fix, refactor, or feature and wants to stay technically sharp instead of vibe-coding. Also use when the user says "quiz me", "don't let me vibe code", or…

emanzurv/quiz-me-skill · 82 tokens

website-deploy-builder

Plan what to build on Website Deploy (simple-host.app). Helps a user decide whether their idea fits the static + light-backend model, maps it to concrete patterns (shared JSON state with atomic ops, append-only collections, localStorage, public APIs), and produces a focused prompt for an implementation agent. Knows…

vineetu/simple-host · 128 tokens

connect-domain

Connect a user's own custom domain (subdomain e.g. recipes.brand.com via CNAME, or apex e.g. brand.com via A record) to a site already deployed on simple-host. Use when a user wants their site served from their own domain over HTTPS, or wants sign-in on saves from a page (a domain is what adds sign-in to saves; on the…

vineetu/simple-host · 119 tokens

craft

Engineering standards for any code work on any stack — writing production code, slicing and reviewing PRs, authoring tests, running gates, merging, and running agent fleets. Load before touching code, not after review flags it.

abhimanyusingh-gh/software-craftsmanship · 47 tokens

personal-voice-capture

Use when a user wants an agent to learn, encode, or improve their personal writing voice as a reusable skill through source-text ingestion and iterative calibration edits.

eranshir/personal-voice-capture · 37 tokens

demo-video-factory

Generate a custom 26s product-demo video from any SaaS URL — brand-matched scenes, a recreated product-UI "wow" scene, real screenshots, and a soundtrack. Use whenever the user wants a demo, promo, launch, or marketing video for a website or product.

jonny-1812/demo-video-factory · 63 tokens