You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: conductor/workflow.md
+3-23Lines changed: 3 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,17 +85,6 @@ All tasks follow a strict lifecycle:
85
85
- You **must** generate a step-by-step plan that walks the user through the verification process, including any necessary commands and specific, expected outcomes.
86
86
- The plan you present to the user **must** follow this format:
87
87
88
-
**For a Frontend Change:**
89
-
```
90
-
The automated tests have passed. For manual verification, please follow these steps:
91
-
92
-
**Manual Verification Steps:**
93
-
1. **Start the development server with the command:** `npm run dev`
94
-
2. **Open your browser to:** `http://localhost:3000`
95
-
3. **Confirm that you see:** The new user profile page, with the user's name and email displayed correctly.
96
-
```
97
-
98
-
**For a Backend Change:**
99
88
```
100
89
The automated tests have passed. For manual verification, please follow these steps:
101
90
@@ -138,7 +127,6 @@ Before marking any task complete, verify:
138
127
- [ ] All public functions/methods are documented (e.g., docstrings, JSDoc, GoDoc)
139
128
- [ ] Type safety is enforced (e.g., type hints, TypeScript types, Go types)
140
129
- [ ] No linting or static analysis errors (using the project's configured tools)
141
-
- [ ] Works correctly on mobile (if applicable)
142
130
- [ ] Documentation updated if needed
143
131
- [ ] No security vulnerabilities introduced
144
132
@@ -181,13 +169,6 @@ Before marking any task complete, verify:
181
169
- Test authentication and authorization
182
170
- Check form submissions
183
171
184
-
### Mobile Testing
185
-
- Test on actual iPhone when possible
186
-
- Use Safari developer tools
187
-
- Test touch interactions
188
-
- Verify responsive layouts
189
-
- Check performance on 3G/4G
190
-
191
172
## Code Review Process
192
173
193
174
### Self-Review Checklist
@@ -263,10 +244,9 @@ A task is complete when:
263
244
3. Code coverage meets project requirements
264
245
4. Documentation complete (if applicable)
265
246
5. Code passes all configured linting and static analysis checks
0 commit comments