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.
npx skills add hg-pyun/claude-code-marketplace --skill ralphgit clone --depth 1 https://github.com/hg-pyun/claude-code-marketplaceWrote 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.
[](https://agentmods.dev/skills/hg-pyun/claude-code-marketplace/ralph)<a href="https://agentmods.dev/skills/hg-pyun/claude-code-marketplace/ralph"><img src="https://agentmods.dev/badge/skills/hg-pyun/claude-code-marketplace/ralph/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.
<a href="https://agentmods.dev/skills/hg-pyun/claude-code-marketplace/ralph"><img src="https://agentmods.dev/badge/skills/hg-pyun/claude-code-marketplace/ralph.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00100 | $0.06537 |
| Opus 5 | $0.00050 | $0.03268 |
| Sonnet 5 | $0.00020 | $0.01307 |
| Haiku 4.5 | $0.00010 | $0.00654 |
Grade A, and why
ralph 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 267 lines — stays where its author put it; the contents beside it link to each section on GitHub.
<Use_When>
- A plan (
.dt-handoff/<slug>/plan.md) is approved and execution must complete every story before stopping. - User says "ralph", "/ralph", "keep going until done", "끝까지 가줘", "finish this".
- The task suits PRD-driven progress (multiple independently verifiable stories).
autopilotPhase 3 (Execution) invokes this skill as a sub-step.- A prior run left an incomplete
.dt-handoff/<slug>/prd.jsonto resume. </Use_When>
<Do_Not_Use_When>
- The user wants requirements capture (WHAT, not HOW), not execution → establish a spec first; ralph runs an existing plan/PRD.
- The user wants consensus planning →
ralplan. - The user wants parallel multi-agent decomposition →
team. - The user wants a one-shot / trivial change → delegate to
executordirectly, no PRD overhead. - The user wants automatic commit/PR → refuse; ralph stops at "ready for commit".
- No spec / plan exists and the task is vague → route to
ralplanfirst to scope the work. </Do_Not_Use_When>
<Why_This_Exists>
Complex tasks fail silently when an agent declares "done" on a partial implementation, skips tests, or forgets an edge case. The PRD loop structures work into stories with testable acceptance criteria and refuses to mark a story complete without fresh per-criterion evidence from the verifier agent — not inline self-verification. The reviewer pass adds an independent second opinion before declaring the batch ready.
The TDD Iron Law (failing test before production code) is enforced inside every story so tests encode intent rather than mirror implementation. The code-simplifier cleanup (Step 7.5) removes slop introduced during the loop, scoped to changed files; the post-cleanup regression re-verify exists because even small cleanup edits can regress. The 3-failure escalation branches by failure type — root cause unclear → debugger, design fundamentally wrong → architect — to avoid grinding on the wrong specialist.
Auto commit/PR is prohibited because this marketplace's git-commit / github-pr skills are user-triggered by design; chaining them would skip review opportunities the user expects.
The loop stays thin: handoff mechanics (@handoff-in/@handoff-out, descriptors, events.jsonl) are defined once in the handoff protocol; this skill references them rather than re-spelling them per step.
</Why_This_Exists>
<Execution_Policy>
Output language: status reports, story descriptions, and progress.txt use $LANGUAGE. prd.json field VALUES (descriptions, AC text) use $LANGUAGE; field NAMES stay English.
TDD Iron Law (non-negotiable): for each story, the test-engineer pass MUST produce a Red test that runs and fails for the expected reason BEFORE executor writes production code. Skipping Red is forbidden. Exception: pure-refactor stories tagged refactor may proceed without a new Red test if existing tests cover the behavior — note the exception in the story's progress entry.
Verdict routing (single source — steps reference this, never re-describe): verifier and the approver (reviewer or critic) return a machine-readable @handoff-out block with a verdict field. Route on the enum, NEVER on prose keyword matching:
APPROVE/ACCEPT_WITH_RESERVATIONS→ proceed (note reservations in the report).REVISE/ITERATE→ mark affected storiespasses: false, dispatchexecutorto fix, re-invoke the same agent; loop to Step 2. Do NOT self-verify.REJECT(3rd consecutive from the approver) → stopREVIEW_BLOCKED.
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.
- 8d ago First seen · 267 lines · 100 tokens per session scan A 9050303441b3
ralph is a skill published in the GitHub repository hg-pyun/claude-code-marketplace (2 stars, last pushed 2mo ago), licensed MIT. It adds 100 tokens to every session and 6,537 once invoked, about $0.0005 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.
Other skills, from other repositories
engram-testing-coverage
TDD and coverage standards for Engram. Trigger: When implementing behavior changes in any package.
nw-fp-clojure
Clojure language-specific patterns, data-first modeling, REPL-driven development, and spec.
strict-tdd
Strict RED->GREEN->REFACTOR test-driven development with enforcement. Never write production code before a failing test. Atomic commits per TDD cycle.
mobiai-mobile-tdd
You MUST use this before writing any implementation code for a mobile feature, bug fix, refactor, or behavior change. Tests come before implementation — no exceptions.
tdd
This skill should be used when the user wants to implement features or fix bugs using test-driven development. Enforces the RED-GREEN-REFACTOR cycle with vertical slicing, context isolation between test writing and implementation, human checkpoints, and auto-test feedback loops. Uses multi-agent orchestration with the…
conductor-implement
Execute tasks from a track's implementation plan following TDD workflow.