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

generate_engine_scaffold.shskills/engines/create-engine/scripts/

#!/usr/bin/env bash
# Simple scaffolding helper (template only). Usage: ./scripts/generate_engine_scaffold.sh my_engine_name
# This script is a template that creates a minimal engine skeleton when executed by the developer.

cat <<'RUBY' > engines/my_engine/lib/my_engine/engine.rb
# frozen_string_literal: true
module MyEngine
  class Engine < ::Rails::Engine
    isolate_namespace MyEngine
  end
end
RUBY

# Note: Replace 'my_engine' with the desired engine name and adjust module names.

skills

README.md

tile.json