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
Short discovery shape (when the user wants a one-pager before a full PRD):
Name: Search Autocomplete Summary: Improve search UX by providing real-time autocomplete suggestions.
Problem: Users struggle to find items quickly; searches without suggestions return many irrelevant results.
Goal: Increase successful search completions by 15% in 3 months.
User story: As a user, I want inline suggestions while typing so I can select a result without completing the full query.
Acceptance criteria:
Rollout: Feature flag, 10% → 50% → 100% with metrics check at each step.
Checklist:
Input (feature description): Add the ability for admins to export user data as a CSV file from the Rails admin dashboard.
Output:
# PRD: Admin CSV User Export
## Introduction
Admin users need to export a filtered list of user records as CSV from the admin dashboard for audits and reporting, without direct database access.
## Goals
- Admins can download user data without direct database access.
- Export completes in under 5 seconds for up to 10,000 records.
- Exported data respects existing admin permission scopes.
## User Stories
- As an admin, I want to export all users as a CSV so that I can share data with the ops team.
- As an admin, I want to filter users before exporting so that I only download relevant records.
## Functional Requirements
1. The system must show an **Export CSV** action on the admin users index page.
2. The system must trigger a `.csv` download when the admin confirms export, including columns: id, email, created_at, role, status.
3. The system must apply the same filters as the index (e.g. role, status) to the exported row set.
## Non-Functional Requirements
- Only users with the `admin` role can trigger an export.
- Exports larger than 10,000 rows must run via a background job and notify the admin (e.g. email with download link) to avoid request timeouts.
## Non-Goals
- Exporting associated records (orders, sessions, etc.).
- Custom column selection in v1.
- Scheduled or automated exports.
## Design Considerations
- Reuse existing admin index filters and table affordances; export entry point should be obvious and hard to trigger accidentally.
## Technical Considerations
- Prefer Active Job for large exports; consider streaming CSV for medium sizes if product wants synchronous download for <10k rows only.
## Implementation Surface
Rails areas likely touched (no code — discovery only):
- `controllers/` — admin users controller (or equivalent namespace)
- `models/` — `User` scopes for filtering
- `services/` — optional `UserCsvExport` orchestration
- `jobs/` — background export + delivery when row count exceeds threshold
- `mailers/` — export ready / link to file
- External integrations — none
## Success Metrics
- Median export time < 5s for ≤10k visible rows on staging hardware.
- Zero unauthorized export attempts succeeding (covered by policy/request specs).
## Open Questions
- Should each export be logged for audit (who, when, filter snapshot)?
- Hard cap on rows per export (product/legal)?
## Next Steps
Recommended next step: **generate-tasks** — break this PRD into implementation tasks with TDD gates.
Alternative chain targets: `plan-tickets`, `review-architecture`, `apply-stack-conventions`.docs
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