CtrlK
BlogDocsLog inGet started
Tessl Logo

igmarin/rails-agent-skills

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

1.78x
Quality

95%

Does it follow best practices?

Impact

93%

1.78x

Average score across 28 eval scenarios

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

installation.mdskills/engines/document-engine/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