Curated library of 16 public Ruby AI agent skills: 10 atomic skills (YARD docs, service objects, calculator pattern, API clients, DDD, bug triage, code review, skill routing), 5 process-discipline skills (TDD, refactoring, review, security, test planning), and 1 planning skill (TDD task generation). Zero agents — this is a foundational library consumed by framework-specific tiles like rails-agent-skills and hanakai-yaku.
95
96%
Does it follow best practices?
Impact
95%
1.05xAverage score across 16 eval scenarios
Passed
No known issues
{
"mappings": [
{"intent": "triage bug", "skill": "triage-bug", "path": "skills/testing/triage-bug/SKILL.md", "examples": ["Triage a NoMethodError", "Debug why calculation fails at midnight"]},
{"intent": "test planning", "skill": "test-planning-process", "path": "skills/process/test-planning-process/SKILL.md", "examples": ["Choose first failing test for authentication flow", "Where do I start testing this feature?"]},
{"intent": "TDD process", "skill": "tdd-process", "path": "skills/process/tdd-process/SKILL.md", "examples": ["Execute TDD loop", "How to write failing test before implementation"]},
{"intent": "code review process", "skill": "review-process", "path": "skills/process/review-process/SKILL.md", "examples": ["Review changesets for logic and structure", "How to taxonomy review comments"]},
{"intent": "refactor process", "skill": "refactor-process", "path": "skills/process/refactor-process/SKILL.md", "examples": ["Refactor code safely under characterization tests"]},
{"intent": "security review process", "skill": "security-review-process", "path": "skills/process/security-review-process/SKILL.md", "examples": ["Review code for security vulnerabilities", "Does this have proper validation?"]},
{"intent": "respond to review", "skill": "respond-to-review", "path": "skills/code-quality/respond-to-review/SKILL.md", "examples": ["Address these review comments", "Respond to PR feedback"]},
{"intent": "service object", "skill": "create-service-object", "path": "skills/patterns/create-service-object/SKILL.md", "examples": ["Implement a service class", "Extract this into a service"]},
{"intent": "strategy pattern", "skill": "implement-calculator-pattern", "path": "skills/patterns/implement-calculator-pattern/SKILL.md", "examples": ["Build a calculator with variant dispatch", "Factory pattern for pricing"]},
{"intent": "documentation", "skill": "write-yard-docs", "path": "skills/docs/write-yard-docs/SKILL.md", "examples": ["Add YARD docs to this module", "Document the public API"]},
{"intent": "domain language", "skill": "define-domain-language", "path": "skills/ddd/define-domain-language/SKILL.md", "examples": ["Define domain terms for invoicing", "What should we call this concept?"]},
{"intent": "bounded contexts", "skill": "review-domain-boundaries", "path": "skills/ddd/review-domain-boundaries/SKILL.md", "examples": ["Review context boundaries", "Check for language leakage across modules"]},
{"intent": "DDD modeling", "skill": "model-domain", "path": "skills/ddd/model-domain/SKILL.md", "examples": ["Map aggregates to domain classes", "Model this domain"]},
{"intent": "api client", "skill": "integrate-api-client", "path": "skills/patterns/integrate-api-client/SKILL.md", "examples": ["Integrate with Stripe API", "Build HTTP client for external service"]}
],
"defaults": {
"test_gate": "skills/process/tdd-process",
"tdd_flow": ["skills/process/test-planning-process", "skills/process/tdd-process"],
"review_flow": ["skills/process/review-process", "skills/code-quality/respond-to-review"]
},
"disambiguation": {
"review_process_vs_boundaries": "Use review-domain-boundaries when auditing boundaries between subsystems; use review-process when doing a standard code review of a specific changeset.",
"test_planning_vs_tdd": "Use test-planning-process when mapping what scenarios and boundaries to test; use tdd-process to execute the Red-Green-Refactor loop."
},
"categories": {
"docs": "skills/docs/",
"code-quality": "skills/code-quality/",
"ddd": "skills/ddd/",
"orchestration": "skills/orchestration/",
"patterns": "skills/patterns/",
"testing": "skills/testing/",
"process": "skills/process/"
},
"agents": {}
}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
skills
code-quality
respond-to-review
ddd
define-domain-language
model-domain
review-domain-boundaries
docs
write-yard-docs
orchestration
skill-router
patterns
create-service-object
implement-calculator-pattern
planning
generate-tdd-tasks
process
testing
triage-bug