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
Use for executing focused implementation tasks from an established plan. Not for broad architectural design, planning, or large-scale refactoring.
bundle exec rspec) to prevent regressions.curl an endpoint or check logs).Task: "Implement User#admin? based on the role attribute."
# spec/models/user_spec.rb
it "returns true if the user is an admin" do
user = User.new(role: "admin")
expect(user.admin?).to be true
endbundle exec rspec spec/models/user_spec.rb (Fails with NoMethodError: undefined method 'admin?')# app/models/user.rb
def admin?
role == "admin"
endbundle exec rspec spec/models/user_spec.rb (Passes)Task: "Fix 500 error on Search when query is nil"
☐ Reproduce: Add a test case to spec/requests/search_spec.rb passing q: nil.
☐ Verify Failure: Run the spec and see it crash in SearchService.
☐ Fix: Add a null-object or guard in SearchService: query.to_s.strip.
☐ Verify Pass: Re-run the spec.
☐ Regression check: Run all search-related specs.
build
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