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 agentmods add skills/lukas-grigis/ralphctl/verifynpx skills add lukas-grigis/ralphctl --skill verifygit clone --depth 1 https://github.com/lukas-grigis/ralphctlWrote 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/lukas-grigis/ralphctl/verify)<a href="https://agentmods.dev/skills/lukas-grigis/ralphctl/verify"><img src="https://agentmods.dev/badge/skills/lukas-grigis/ralphctl/verify.svg" alt="Measured on agentmods" 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 | $0.00054 | $0.00468 |
| Opus 5 | $0.00027 | $0.00234 |
| Sonnet 5 | $0.00011 | $0.00094 |
| Haiku 4.5 | $0.00005 | $0.00047 |
Grade A, and why
verify 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 4d 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.
What it actually says
Verify
Run the project's verification gate as a single command:
pnpm typecheck && pnpm lint && pnpm test
All three MUST pass. If any step fails, report which one, show the error, and stop — don't move on until the failure is addressed.
Why these three, in this order
pnpm typecheck—tsc(noEmitset intsconfig.json). Fastest feedback; catches most issues.pnpm lint— ESLint. Includes the Clean Architecture layer fence (domain → business → integration → application), the no-class fence (outsidedomain/value/error/), the no-barrels fence, and the sibling-isolation rules underintegration/ai/<concept>/. A layer violation shows up here.pnpm test— vitest (vitest run). The full suite, including flow step-order integration tests that lock the architectural shape.
Running them chained with && short-circuits on the first failure, which is what we want.
Not a replacement for
pnpm format:check/pnpm format— Prettier. The pre-commit hook handles staged files; runformat:checkmanually for a full sweep before opening a PR.pnpm deadcode— knip. One-off audit; symbols intentionally exported are whitelisted via@publicJSDoc tag +knip.json#tags: ["-public"].pnpm build—tsup+tsx scripts/build-assets.ts. Only needed before publishing to npm; CI verifies the bundle from arbitrary cwd.
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.
- 4d ago First seen · 37 lines · 54 tokens per session scan A 3028bc493c7f
verify is a skill published in the GitHub repository lukas-grigis/ralphctl (23 stars, last pushed today), licensed MIT. It adds 54 tokens to every session and 468 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-30.
Other skills, from other repositories
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.
skill-doc-delivery
Convert markdown to DOCX, PPTX, XLSX, PDF office documents — use when you need exportable deliverables.
skill-copilot-provider
GitHub Copilot CLI as optional zero-cost provider via copilot -p programmatic mode.
bf-to-agents-sdk-dotnet-migration
Use when migrating a Bot Framework .NET SDK bot to Microsoft 365 Agents SDK. Triggered by projects that depend on packages: Microsoft.Bot.Builder or Microsoft.Bot.Builder.Integration.AspNet.Core that want to migrate to Agents SDK.
macos-swiftpm
Build, run, and test SwiftPM macOS packages and executables. Use when the repo is package-first or has no Xcode project.
fix-codesign-error
Slash command that inspects a macOS signing or entitlement failure and explains the minimum fix path. Invoke explicitly with /fix-codesign-error — this skill never self-triggers.