CtrlK
BlogDocsLog inGet started
Tessl Logo

igmarin/rails-agent-skills

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.

97

Quality

97%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

generate_engine_scaffold.shskills/engines/rails-engine-author/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