원클릭으로
task-generation
Generate a detailed task list from a PRP. Use after a PRP is created and ready for implementation planning.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate a detailed task list from a PRP. Use after a PRP is created and ready for implementation planning.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use the Xero MCP server — obtain/refresh OAuth2 bearer tokens, troubleshoot authentication, and pick up other operational notes for working with Xero MCP tools. Use when Xero MCP tools fail with authentication errors, when the bearer token has expired (tokens last ~30 min), before starting any Xero workflow, or for general guidance on Xero MCP usage.
General Xero browser automation notes. Use when automating any Xero page with agent-browser — covers non-standard UI patterns, waiting, and dropdown menus.
Size the agent-browser Chromium window to fill its current screen, leaving a configurable bottom margin for the desktop panel. Use before any agent-browser automation that needs the full screen visible without elements overlapping or scrolling off (e.g. Xero, dense web apps).
Review all unreviewed documents in Hubdoc. Use when reviewing, processing or publishing Hubdoc receipts and bills.
Convert XLSX spreadsheets (single or multi-sheet) to CSV files you can read and grep. Use whenever you need to process an .xlsx report from Xero, Cryptio, bank exports, or any tool that delivers spreadsheet output.
Create Claude Code slash commands, OpenCode command files, and Pi prompt templates that delegate to the right subagent or skill. Use when creating new commands or refactoring existing ones to follow platform conventions.
| name | task-generation |
| description | Generate a detailed task list from a PRP. Use after a PRP is created and ready for implementation planning. |
Generate a detailed, step-by-step task list in Markdown format based on an existing Product Requirements Prompt (PRP).
Use this skill when:
.ai/[feature-name]/prp.mdfeature_name - Locates the PRP at .ai/[feature-name]/prp.md.ai/[feature-name]/tasks.mdfeat: add .ai/[feature-name]/tasks.md
Generate tasks according to .ai/[feature-name]/prp.md
The tasks.md file must follow this structure:
# Context
See [prp.md][./prp.md] for the corresponding Product Requirements Prompt.
# Relevant Files
- `path/to/file1.ts` - Brief description of why this file is relevant
- `path/to/file1.test.ts` - Unit tests for `file1.ts`
- `path/to/another/file.tsx` - Brief description
- `path/to/another/file.test.tsx` - Unit tests for `another/file.tsx`
- `lib/utils/helpers.ts` - Utility functions needed for calculations
- `lib/utils/helpers.test.ts` - Unit tests for helpers.ts
# Tasks
- [ ] 1. Parent Task Title
- [ ] 1.1. Sub-task description 1.1
- [ ] 1.2. Sub-task description 1.2
- [ ] 2. Parent Task Title
- [ ] 2.1. Sub-task description 2.1
- [ ] 3. Parent Task Title (may not require sub-tasks)
Assume the primary reader is a junior developer who will implement the feature. Tasks should be clear, actionable, and provide enough context for someone less familiar with the codebase to complete them.
The process explicitly requires a pause after generating parent tasks to get user confirmation ("Go") before proceeding to generate detailed sub-tasks. This ensures the high-level plan aligns with user expectations.