ralphctl-minimal-scaffolding

ralphctl-minimal-scaffolding is a skill for Claude Code, Codex from lukas-grigis/ralphctl. It costs 118 tokens per session (954 once invoked), scanned A, original, MIT.

A set of rules for keeping the extra structure around AI coding small. This structure can include prompts, wrapper scripts, checks, and approval steps.

In plain words
What is it for?
Use it when reviewing an AI coding workflow, adding a new safeguard, or upgrading the model it uses. It helps decide whether a prompt, check, guardrail, or other support is still necessary.
Why use it?
AI workflows often collect layers that solved old problems but are no longer needed. This helps identify and remove those layers one at a time, using measurements to check the result.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when reviewing an AI coding workflow, adding a new safeguard, or upgrading the model it uses. It helps decide whether a prompt, check, guardrail, or other support is still necessary.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lukas-grigis/ralphctl/ralphctl-minimal-scaffolding
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 lukas-grigis/ralphctl --skill ralphctl-minimal-scaffolding
Clone the repo
git clone --depth 1 https://github.com/lukas-grigis/ralphctl

Made for: Claude Code, Codex.

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 ralphctl-minimal-scaffolding

README.md
[![agentmods](https://agentmods.dev/badge/skills/lukas-grigis/ralphctl/ralphctl-minimal-scaffolding/github.svg)](https://agentmods.dev/skills/lukas-grigis/ralphctl/ralphctl-minimal-scaffolding)
Your own site
<a href="https://agentmods.dev/skills/lukas-grigis/ralphctl/ralphctl-minimal-scaffolding"><img src="https://agentmods.dev/badge/skills/lukas-grigis/ralphctl/ralphctl-minimal-scaffolding/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 ralphctl-minimal-scaffolding

Your own site · 80×15
<a href="https://agentmods.dev/skills/lukas-grigis/ralphctl/ralphctl-minimal-scaffolding"><img src="https://agentmods.dev/badge/skills/lukas-grigis/ralphctl/ralphctl-minimal-scaffolding.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 118 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 954 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.00118 $0.00954
Opus 5 $0.00059 $0.00477
Sonnet 5 $0.00024 $0.00191
Haiku 4.5 $0.00012 $0.00095

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

Security

Grade A, and why

ralphctl-minimal-scaffolding 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.

src/integration/ai/skills/bundled/ralphctl-minimal-scaffolding/SKILL.md · 60 lines

How it starts

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

Minimal Scaffolding

"Find the simplest solution possible, and only increase complexity when needed. Every component encodes assumptions about model limitations. Stress-test assumptions; they can go stale quickly as models improve. Remove one component at a time when simplifying. Re-examine the whole system when a new model releases; strip non-load-bearing pieces."

— Anthropic, Harness Design for Long-Running Application Development

Scaffolding built around AI usage — prompts, wrapper scripts, extra validation steps, guardrails — drifts upward in complexity by default. Each piece that solves a real problem at the time of its addition becomes a permanent fixture, even after the model capability that made it necessary has improved past the threshold. Without an active counter-pressure, the scaffolding grows into a weight that slows iteration and obscures the actual design signal. Minimal scaffolding is not a one-time decision at design time; it is a discipline applied on every model upgrade and on every proposed addition.

When this applies

  • Refine — before proposing that the requirements need an extra review gate, an extra validation pass, or an approval step to compensate for the model, ask whether the model would produce the right output without it given a well-scoped prompt.
  • Plan — before adding an extra AI-assisted review step or splitting the work into more stages, ask whether the additional structure would improve output quality measurably, or whether it is defensive scaffolding against a past model's limitations.
  • Execute — before wiring a new wrapper, guard clause, or retry layer around an existing AI-assisted check, ask which assumption about current model capability the addition encodes, and whether that assumption is still valid.

What to do

  1. Start with the simplest viable shape. Draft the simplest version that could work given today's model capability. Only add components when the simple version demonstrably fails.
  2. Question every component on every model upgrade. When a new model version ships, re-read the project's own notes on why each piece of AI-workflow scaffolding exists, if the project keeps them. For each one, ask: "Would removing this component degrade output quality on the new model?" If the answer is uncertain, run the test.
  3. Remove one component at a time, measure. Never remove two pieces of scaffolding simultaneously — you cannot isolate the regression. Remove one; run the project's check gate; observe output quality; decide.
  4. Default toward subtraction over addition. When in doubt, omit. Adding a component later when its need is proven is cheaper than carrying a component whose need was assumed.

Read the full file on GitHub · 60 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 · 60 lines · 118 tokens per session scan A 00cdfc6c4428

Subscribe to this mod's changes

ralphctl-minimal-scaffolding is a skill published in the GitHub repository lukas-grigis/ralphctl (23 stars, last pushed yesterday), licensed MIT. It adds 118 tokens to every session and 954 once invoked, about $0.0006 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

rework-rate

Measure and interpret PR rework rate — the emerging 5th DORA metric.

bradygaster/squad · 20 tokens

My Skill

Content here.

bradygaster/squad · 2 tokens

atomic-visual-options

Planning-phase visual comparison aid. Renders 2-4 side-by-side variants per decision dimension as a single throwaway, self-contained HTML file and captures the user's pick as typed terminal codes (e.g. "A2 B3"). Auto-fires on phrases like "show me a few options", "mock up some variants", "let me see this side by…

damusix/atomic-claude · 150 tokens

atomic-wiki

Conversational wiki and capture-bucket routing. Fires when the user wants a place, space, or folder for notes, research, tickets, raw dumps, or knowledge capture — checks the block in /.claude/CLAUDE.md; if the cwd is under a registered realm, creates the folder as a bucket via atomic wiki bucket add rather than a…

damusix/atomic-claude · 204 tokens

atomic-review

Compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", or invokes /atomic-review. Auto-triggers when reviewing pull requests.

damusix/atomic-claude · 63 tokens

atomic-verify

Evidence-before-claim gate. Auto-triggers when Claude is about to claim "done", "fixed", "passing", "complete", "ready to merge", "looks good", "should work", "should pass", "green", or any synonym. Iron rule: no completion claim without a fresh verification command run in this turn. Explicit invocation…

damusix/atomic-claude · 79 tokens