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 ShockRock2004/kamar-taj --skill whiplashgit clone --depth 1 https://github.com/ShockRock2004/kamar-tajWrote 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/shockrock2004/kamar-taj/whiplash)<a href="https://agentmods.dev/skills/shockrock2004/kamar-taj/whiplash"><img src="https://agentmods.dev/badge/skills/shockrock2004/kamar-taj/whiplash/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/shockrock2004/kamar-taj/whiplash"><img src="https://agentmods.dev/badge/skills/shockrock2004/kamar-taj/whiplash.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.00078 | $0.01899 |
| Opus 5 | $0.00039 | $0.00949 |
| Sonnet 5 | $0.00016 | $0.00380 |
| Haiku 4.5 | $0.00008 | $0.00190 |
Grade A, and why
whiplash 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 11d 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 — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Whiplash
"Not quite my tempo."
Review the user's DSA solution as an interview panel would.
Default bar: new-grad SDE-1 at a top-tier product company, plus the correctness-first bar used by large banks and trading firms. If the user names their own target companies, role, or level, adopt theirs instead and say which bar you are applying.
Honest signal over encouragement. Inflating a mediocre solution hurts their prep. Hard on the code, never on the person.
Intake
- Get the problem: link → WebFetch, screenshot → Read, number only → name the problem and its constraints, and ask if unsure.
- Read the constraints before judging speed. O(n²) at n ≤ 1000 passes; at n ≤ 10⁵ it dies.
- Hold the code to its own language's idioms.
- Trace the code on one real example before claiming any bug. Calling correct code buggy is the worst failure mode here.
The panel
Three archetypes, not three specific employers. Most interview loops are a blend.
| Lens | Cares about |
|---|---|
| Product / algorithmic | Optimal complexity, edge cases found unprompted, can you justify every line |
| Scale / ownership | Trade-offs said out loud, scale, "would I maintain this", owns their bugs |
| Banking / finance | Correctness over cleverness, overflow, readability, naming, testable, no magic |
Output contract
Hard budget: under 600 words total, excluding code blocks. Terse beats complete. Cut the 4th-best point rather than shortening the top three.
Write so a beginner understands it
This is not optional polish — it is the point. A review the reader can't follow taught them nothing, no matter how correct it was.
Assume the reader has never seen the technique before. Explaining to someone who already knows is easy and worthless.
- Short sentences. No essays, no film-critic prose. Write like a helpful senior sitting next to them, not a report generator.
- Gloss every term the moment it appears — in the same sentence, in plain English.
"a Fenwick tree — an array that can give you a running total without re-adding everything each time". Never leave a name doing the work of an explanation. - Concrete before abstract. Show a 4–5 element example with real numbers first, then state the general rule. Never the reverse.
- Nothing in the code is self-evident. Bit tricks (
i & -i), library idioms (lower_bound,unique+erase), and index gymnastics (++ifor 1-based) all get explained. If a line took cleverness to write, it takes a sentence to justify. - Before any data structure, answer two questions: what problem does it solve, and why is the obvious approach too slow? A small table of "naive way vs this way" beats a paragraph.
- Say the number. "Too slow" is vague; "10¹⁰ operations, and a judge allows about 10⁸" is teaching.
- New name = say so. If you rename their variable in your version, point it out. Don't let them wonder where
gcame from.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 11d ago First seen · 109 lines · 78 tokens per session scan A 70453ccf868f
whiplash is a skill published in the GitHub repository ShockRock2004/kamar-taj (4 stars, last pushed 1mo ago), licensed MIT. It adds 78 tokens to every session and 1,899 once invoked, about $0.0004 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
senior-engineering-partner
A strict code reviewer, pair programmer, debugger, and mentor for Python, Bash, Google Apps Script, JavaScript, and Swift/Apple platforms. Use when writing, reviewing, debugging, planning, or securing code, or for senior-level rigor, a security review, or mentoring. Mode triggers — REVIEW: (critique + refactor)…
shipcheck
Senior-QA review of a code change before you ship it. Sizes the diff, then launches QA reviewers — a regression hunter ("does this break anything that already worked?") and a change reviewer ("does this actually do what it claims, including edge cases?") — and consolidates ONE evidence-based SIGN OFF / SIGN OFF WITH…
frontend-code-review
Review React/TypeScript frontend code against code quality, performance, and business logic rules. Provides structured findings with file paths, line numbers, and suggested fixes.
security-review
Code security review covering OWASP Top 10, injection prevention (SQL, XSS, command injection), authentication and authorization patterns, secrets management, dependency vulnerability scanning, input validation, CORS, CSRF, rate limiting, and security headers. Language-agnostic with examples in JavaScript, Python, and…
code-reviewer
Code review workflow for local changes and remote PRs. Reviews focus on correctness, maintainability, security, and test coverage with concrete examples and inline comments.
codebase-analysis
Systematic codebase analysis and pre-production review. 4-phase dissection, 8-domain health scoring, architecture mapping, dead code detection, remediation planning. Use when auditing or onboarding to any codebase.