CtrlK
BlogDocsLog inGet started
Tessl Logo

igmarin/rails-agent-skills

Curated library of 28 atomic skills and 9 personas for Ruby on Rails development. Organized by category: testing, code-quality, engines, infrastructure, api, context, and personas. 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.

93

1.16x
Quality

95%

Does it follow best practices?

Impact

93%

1.16x

Average score across 28 eval scenarios

SecuritybySnyk

Advisory

Suggest reviewing before use

Overview
Quality
Evals
Security
Files

spec_template.mdskills/engines/test-engine/assets/

Engine Spec Helper Template

Basic spec helper template to verify engine mounting and loading.

# frozen_string_literal: true

# spec/spec_helper.rb (engine spec template)
require 'rails_helper'

RSpec.describe 'Engine basic lifecycle' do
  it 'loads the engine constant' do
    expect(defined?(MyEngine::Engine)).to eq('constant')
  end
end

skills

README.md

tile.json