rb:sequel-patterns

rb:sequel-patterns is a skill for Claude Code from slbug/claude-ruby-grape-rails. It costs 32 tokens per session (2,903 once invoked), scanned A, original, MIT.

A guide to using Sequel, a Ruby library for working with databases. It covers database queries, models, migrations, relationships, plugins, transactions, and decisions about using Sequel or Active Record.

In plain words
What is it for?
Use it to build Sequel models and datasets, write migrations, define associations, manage transactions, and connect Sequel to Rails or other Ruby applications.
Why use it?
It helps structure database code when an application needs Sequel's explicit control, complex SQL support, or use outside a standard Rails setup.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Part of the ruby-grape-rails plugin — 52 skills, 19 agents, 17 hooks shipped together

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/slbug/claude-ruby-grape-rails/sequel-patterns
Any agent
npx skills add slbug/claude-ruby-grape-rails --skill sequel-patterns
Clone the repo
git clone --depth 1 https://github.com/slbug/claude-ruby-grape-rails

Made for: Claude Code.

Or install ruby-grape-rails, the plugin that ships this one along with the rest of its 52 skills, 19 agents, 17 hooks.

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 rb:sequel-patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/slbug/claude-ruby-grape-rails/sequel-patterns.svg)](https://agentmods.dev/skills/slbug/claude-ruby-grape-rails/sequel-patterns)
Your own site
<a href="https://agentmods.dev/skills/slbug/claude-ruby-grape-rails/sequel-patterns"><img src="https://agentmods.dev/badge/skills/slbug/claude-ruby-grape-rails/sequel-patterns.svg" alt="Measured on agentmods" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,903 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.1 $0.00032 $0.02903
Opus 5 $0.00016 $0.01452
Sonnet 5 $0.00006 $0.00581
Haiku 4.5 $0.00003 $0.00290

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

Security

Grade A, and why

rb:sequel-patterns 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 3d 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-grape-rails/skills/sequel-patterns/SKILL.md · 527 lines

How it starts

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

Sequel Patterns

Sequel is a flexible, high-performance ORM for Ruby.

When to Choose Sequel

Factor ActiveRecord Sequel
Performance Good 6-7x faster simple queries
Memory ~100MB ~35MB for same dataset
Flexibility Convention-based Explicit control
Learning Curve Gentle Moderate
Rails Integration Native Via sequel-rails gem
Complex SQL Limited Excellent

Use Sequel when:

  • High-throughput read operations
  • Memory-constrained environments
  • Complex SQL requirements
  • Non-Rails applications
  • Data processing pipelines

Use ActiveRecord when:

  • Standard Rails application
  • Team familiar with Rails conventions
  • Rapid prototyping
  • Heavy use of Rails generators

Installation

Standalone

# Gemfile
gem 'sequel'
gem 'pg'  # or 'mysql2', 'sqlite3'

# Connect
DB = Sequel.connect('postgres://user:pass@localhost/mydb')

With Rails

# Gemfile
gem 'sequel'
gem 'sequel-rails'

# Initialize
# config/initializers/sequel.rb
DB = Sequel.connect(Rails.configuration.database_configuration[Rails.env])

Models

Defining Models

class User < Sequel::Model
  # Table name inferred: :users
  
  # Explicit table name
  set_dataset :my_users
end

# Alternative: dataset block
class User < Sequel::Model
  dataset do
    where(active: true)
  end
end

Schema Definition

# migrations/001_create_users.rb
Sequel.migration do
  change do
    create_table :users do
      primary_key :id
      String :name, null: false
      String :email, null: false, unique: true
      DateTime :created_at, null: false, default: Sequel::CURRENT_TIMESTAMP
      
      index :email
    end
  end
end

Datasets

The core of Sequel's power is the Dataset abstraction.

Basic Queries

# Retrieving
users = User.all                          # Array of User objects
user = User.first                         # First user
user = User[id: 1]                        # By primary key
user = User.find(name: 'John')            # By conditions

# Filtering
active_users = User.where(active: true)
recent = User.where(created_at: > 1.week.ago)

# Chaining
dataset = User.where(active: true)
              .where(created_at: > 1.month.ago)
              .order(:created_at)
              .limit(10)

Read the full file on GitHub · 527 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. 3d ago First seen · 527 lines · 32 tokens per session scan A 1c24300eb149

Subscribe to this mod's changes

rb:sequel-patterns is a skill published in the GitHub repository slbug/claude-ruby-grape-rails (7 stars, last pushed yesterday), licensed MIT. It adds 32 tokens to every session and 2,903 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.

Related

Other skills, from other repositories

activerecord

This skill should be used when the user asks to "write a migration", "add a column", "add column to table", "create an index", "add a foreign key", "set up associations", "fix N+1 queries", "optimize queries", "add validations", "create callbacks", "use eager loading", or mentions ActiveRecord, belongsto, hasmany…

hoblin/claude-ruby-marketplace · 180 tokens

rspec

This skill should be used when the user asks to "write specs", "create spec", "add RSpec tests", "fix failing spec", or mentions RSpec, describe blocks, it blocks, expect syntax, test doubles, or matchers. Should also be used when editing spec.rb files, working in spec/ directory, planning implementation phases that…

hoblin/claude-ruby-marketplace · 125 tokens

dragonruby

This skill should be used when the user asks to "create a game", "make a game", "game development", "dragonruby", "drgtk", "game loop", "tick method", "sprite rendering", "game state", or mentions args.outputs, args.state, args.inputs, coordinate system, collision detection, animation frames, or scene management.…

hoblin/claude-ruby-marketplace · 100 tokens

draper-decorators

This skill should be used when the user asks to "create a decorator", "write a decorator", "move logic into decorator", "clean logic out of the view", "isn't it decorator logic", "test a decorator", or mentions Draper, keeping views clean, or representation logic in decorators. Should also be used when editing…

hoblin/claude-ruby-marketplace · 131 tokens

mcp-server

This skill should be used when the user asks to "create an MCP server", "build MCP tools", "define MCP prompts", "register MCP resources", "implement Model Context Protocol", or mentions the mcp gem, MCP::Server, MCP::Tool, JSON-RPC transport, stdio transport, or streamable HTTP transport. Should also be used when…

hoblin/claude-ruby-marketplace · 98 tokens

ratatui-ruby

This skill should be used when the user asks to "create a TUI", "terminal interface", "terminal UI", "ratatui", "ratatui-ruby", "inline viewport", "full-screen terminal app", "terminal widgets", "tui.draw", "tui.pollevent", or mentions RatatuiRuby.run, managed loop, terminal rendering, Tea MVU, or building CLI…

hoblin/claude-ruby-marketplace · 119 tokens