Skip to content

Commit 2476313

Browse files
committed
docs(conductor): Simplify workflow by removing frontend and mobile requirements
1 parent f9f1011 commit 2476313

1 file changed

Lines changed: 3 additions & 23 deletions

File tree

conductor/workflow.md

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,6 @@ All tasks follow a strict lifecycle:
8585
- You **must** generate a step-by-step plan that walks the user through the verification process, including any necessary commands and specific, expected outcomes.
8686
- The plan you present to the user **must** follow this format:
8787

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:**
9988
```
10089
The automated tests have passed. For manual verification, please follow these steps:
10190
@@ -138,7 +127,6 @@ Before marking any task complete, verify:
138127
- [ ] All public functions/methods are documented (e.g., docstrings, JSDoc, GoDoc)
139128
- [ ] Type safety is enforced (e.g., type hints, TypeScript types, Go types)
140129
- [ ] No linting or static analysis errors (using the project's configured tools)
141-
- [ ] Works correctly on mobile (if applicable)
142130
- [ ] Documentation updated if needed
143131
- [ ] No security vulnerabilities introduced
144132
@@ -181,13 +169,6 @@ Before marking any task complete, verify:
181169
- Test authentication and authorization
182170
- Check form submissions
183171

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-
191172
## Code Review Process
192173

193174
### Self-Review Checklist
@@ -263,10 +244,9 @@ A task is complete when:
263244
3. Code coverage meets project requirements
264245
4. Documentation complete (if applicable)
265246
5. Code passes all configured linting and static analysis checks
266-
6. Works beautifully on mobile (if applicable)
267-
7. Implementation notes added to `plan.md`
268-
8. Changes committed with proper message
269-
9. Task summary included in the commit message
247+
6. Implementation notes added to `plan.md`
248+
7. Changes committed with proper message
249+
8. Task summary included in the commit message
270250

271251
## Emergency Procedures
272252

0 commit comments

Comments
 (0)