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 camilooscargbaptista/cto-toolkit --skill elixir-reviewgit clone --depth 1 https://github.com/camilooscargbaptista/cto-toolkitWrote 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/camilooscargbaptista/cto-toolkit/elixir-review)<a href="https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/elixir-review"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/elixir-review.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.1 | $0.00025 | $0.00677 |
| Opus 5 | $0.00013 | $0.00338 |
| Sonnet 5 | $0.00005 | $0.00135 |
| Haiku 4.5 | $0.00003 | $0.00068 |
Grade A, and why
elixir-review 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 7d 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 — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Elixir / Phoenix Code Review
When to Use
- Reviewing Elixir code (Phoenix, OTP, GenServer, LiveView)
- Evaluating fault tolerance patterns (supervision trees)
- Real-time system review (WebSocket, PubSub)
- Concurrency and scalability assessment
Review Checklist
OTP Patterns
- Supervision trees properly structured (one_for_one, rest_for_one)
- GenServers have clear purpose (not catch-all)
-
handle_infohandles unexpected messages gracefully - Timeouts configured for long-running GenServers
- Process registry used (not PID passing)
- ETS tables for read-heavy shared state
Phoenix Best Practices
- Contexts separate business logic from web layer
- Schemas define changesets with validation
- Controllers are thin (delegate to context)
- Plugs for cross-cutting concerns (auth, logging)
- Ecto queries composed (not raw SQL unless necessary)
- Background jobs via Oban (not raw Task.async)
Phoenix LiveView
-
handle_eventfunctions are small and focused -
assignused for all state (no process dictionary) -
phx-throttle/phx-debounceon frequent events - PubSub for real-time updates across users
- Dead views implement
mount/3with proper assigns -
live_redirectvspush_patchused correctly
Elixir Best Practices
- Pattern matching over if/else chains
- Pipe operator (
|>) for data transformations -
withfor multi-step operations with error handling -
@spectype specs on public functions -
@docdocumentation on public functions - Structs for domain entities (not naked maps)
- Guards for function clause selection
-
EnumandStreamused appropriately (eager vs lazy)
Concurrency
- Tasks supervised (not fire-and-forget)
- GenServer state doesn't grow unbounded
- Message queue monitored (Process.info for mailbox)
- Backpressure implemented for high-throughput
- Database connection pool sized correctly
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.
- 7d ago First seen · 78 lines · 25 tokens per session scan A ed066fc8a602
elixir-review is a skill published in the GitHub repository camilooscargbaptista/cto-toolkit (7 stars, last pushed 5mo ago), licensed MIT. It adds 25 tokens to every session and 677 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
elixir-expert
Expert-level Elixir, Phoenix, OTP, and concurrent systems. Use when the user mentions Phoenix, OTP, Erlang, concurrent, or functional, or when the task involves Elixir Fundamentals or Phoenix Framework.
readonly-review
Run a no-network read-only review practice with two explorer steps and one synthesis step.
writing-review-packets
Create or revise Reviews packet markdown for a code diff, including section strategy, prose, hunk references, validation, and pushing packet revisions with the Reviews CLI. Use when the user asks to write a review packet, organize a diff for review, add prose around hunk refs, update a packet for a new patchset, or…
using-reviews-locally
Run and use the Reviews app locally, including server startup, port checks, local token setup, CLI config, pushing local reviews or new patchsets, and Codex workflow conventions. Use when the user asks to spin up Reviews, push a local review packet or revision, mint/access local API tokens, debug localhost review…
reviews-overview
Explain the Reviews platform to a general agent: what Reviews provides, when to use it during human-in-the-loop or agent-driven development, how review packets structure a diff for humans, and how Reviews can precede public PR creation or integrate with other review processes. Use when an agent needs to decide whether…
Elixir Patterns
Use this skill when working on Elixir/Phoenix projects and you want maintainable OTP-friendly structure, clear boundaries, and robust error handling.