skills/emz1998/tasks-generator/SKILL.md
Generate structured task roadmaps from project specifications. Use when the user asks to create tasks, sprint plans, roadmaps, or work breakdowns based on PRD (Product Requirements Document), Tech Specs, or UI/UX specs. Triggers include requests like "generate tasks from PRD", "create sprint plan", "break down this spec into tasks", "create a roadmap", or "plan the implementation".
npx skillsauth add aiskillstore/marketplace tasks-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate structured, actionable task roadmaps from project specifications (PRD, Tech Specs, UI/UX Specs).
assets/tasks-template.mdLocate specification documents in these common paths:
.claude/docs/specs/prd.md or docs/prd.md.claude/docs/specs/tech-specs.md or docs/tech-specs.md.claude/docs/specs/ui-ux.md or docs/ui-ux.mdIf documents are missing, prompt user for their locations.
Parse the PRD for:
Parse Tech Specs for:
Parse UI/UX for:
Phase 1: Foundation (Always required)
Phase 2: Build (Feature development)
[P]Phase 3: Deployment
Use sequential numbering: T001, T002, T003...
Alternative: Decade-based per sprint: SPRINT-001: T001-T009, SPRINT-002: T010-T019
Choose one approach consistently.
Mark tasks with [P] when:
[P] tasks can run simultaneouslyExample:
- T001 [P]: Initialize project structure
- T002 [P]: Configure linting
- T003: Install dependencies (depends on T001)
Each sprint must include:
Pattern:
**Acceptance Criteria:**
- [ ] [Specific measurable outcome]
- [ ] [Tests pass / coverage requirement]
- [ ] [Integration verified]
**Verification:**
- Run [specific command] and confirm [expected result]
- Demo [specific feature] to verify [behavior]
Use the template at assets/tasks-template.md for consistent formatting.
Key sections:
When specs don't provide estimates:
references/task-analysis.mdassets/tasks-template.mddevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.