-
Notifications
You must be signed in to change notification settings - Fork 328
Expand file tree
/
Copy pathexample-prd.yaml
More file actions
93 lines (71 loc) · 2.54 KB
/
example-prd.yaml
File metadata and controls
93 lines (71 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Example PRD - Task List (YAML Format)
#
# This is an example PRD in YAML format for use with ralphy.
# YAML format supports parallel task groups for concurrent execution.
#
# Usage:
# ralphy --yaml example-prd.yaml
# ralphy --yaml example-prd.yaml --parallel # Run parallel groups concurrently
tasks:
# Sequential tasks (parallel_group: 0 or omitted = run one at a time)
- title: Initialize the project with the chosen framework
completed: false
description: |
Set up a new project using the appropriate framework.
Include TypeScript configuration and basic folder structure.
- title: Set up the development environment and install dependencies
completed: false
- title: Configure linting and formatting tools (ESLint, Prettier)
completed: false
# Parallel group 1 - These tasks can run concurrently
- title: Create the main application layout and navigation
completed: false
parallel_group: 1
- title: Design and create the database schema
completed: false
parallel_group: 1
- title: Set up authentication provider configuration
completed: false
parallel_group: 1
# Parallel group 2 - Another set of concurrent tasks
- title: Implement user authentication (login, signup, logout)
completed: false
parallel_group: 2
- title: Implement API endpoints for CRUD operations
completed: false
parallel_group: 2
- title: Build the dashboard page with key metrics
completed: false
parallel_group: 2
# Back to sequential tasks
- title: Add data fetching and state management
completed: false
- title: Add input validation and error handling
completed: false
- title: Style components with Tailwind CSS
completed: false
- title: Add loading states and skeleton screens
completed: false
- title: Implement toast notifications for user feedback
completed: false
- title: Ensure responsive design for mobile devices
completed: false
# Parallel group 3 - Testing tasks can run in parallel
- title: Write unit tests for core functions
completed: false
parallel_group: 3
- title: Add integration tests for API endpoints
completed: false
parallel_group: 3
- title: Test user flows end-to-end
completed: false
parallel_group: 3
# Final sequential tasks
- title: Configure environment variables for production
completed: false
- title: Set up CI/CD pipeline
completed: false
- title: Deploy to production environment
completed: false
- title: Verify deployment and run smoke tests
completed: false