ruby-resource-map

A map of trusted documentation and tools for Ruby development, including official Ruby references, version changes, and standard-library information.

In plain words
What is it for?
Use it when checking Ruby language behavior, standard-library details, version differences, typing, or development tools.
Why use it?
It reduces the chance of relying on outdated or unsuitable Ruby documentation.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/st0012/ruby-skills/ruby-resource-map
Any agent
npx skills add st0012/ruby-skills --skill ruby-resource-map
Clone the repo
git clone --depth 1 https://github.com/st0012/ruby-skills

Made for: Claude Code, Codex.

Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 791 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00022 $0.00791
Opus 5 $0.00011 $0.00396
Sonnet 5 $0.00004 $0.00158
Haiku 4.5 $0.00002 $0.00079

Measured 2d ago against content hash d190c86b8e7e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ruby-resource-map 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.

plugins/ruby-skills/skills/ruby-resource-map/SKILL.md · 74 lines

How it starts

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

Ruby Knowledge

Authoritative resource map for Ruby development. Use these sources rather than searching broadly.

Never use these sources:

  • ruby-doc.org
  • apidock.com

Official Documentation

Primary source: https://docs.ruby-lang.org/en/

Other Useful Resources

Core & Standard Library

Term Meaning
Default gem Ships with Ruby, cannot uninstall
Bundled gem Ships with Ruby, can uninstall/replace
Standard library Part of Ruby itself, not a gem

To check which gem versions ship with each Ruby release: https://stdgems.org/

Version Documentation Standard Library
3.2 https://docs.ruby-lang.org/en/3.2/ https://docs.ruby-lang.org/en/3.2/standard_library_rdoc.html
3.3 https://docs.ruby-lang.org/en/3.3/ https://docs.ruby-lang.org/en/3.3/standard_library_rdoc.html
3.4 https://docs.ruby-lang.org/en/3.4/ https://docs.ruby-lang.org/en/3.4/standard_library_md.html
4.0 https://docs.ruby-lang.org/en/4.0/ https://docs.ruby-lang.org/en/4.0/standard_library_md.html
master https://docs.ruby-lang.org/en/master/ https://docs.ruby-lang.org/en/master/standard_library_md.html

Testing Frameworks

Framework GitHub Documentation
minitest https://github.com/minitest/minitest https://docs.seattlerb.org/minitest/
test-unit https://github.com/test-unit/test-unit https://test-unit.github.io/

Typing Ecosystem

Two type definition formats exist in Ruby:

  • RBI - Sorbet's format. Uses Ruby DSL syntax (sig { ... }) in .rb and .rbi files.
  • RBS - Official Ruby format (Ruby 3.0+). Dedicated syntax in .rbs files or inline as comments.

Read the full file on GitHub · 74 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. 2d ago First seen · 74 lines · 22 tokens per session scan A d190c86b8e7e

Subscribe to this mod's changes

ruby-resource-map is a skill published in the GitHub repository st0012/ruby-skills (125 stars, last pushed 2mo ago), licensed MIT. It adds 22 tokens to every session and 791 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-30.

Related

Other skills, from other repositories

rails-expert

Rails 7+ specialist that optimizes Active Record queries with includes/eagerload, implements Turbo Frames and Turbo Streams for partial page updates, configures Action Cable for WebSocket connections, sets up Sidekiq workers for background job processing, and writes comprehensive RSpec test suites. Use when building…

Jeffallan/claude-skills · 104 tokens

contributing

Contribute to RubyLLM - set up the repo, run and record specs, add providers or chat options, work on the Rails integration, and edit docs. Use when fixing a bug, building a feature, writing specs, or changing documentation in the RubyLLM codebase.

crmne/ruby_llm · 60 tokens

new

Create a new project to start development quickly.

clacky-ai/openclacky · 10 tokens

rails-conventions

Rootstrap Rails conventions. Use when writing, reviewing, or editing any Rails code — controllers, models, migrations, routes, views, mailers, initializers, locale files, or Rails config. Covers routing, ActiveRecord, migrations, i18n, time zones, mailers, assets, Bundler groups, and logging.

rootstrap/rails_api_base · 71 tokens

rspec-conventions

Rootstrap RSpec conventions. Use when writing, reviewing, or editing RSpec test files (spec//spec.rb, spec/railshelper.rb, spec/spechelper.rb, spec/support//.rb) or factories. Covers describe/context structure, let/subject, matchers, factories, mocking/stubbing, shared examples, and spec types (model, request…

rootstrap/rails_api_base · 82 tokens

rails-upgrade

Analyzes Rails applications and generates comprehensive upgrade reports with breaking changes, deprecations, and step-by-step migration guides for Rails 2.3 through 8.1. Use when upgrading Rails applications, planning multi-hop upgrades, or querying version-specific changes. Based on FastRuby.io methodology and "The…

ombulabs/claude-code_rails-upgrade-skill · 73 tokens