Curated library of 28 public AI agent skills for Ruby on Rails development. Organized by category: testing, code-quality, engines, infrastructure, api, and context. Covers code review, architecture, security, testing (RSpec), engines, Hotwire, and TDD automation. Shared Ruby skills (YARD docs, DDD, service objects) have moved to ruby-core-skills. Repository agents remain documented in GitHub but are intentionally excluded from the Tessl tile.
93
95%
Does it follow best practices?
Impact
93%
1.78xAverage score across 28 eval scenarios
Passed
No known issues
Build modern Rails frontends with Hotwire using progressive enhancement.
| Need | Hotwire choice |
|---|---|
| Replace part of a page after a link/form | Turbo Frame |
| Broadcast server-side changes | Turbo Stream |
| Client-only behavior beyond Turbo | Stimulus controller |
| Full page navigation | Normal Rails navigation, not a frame |
ALWAYS start with HTML-only, enhance with Hotwire progressively
NEVER use Turbo Frames for full page navigation
ALWAYS test without JavaScript firstturbo_frame_tag. Validate: load the page and confirm the <turbo-frame> element appears in the DOM with the correct id.text/vnd.turbo-stream.html or a full frame response; for ActionCable, verify the subscription appears in the Action Cable log before proceeding.application.getControllerForElementAndIdentifier(el, 'name') returns the controller instance in the browser console.rails test:system with a headless driver set to no_js) and confirm forms submit, links navigate, and data persists correctly without JS.Quick Examples
<%= turbo_frame_tag "post_#{@post.id}" do %>
<h1><%= @post.title %></h1>
<%= link_to "Edit", edit_post_path(@post) %>
<% end %><%= turbo_stream.append "posts", partial: "post", locals: { post: @post } %>import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
static targets = ["name"]
greet() { alert(`Hello ${this.nameTarget.value}!`) }
}Register the controller in app/javascript/controllers/index.js:
import GreetController from "./greet_controller"
application.register("greet", GreetController)Advanced Patterns
ActionCable broadcasting — Server-push streams with broadcasts_to. See EXAMPLES.md.
Turbo Stream morphing — DOM diffing (Turbo 8+). See EXAMPLES.md.
Nested frames — Scoped frame navigation. See EXAMPLES.md.
Stimulus values & classes API — Configurable controllers. See EXAMPLES.md.
When implementing Hotwire, your output MUST include:
rails test:system with the Capybara :rack_test driver, or the equivalent driver name in the test configuration, forms submit, links navigate, and data persists after reload.| Skill | When to chain |
|---|---|
| write-tests | For system specs and failing interaction coverage |
| apply-stack-conventions | For Rails + Hotwire + Tailwind stack alignment |
| code-review | After the UI behavior and degraded mode are verified |
agents
docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10
scenario-11
scenario-12
scenario-13
scenario-14
scenario-15
scenario-16
scenario-17
scenario-18
scenario-19
scenario-20
scenario-21
scenario-22
scenario-23
scenario-24
scenario-25
scenario-26
scenario-27
scenario-28
skills
api
generate-api-collection
implement-graphql
code-quality
apply-code-conventions
apply-stack-conventions
assets
snippets
code-review
refactor-code
review-architecture
security-check
context
load-context
setup-environment
engines
create-engine
create-engine-installer
document-engine
extract-engine
release-engine
review-engine
test-engine
upgrade-engine
infrastructure
implement-background-job
implement-hotwire
optimize-performance
review-migration
seed-database
version-api
testing
plan-tests
test-service
write-tests