Curated library of 42 public AI agent skills for Ruby on Rails development, plus 5 callable workflow skills. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, orchestration, and workflows. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation.
96
96%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Risky
Do not use without reviewing
Step-by-step guide for introducing a new API version.
Inherit from V(N) controllers and override only changed actions:
# app/controllers/v2/users_controller.rb
module V2
class UsersController < V1::UsersController
def index
# New behavior
render json: User.all, only: [:id, :name, :email, :phone]
end
end
endAdd V(N+1) namespace to config/routes.rb:
namespace :api do
namespace :v1 do
resources :users
end
namespace :v2 do
resources :users # New version
end
endInclude Deprecatable concern in V(N) controllers:
module V1
class UsersController < ApplicationController
include Deprecatable
# ...
end
endOnly deploy when all V(N) tests pass.
bundle exec rspec spec/requests/api/backward_compatibility_spec.rbAfter the sunset date has passed:
config/routes.rbbuild
docs
mcp_server
skills
api
generate-api-collection
implement-graphql
code-quality
apply-code-conventions
apply-stack-conventions
assets
snippets
code-review
refactor-code
respond-to-review
review-architecture
security-check
context
load-context
setup-environment
ddd
define-domain-language
model-domain
review-domain-boundaries
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
orchestration
skill-router
patterns
create-service-object
implement-calculator-pattern
write-yard-docs
planning
create-prd
generate-tasks
plan-tickets
testing
plan-tests
test-service
triage-bug
write-tests
workflows