CtrlK
BlogDocsLog inGet started
Tessl Logo

igmarin/rails-agent-skills

Curated library of 41 public AI agent skills for Ruby on Rails development. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, and orchestration. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation. Repository workflows remain documented in GitHub but are intentionally excluded from the Tessl tile.

95

1.77x
Quality

93%

Does it follow best practices?

Impact

96%

1.77x

Average score across 41 eval scenarios

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

configuration.mdskills/engines/document-engine/assets/

Engine Configuration

Provide a single initializer file (config/initializers/my_engine.rb) with documented defaults:

MyEngine.configure do |config| config.api_key = ENV['MY_ENGINE_API_KEY'] || 'replace_me' config.default_limit = 25 config.feature_flag = false end

Recommended validation:

  • Validate presence of required keys at boot (raise with clear message)
  • Log configuration values at debug level (avoid secrets)

Migrations and namespace:

  • Prefix table names with engine namespace (e.g., my_engine_users)
  • Provide a rake task to copy migrations to host app: rake my_engine:install:migrations

Security and secrets:

  • Do not store secrets in plain text; prefer host app credentials
  • Document what keys the engine expects and their scopes

Public API surface:

  • List public classes/modules and configuration entry points in README
  • Provide a small section with example usage snippets for host app developers

skills

README.md

server.json

tile.json