CtrlK
BlogDocsLog inGet started
Tessl Logo

igmarin/rails-agent-skills

Curated library of 39 AI agent skills for Ruby on Rails development. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, orchestration, and workflows. Includes 5 callable workflow skills (rails-tdd-loop, rails-review-flow, rails-setup-flow, rails-quality-flow, rails-engines-flow) for complete development cycles. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation.

95

1.20x
Quality

98%

Does it follow best practices?

Impact

95%

1.20x

Average score across 35 eval scenarios

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

installation.mdskills/engines/rails-engine-docs/assets/

Engine Installation Guide

Install from RubyGems:

  1. Add to Gemfile: gem 'my_engine'
  2. bundle install
  3. Mount in host app (config/routes.rb): Rails.application.routes.draw do mount MyEngine::Engine => '/my_engine' end
  4. Run installer generator if present: rails generate my_engine:install
  5. Run migrations if installer copied them: bundle exec rake db:migrate

Install from local path (development):

  1. In host Gemfile: gem 'my_engine', path: 'engines/my_engine'
  2. bundle install
  3. Mount and run as above

Verification checklist:

  • Engine mounts at the expected path and responds to a simple request
  • No NameError/LoadError on boot
  • Initializer file created and contains documented keys

Notes: prefer mounting under a clearly namespaced path. If the engine exposes background jobs or migrations, document those in the README and release notes.

skills

README.md

tile.json