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 jorgegorka/ariadna --skill rails-backendgit clone --depth 1 https://github.com/jorgegorka/ariadnaWrote 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/jorgegorka/ariadna/rails-backend)<a href="https://agentmods.dev/skills/jorgegorka/ariadna/rails-backend"><img src="https://agentmods.dev/badge/skills/jorgegorka/ariadna/rails-backend/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/jorgegorka/ariadna/rails-backend"><img src="https://agentmods.dev/badge/skills/jorgegorka/ariadna/rails-backend.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.00036 | $0.01323 |
| Opus 5 | $0.00018 | $0.00661 |
| Sonnet 5 | $0.00007 | $0.00265 |
| Haiku 4.5 | $0.00004 | $0.00132 |
Grade A, and why
rails-backend 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 12d 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 — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Rails Backend Skill
Opinionated conventions for Rails backend code. Architecture is built on a single principle: place the domain model at the center. Controllers, jobs, and the console are all boundaries that orchestrate domain logic — they contain no business logic themselves.
Sub-files:
- MODELS.md — Concern architecture, associations, scoping, callbacks
- CONTROLLERS.md — REST conventions, strong params, concerns
- JOBS.md — _now/_later pattern, multi-tenancy context
- API.md — JSON responses, serialization, versioning
Core Philosophy
Domain Model at the Center
Controller ──┐
▼
Console ──► Domain Model ◄── Job
▲
Script ─────┘
card.close works identically whether called from a controller, job, console, or test. The domain model is the single source of truth for business behavior.
No New Architectural Artifacts
No service objects, form objects, interactors, or command pattern libraries. Building blocks:
- Models — domain entities and operations (ActiveRecord and plain Ruby)
- Concerns — organize model behavior into cohesive modules
- Controllers — HTTP boundary only
- Jobs — async boundary; delegate to model methods
- Views — render domain state (templates, not view components)
When something doesn't fit in an entity, create a plain Ruby object with a semantic name — not a new architectural pattern. A Signup class, not a SignupService. A Notifier, not a NotificationInteractor.
Preference for Rails Defaults
Minitest over RSpec · view templates over view components · ActiveRecord callbacks over observer patterns · Current over dependency injection · concerns over decorator libraries.
Domain Model Overview
Account (tenant/organization)
└── Users (members with roles)
└── Boards (project spaces)
└── Columns (workflow stages)
└── Cards (tasks/issues)
└── Comments, Assignments, Tags
What ships with it
4 files 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.
- 12d ago First seen · 170 lines · 36 tokens per session scan A 0018f4fa740f
rails-backend is a skill published in the GitHub repository jorgegorka/ariadna (21 stars, last pushed 5mo ago), licensed MIT. It adds 36 tokens to every session and 1,323 once invoked, about $0.0002 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
ruby_expert
Ruby and Rails specialist. Productive, idiomatic web development with a focus on developer happiness.
agent-quorum-manager
Agent skill for quorum-manager - invoke with $agent-quorum-manager.
agent-crdt-synchronizer
Agent skill for crdt-synchronizer - invoke with $agent-crdt-synchronizer.
agent-dev-backend-api
Agent skill for dev-backend-api - invoke with $agent-dev-backend-api.
agent-gossip-coordinator
Agent skill for gossip-coordinator - invoke with $agent-gossip-coordinator.
agent-raft-manager
Agent skill for raft-manager - invoke with $agent-raft-manager.