TradingAgents/.gemini/commands/kiro/spec-tasks.toml

175 lines
7.1 KiB
TOML

description = "Generate implementation tasks for a specification"
prompt = """
# Implementation Tasks
Generate detailed implementation tasks for feature: **{{args}}**
## Task: Generate Implementation Tasks
### Prerequisites & Context Loading
- If invoked with `-y` flag: Auto-approve requirements and design in `spec.json`
- Otherwise: Stop if requirements/design missing or unapproved with message:
"Run `/kiro:spec-requirements` and `/kiro:spec-design` first, or use `-y` flag to auto-approve"
- If tasks.md exists: Prompt [o]verwrite/[m]erge/[c]ancel
**Context Loading (Full Paths)**:
1. `.kiro/specs/{{args}}/requirements.md` - Feature requirements (EARS format)
2. `.kiro/specs/{{args}}/design.md` - Technical design document
3. `.kiro/steering/` - Project-wide guidelines and constraints:
- **Core files (always load)**:
- @.kiro/steering/product.md - Business context, product vision, user needs
- @.kiro/steering/tech.md - Technology stack, frameworks, libraries
- @.kiro/steering/structure.md - File organization, naming conventions, code patterns
- **Custom steering files** (load all EXCEPT "Manual" mode in `AGENTS.md`):
- Any additional `*.md` files in `.kiro/steering/` directory
- Examples: `api.md`, `testing.md`, `security.md`, etc.
- (Task planning benefits from comprehensive context)
4. `.kiro/specs/{{args}}/tasks.md` - Existing tasks (only if merge mode)
### CRITICAL Task Numbering Rules (MUST FOLLOW)
**⚠️ MANDATORY: Sequential major task numbering & hierarchy limits**
- Major tasks: 1, 2, 3, 4, 5... (MUST increment sequentially)
- Sub-tasks: 1.1, 1.2, 2.1, 2.2... (reset per major task)
- **Maximum 2 levels of hierarchy** (no 1.1.1 or deeper)
- Format exactly as:
```markdown
- [ ] 1. Major task description
- [ ] 1.1 Sub-task description
- Detail item 1
- Detail item 2
- _Requirements: X.X, Y.Y_
- [ ] 1.2 Sub-task description
- Detail items...
- _Requirements: X.X_
- [ ] 2. Next major task (NOT 1 again!)
- [ ] 2.1 Sub-task...
```
### Task Generation Rules
1. **Natural language descriptions**: Focus on capabilities and outcomes, not code structure
- Describe **what functionality to achieve**, not file locations or code organization
- Specify **business logic and behavior**, not method signatures or type definitions
- Reference **features and capabilities**, not class names or API contracts
- Use **domain language**, not programming constructs
- **Avoid**: File paths, function/method names, type signatures, class/interface names, specific data structures
- **Include**: User-facing functionality, business rules, system behaviors, data relationships
- Implementation details (files, methods, types) come from design.md
2. **Task integration & progression**:
- Each task must build on previous outputs (no orphaned code)
- End with integration tasks to wire everything together
- No hanging features - every component must connect to the system
- Incremental complexity - no big jumps between tasks
- Validate core functionality early in the sequence
3. **Flexible task sizing**:
- Major tasks: As many sub-tasks as logically needed
- Sub-tasks: 1-3 hours each, 3-10 details per sub
- Group by cohesion, not arbitrary numbers
- Balance between too granular and too broad
4. **Requirements mapping**: End details with `_Requirements: X.X, Y.Y_` or `_Requirements: [description]_`
5. **Code-only focus**: Include ONLY coding/testing tasks, exclude deployment/docs/user testing
### Example Structure (FORMAT REFERENCE ONLY)
```markdown
# Implementation Plan
- [ ] 1. Set up project foundation and infrastructure
- Initialize project with required technology stack
- Configure server infrastructure and request handling
- Establish data storage and caching layer
- Set up configuration and environment management
- _Requirements: All requirements need foundational setup_
- [ ] 2. Build authentication and user management system
- [ ] 2.1 Implement core authentication functionality
- Set up user data storage with validation rules
- Implement secure authentication mechanism
- Build user registration functionality
- Add login and session management features
- _Requirements: 7.1, 7.2_
- [ ] 2.2 Enable email service integration
- Implement secure credential storage system
- Build authentication flow for email providers
- Create email connection validation logic
- Develop email account management features
- _Requirements: 5.1, 5.2, 5.4_
```
### Requirements Coverage Check
- **MANDATORY**: Ensure ALL requirements from requirements.md are covered
- Cross-reference every requirement ID with task mappings
- If gaps found: Return to requirements or design phase
- No requirement should be left without corresponding tasks
### Document Generation
- Generate `.kiro/specs/{{args}}/tasks.md` using the exact numbering format above
- **Language**: Use language from `spec.json.language` field, default to English
- **Task descriptions**: Use natural language for "what to do" (implementation details in design.md)
- Update `.kiro/specs/{{args}}/spec.json`:
- Set `phase: "tasks-generated"`
- Set approvals map exactly as:
- `approvals.tasks = { "generated": true, "approved": false }`
- Preserve existing metadata (e.g., `language`), do not remove unrelated fields
- If invoked with `-y` flag: ensure the above approval booleans are applied even if previously unset/false
- Set `updated_at` to current ISO8601 timestamp
- Use file tools only (no shell commands)
---
## INTERACTIVE APPROVAL IMPLEMENTED (Not included in document)
The following is for Claude Code conversation only - NOT for the generated document:
## Next Phase: Implementation Ready
After generating tasks.md, review the implementation tasks:
**If tasks look good:**
Begin implementation following the generated task sequence
**If tasks need modification:**
Request changes and re-run this command after modifications
Tasks represent the final planning phase - implementation can begin once tasks are approved.
**Final approval process for implementation**:
```
📋 Tasks review completed. Ready for implementation.
📄 Generated: .kiro/specs/{{args}}/tasks.md
✅ All phases approved. Implementation can now begin.
```
### Next Steps: Implementation
Once tasks are approved, start implementation:
```bash
/kiro:spec-impl {{args}} # Execute all pending tasks
/kiro:spec-impl {{args}} 1.1 # Execute specific task
/kiro:spec-impl {{args}} 1,2,3 # Execute multiple tasks
```
**Implementation Tips**:
- Use `/clear` if conversation becomes too long, then continue with spec commands
- All spec files (.kiro/specs/) are preserved and will be reloaded as needed
### Review Checklist (for user reference):
- [ ] Tasks are properly sized (1-3 hours each)
- [ ] All requirements are covered by tasks
- [ ] Task dependencies are correct
- [ ] Technology choices match the design
- [ ] Testing tasks are included
### Implementation Instructions
When tasks are approved, the implementation phase begins:
1. Work through tasks sequentially
2. Mark tasks as completed in tasks.md
3. Each task should produce working, tested code
4. Commit code after each major task completion
think deeply
"""