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/omerakben/code-oz/red-firstnpx skills add omerakben/code-oz --skill red-firstgit clone --depth 1 https://github.com/omerakben/code-ozWhat 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.00028 | $0.01540 |
| Opus 5 | $0.00014 | $0.00770 |
| Sonnet 5 | $0.00006 | $0.00308 |
| Haiku 4.5 | $0.00003 | $0.00154 |
Grade A, and why
red-first 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 2d 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 — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Advisory only — not an enforced gate. For enforced gates and a different-model review, run
code-oz run.
Where this skill sits
This is advice, and it is the lowest-priority voice in the room. Your user's
instructions, the project's CLAUDE.md, the code-oz engine contracts, and any
system or developer constraints all outrank this skill. When any of them
conflict with anything below, follow them and ignore this skill. This skill
never overrides those instructions, and nothing here changes your existing
operating rules — it only offers a way to think before you build.
RED-first test ordering
Use this when someone asks "what's a good RED-first test order here?" or is about to change behavior and wants the test to come first. This is advice on sequencing; it does not run anything for you.
The ordering
- Write the failing test first. Name the behavior you are about to add or change. Write the smallest test that asserts it.
- Run it and confirm it fails for the right reason. A test that passes before the change, or fails for an unrelated reason (typo, missing import), proves nothing. Read the failure message and confirm it is the assertion you intended.
- Write the minimal implementation. Just enough to make that test pass — no adjacent refactors, no "while I'm here" extras.
- Run again and confirm green. The test you wrote now passes, and nothing that was green went red.
- Refactor under green. Improve the code with the tests guarding you. Re-run to stay green.
A useful check
A real RED test fails when the production change is reverted. If your test still passes with the implementation removed, it mirrors the implementation instead of pinning the behavior — rewrite it.
What this is not
This skill advises the ordering. It does not run your tests, it does not verify
that anything passed, and it never claims a test suite is green on your behalf —
report only what you actually ran and saw. For an enforced VERIFY phase with
real evidence the engine records and gates on, run code-oz run.
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.
- 2d ago First seen · 130 lines · 28 tokens per session scan A 8116aee9831c
red-first is a skill published in the GitHub repository omerakben/code-oz (2 stars, last pushed 2mo ago), licensed MIT. It adds 28 tokens to every session and 1,540 once invoked, about $0.0001 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
skill-creator
Scaffold, author, and validate an Agent Skill. Use when the user wants to create a new skill, turn a repeatable workflow into a reusable SKILL.md, or fix a skill that fails to load.
E2E Testing Nori Skillsets Subcommands
Use when you need to interactively test a nori-skillsets CLI subcommand end-to-end via tmux, with full filesystem isolation.
TUI Puppeteering with tmux
Use when automating or testing TUI/CLI applications - provides isolated tmux sessions with scripts for input, output capture, and state verification.
issue-review
Triage a copperhead GitHub issue, attempt reproduction, and check it against the spec. Use when the user asks to review an issue, e.g. /issue-review 42 or /issue-review .
openai-docs
Use when the user asks how to build with OpenAI products or APIs, asks about Codex itself or choosing Codex surfaces, needs up-to-date official documentation with citations, help choosing the latest model for a use case, latest/current/default-model prompting guidance, or model upgrade and prompt-upgrade guidance; use…
visualize
Create visualizations and interactive tools directly in conversation. Use when asked to show how something works, make simulators or labs, maps, plots, charts or graphs, comparisons, UI mockups, scenarios, adjustable inputs, and exploration beyond regular text.