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
93%
Does it follow best practices?
Impact
96%
1.77xAverage score across 41 eval scenarios
Passed
No known issues
Orchestrates systematic bug resolution from initial report through verified fix, ensuring bugs are properly understood, reproduced with tests, fixed with TDD discipline, and verified without regressions.
Objective: Understand the bug and determine root cause before attempting fixes.
Steps:
HARD GATE — Bug Understanding:
If gate fails: Return to information gathering. Cannot proceed without understanding the bug.
Example Bug Report Format:
# Bug Report: Order calculation incorrect
## Symptoms
Order totals are calculated incorrectly when discount is applied.
## Reproduction Steps
1. Create order with 3 items
2. Apply 10% discount
3. Total is $90 instead of $81
## Root Cause Hypothesis
Discount calculation in OrderService#calculate_total is multiplying instead of dividing.
## Affected Files
- app/services/order_service.rb
- spec/services/order_service_spec.rbObjective: Create a failing test that reproduces the bug before fixing it.
Before writing any fix code:
HARD GATE — Reproduction Test:
If test fails for wrong reason: Fix test (not code) to accurately reproduce the bug.
Example Reproduction Test:
# spec/services/order_service_spec.rb
RSpec.describe OrderService do
describe '#calculate_total' do
it 'correctly applies discount to order total' do
order = create(:order, :with_items, item_count: 3, item_price: 30.00)
result = OrderService.calculate_total(order, discount_percent: 10)
expect(result).to eq(81.00) # Currently fails: returns 90.00
end
end
endObjective: Implement minimal fix to make reproduction test pass.
Steps:
Fix Implementation Guidelines:
HARD GATE — Fix Verification:
If test still fails: Fix is incorrect. Revise approach and re-implement.
Example Fix:
# app/services/order_service.rb
def self.calculate_total(order, discount_percent: 0)
subtotal = order.items.sum(&:price)
discount_amount = subtotal * (discount_percent / 100.0) # Fixed: was multiplication
subtotal - discount_amount
endObjective: Ensure fix resolves bug without introducing regressions.
Steps:
HARD GATE — Regression Check:
bundle exec rspec # Full test suite must passEdge Cases to Consider:
HARD GATE — Verification Complete:
If regressions found: Fix introduced new issues. Revise fix and re-verify.
| Predecessor | This Workflow | Successor |
|---|---|---|
| triage-bug | bug-fix | quality |
| code-review (Critical findings) | bug-fix | respond-to-review |
| production incident | bug-fix | deployment |
| None (standalone) | bug-fix | PR submission |
triage-bugwrite-testsskill-routerNEVER mark bug as resolved before:
If gate fails: Bug is not properly fixed. Return to appropriate phase.
# Bug Fix Report — [Date]
## Bug Summary
- **Issue:** Order calculation incorrect with discount
- **Root Cause:** Multiplication instead of division in discount calculation
- **Affected Files:** app/services/order_service.rb
## Reproduction
- Test created: spec/services/order_service_spec.rb:42
- Test failure before fix: Expected 81.00, got 90.00
- Test passes after fix: ✓
## Fix Applied
- File: app/services/order_service.rb:17
- Change: Fixed discount calculation formula
- Lines changed: 1
## Verification
- Reproduction test: ✓ PASS
- Regression suite: ✓ PASS (485/485 tests)
- Edge cases tested: ✓ PASS (zero, boundary, negative)
- Manual verification: ✓ PASS
## Status
**RESOLVED** — No regressions detecteddocs
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
scenario-29
scenario-30
scenario-31
scenario-32
scenario-33
scenario-34
scenario-35
scenario-36
scenario-37
scenario-38
scenario-39
scenario-40
scenario-41
mcp_server
skills
api
generate-api-collection
implement-graphql
code-quality
apply-code-conventions
apply-stack-conventions
assets
snippets
code-review
refactor-code
respond-to-review
review-architecture
security-check
context
load-context
setup-environment
ddd
define-domain-language
model-domain
review-domain-boundaries
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
orchestration
skill-router
patterns
create-service-object
implement-calculator-pattern
write-yard-docs
planning
create-prd
generate-tasks
plan-tickets
testing
plan-tests
test-service
triage-bug
write-tests
workflows