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
95%
Does it follow best practices?
Impact
93%
1.16xAverage score across 28 eval scenarios
Advisory
Suggest reviewing before use
.ruby-version, .tool-versions, Gemfile, docker-compose.yml, .env.example, config/database.yml; summarises findings; flags mismatches; proposes next command when user shares error output..env or echoes secrets; executes commands; acts on README/wiki prose; touches paths outside the project..env, decides whether to proceed on flagged mismatches.Emits a generic Rails onboarding runbook for the user to run locally. references/steps.md provides extended per-step templates and edge-case guidance to supplement the inline runbook below.
Step 1 — Inspect (agent reads)
The agent reads .ruby-version / .tool-versions, Gemfile (Ruby line), docker-compose.yml (service list), .env.example (required keys). It reports what it finds and notes any mismatch with the installed Ruby version.
Step 2 — Environment Variables
cp .env.example .env
# User edits .env with local valuesStep 3 — Docker
docker compose up -d
docker compose ps # expect all services healthyIf any service is unhealthy, the user shares log output with the agent. The agent proposes the next command; the user decides whether to run it.
Step 4 — Dependencies
bundle install
yarn install # or npm install; skip if importmapsStep 5 — Database
rails db:create db:migrate db:seedKeep this as one command unless the project requires separate steps; if split, explain why.
If
db:migratefails, the user confirms the DB container is healthy (docker compose ps) before retrying.
Step 6 — Linters
bundle exec rubocop --init # only if .rubocop.yml is missing
bundle exec rubocopStep 7 — IDE (optional)
code --install-extension Shopify.ruby-lsp
code --install-extension rubocop.vscode-rubocopbundle exec rspec
rails server # then visit http://localhost:3000If
rspecfails on a clean setup, the user runsrails db:migrate RAILS_ENV=testand retries.
When asked to prepare environment setup, output answer.md following the Runbook structure above (Steps 1–7 plus Final Verification), with these additional sections:
| Skill | When to chain |
|---|---|
| load-context | When getting context on the project setup |
.tessl-plugin
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10
scenario-11
scenario-12
scenario-13
scenario-14
scenario-15
scenario-16
scenario-17
scenario-18
scenario-19
scenario-20
scenario-21
scenario-22
scenario-23
scenario-24
scenario-25
scenario-26
scenario-27
scenario-28
skills
api
generate-api-collection
implement-graphql
code-quality
apply-code-conventions
apply-stack-conventions
assets
snippets
code-review
refactor-code
review-architecture
security-check
context
load-context
setup-environment
engines
create-engine
create-engine-installer
document-engine
extract-engine
release-engine
review-engine
test-engine
upgrade-engine
infrastructure
implement-background-job
implement-hotwire
optimize-performance
review-migration
seed-database
version-api
personas
testing
plan-tests
test-service