CtrlK
BlogDocsLog inGet started
Tessl Logo

igmarin/rails-agent-skills

Curated library of 28 public AI agent skills for Ruby on Rails development. Organized by category: testing, code-quality, engines, infrastructure, api, and context. 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. Repository agents remain documented in GitHub but are intentionally excluded from the Tessl tile.

93

1.78x
Quality

95%

Does it follow best practices?

Impact

93%

1.78x

Average score across 28 eval scenarios

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

retry_examples.mdskills/infrastructure/implement-background-job/assets/

Retry and discard examples

  1. Idempotent retry example

class FetchDataJob < ApplicationJob retry_on Net::ReadTimeout, attempts: 4, wait: :exponentially_longer discard_on ActiveRecord::RecordNotFound

def perform(resource_id) resource = Resource.find(resource_id) ApiClient.fetch(resource.api_endpoint) end end

  1. Long-running breakdown pattern

Split large export into smaller jobs that write to a shared storage object and then enqueue a finalizer job.

  1. Backoff strategy

Use Sidekiq's built-in exponential backoff for background workers; for ActiveJob, prefer wait: :exponentially_longer.

skills

infrastructure

README.md

tile.json