ruby

ruby is a skill for Claude Code, Codex from nimadorostkar/Claude-Skills-collection. It costs 38 tokens per session (834 once invoked), scanned A, original, MIT.

A Ruby coding guide for Ruby and Rails applications. It covers object design, database queries, background jobs, RSpec tests, and consistent code style.

In plain words
What is it for?
Use it to write or refactor Rails code, improve ActiveRecord queries, structure tests and background jobs, and diagnose slow endpoints.
Why use it?
It helps keep application responsibilities clear and prevents slow database access such as one query for every returned record.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to write or refactor Rails code, improve ActiveRecord queries, structure tests and background jobs, and diagnose slow endpoints.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nimadorostkar/claude-skills-collection/ruby
Install

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.

Any agent
npx skills add nimadorostkar/Claude-Skills-collection --skill ruby
Clone the repo
git clone --depth 1 https://github.com/nimadorostkar/Claude-Skills-collection

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for ruby

README.md
[![agentmods](https://agentmods.dev/badge/skills/nimadorostkar/claude-skills-collection/ruby/github.svg)](https://agentmods.dev/skills/nimadorostkar/claude-skills-collection/ruby)
Your own site
<a href="https://agentmods.dev/skills/nimadorostkar/claude-skills-collection/ruby"><img src="https://agentmods.dev/badge/skills/nimadorostkar/claude-skills-collection/ruby/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.

agentmods 80×15 button for ruby

Your own site · 80×15
<a href="https://agentmods.dev/skills/nimadorostkar/claude-skills-collection/ruby"><img src="https://agentmods.dev/badge/skills/nimadorostkar/claude-skills-collection/ruby.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 834 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.00834
Opus 5 $0.00019 $0.00417
Sonnet 5 $0.00008 $0.00167
Haiku 4.5 $0.00004 $0.00083

Measured 6d ago against content hash ce89b812ab70, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

ruby 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 6d 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.

skills/languages/ruby/SKILL.md · 96 lines

How it starts

The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Ruby

Purpose

Write Ruby that stays readable as it grows: small objects with clear responsibilities, controllers that stay thin, and ActiveRecord queries that do not quietly issue a query per row.

When to Use

  • Writing or reviewing Ruby and Rails code.
  • Refactoring fat models or fat controllers.
  • Diagnosing slow endpoints caused by ActiveRecord.
  • Structuring an RSpec suite.
  • Designing background jobs and their retry semantics.

Capabilities

  • Object design: service objects, form objects, query objects, value objects.
  • ActiveRecord: eager loading, scopes, batching, index-aware querying.
  • Background processing with Sidekiq or Active Job, including idempotency.
  • RSpec structure: request specs, model specs, factories, shared examples.
  • RuboCop and Sorbet/RBS typing where valuable.

Inputs

  • Application source, Gemfile, Rails version.
  • Slow-query or profiling data when performance is the concern.

Outputs

  • Controllers that authenticate, authorize, delegate, and render — nothing else.
  • Named scopes and eager-loaded queries with no N+1.
  • Specs that describe behavior rather than restate implementation.

Workflow

  1. Locate the responsibility — If a method touches HTTP, business rules, and persistence, split it before changing it.
  2. Extract a service object — One public call, explicit dependencies, no global state.
  3. Fix the queries — Add includes, convert loops into set operations, batch with find_each.
  4. Make jobs idempotent — Retries are guaranteed; double-execution must be harmless.
  5. Gate — RSpec, RuboCop, and Bullet (or equivalent) to fail the build on N+1.

Best Practices

  • Controllers do not contain business logic. If a controller action exceeds ten lines, extract.
  • Callbacks (after_save, before_create) create action at a distance. Prefer explicit service calls.
  • Use find_each for anything that could exceed a few thousand rows; all.each loads the table into memory.
  • Every background job should be safe to run twice. Key the side effect, not the invocation.
  • rescue => e without re-raising swallows bugs. Rescue the specific class.
  • Freeze constants and prefer immutable value objects for domain concepts.

Read the full file on GitHub · 96 lines

Changes

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.

  1. 6d ago First seen · 96 lines · 38 tokens per session scan A ce89b812ab70

Subscribe to this mod's changes

ruby is a skill published in the GitHub repository nimadorostkar/Claude-Skills-collection (26 stars, last pushed 22d ago), licensed MIT. It adds 38 tokens to every session and 834 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-09-03.