CtrlK
BlogDocsLog inGet started
Tessl Logo

igmarin/rails-agent-skills

Curated library of 42 public AI agent skills for Ruby on Rails development, plus 5 callable workflow skills. Organized by category: planning, testing, code-quality, ddd, engines, infrastructure, api, patterns, context, orchestration, and workflows. Covers code review, architecture, security, testing (RSpec), engines, service objects, DDD patterns, and TDD automation.

97

Quality

97%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

SKILL.mdskills/planning/ticket-planning/

name:
ticket-planning
license:
MIT
description:
Drafts, classifies, and optionally creates tickets from an initiative plan. Use when the user provides a plan and wants ticket drafts, wants help shaping a plan into tickets, wants sprint-placement guidance, or wants tickets created in an issue tracker after the plan is approved.

Ticket Planning

Normalize inputs, classify each work item, apply title conventions, draft tickets in a standard structure, then either return markdown drafts or create issues in the issue tracker after explicit approval.

See EXAMPLES.md for a complete plan → ticket draft example.

Workflow

1. Normalize the initiative

Extract planning inputs:

  • initiative/theme
  • project/board
  • whether the request is draft-only or create-in-tracker
  • default sprint or backlog bucket
  • constraints on issue types, prefixes, epic, labels, components, status, or sprint

If the user already has a plan, do not re-plan unless there is a material gap.

2. Classify each ticket before drafting it

Assign these core planning attributes to each ticket:

AttributeValues
typeStory | Task
areabackend | web | mobile | cross-platform | external
execution_orderfoundation | api | client | follow-up
dependency_levelunblocked | blocked
target_bucketready-to-refine | next-dev-sprint | later

Additional attributes to apply when relevant: coordination_need (single-team | multi-team), external_dependency (yes | no), urgency (normal | priority).

Backend/API enablers generally come before dependent web/mobile tickets.

3. Apply title conventions

Use these prefixes:

  • BE | for backend
  • FE | for web / frontend
  • Mobile | for mobile

When writing the ticket title, leave a space after the |.

Do not add those prefixes to tickets that are not owned by those areas unless the user explicitly wants that.

4. Draft tickets in the standard structure

Use this section order:

SectionJob
SummaryState the outcome
BackgroundExplain why
Acceptance CriteriaList observable criteria
DependenciesNote blockers
Technical NotesImplementation details that affect sequencing or scoping only

Keep the main sections business-facing.

5. Output: drafts or create in the issue tracker

Draft-only:

  • Return markdown tickets following the five-section structure (Summary, Background, Acceptance Criteria, Dependencies, Technical Notes) with the appropriate area prefix in the title.
  • Keep titles, issue types, and dependencies explicit.
  • Include brief sequencing notes when helpful.
  • See EXAMPLES.md for a full plan → ticket draft with classification applied.

Create in issue tracker:

  • Verify the target project/board details first.
  • Confirm required fields: project, issue type, sprint, status behavior, epic, labels, components.
  • Create issues only after the plan is considered approved enough.
  • Use whatever integration the user has (API, MCP, UI); do not assume credentials in the repo.
  • Validate one issue before bulk-creating if the sprint field or workflow behavior is uncertain.
  • After creation, report: created issue keys, confirmed status, confirmed sprint/bucket, and any assumptions used.

Example field shape for MCP/API creation:

{
  "project": "<project-key>",
  "issuetype": "Story",
  "summary": "BE | Enable payment webhook processing",
  "description": "<full ticket body>",
  "labels": ["payments", "backend"],
  "components": ["payments-service"],
  "sprint": { "id": "<sprint-id>" },
  "epic": "<epic-key>"
}

Omit fields the project does not require. Confirm actual field names from the tracker's create-metadata endpoint before issuing the call. Do not set status on create — use the project's default initial status.

Sprint Placement Heuristics

Defaults unless the user overrides:

  • foundation and api tickets → placed before all dependent client tickets
  • client tickets → blocked until the API surface they depend on is stable
  • external confirmation tickets → excluded from active build sprints
  • follow-up tickets → ready-to-refine or later until their enabling work is complete
  • Named future sprints (e.g. Ready to Refine) → treat as a planning bucket, not an execution commitment

Integration

SkillWhen to chain
generate-tasksAfter tasks exist or in parallel — same initiative can feed ticket breakdown
create-prdWhen tickets should align with PRD scope and acceptance themes

Assets

skills

README.md

tile.json