14 lines
631 B
Plaintext
14 lines
631 B
Plaintext
---
|
|
description: Details the development workflow, including questioning and refining requirements, breaking down tasks, writing tests, implementing code, refactoring, self-review, and ensuring CI passes. This rule provides a structured approach to development tasks.
|
|
globs: **/*
|
|
---
|
|
- |-
|
|
9. Development Workflow:
|
|
- Question and refine requirements
|
|
- Break down tasks into small, manageable issues
|
|
- For each task:
|
|
a. Write failing tests
|
|
b. Implement minimum code to pass tests
|
|
c. Refactor and optimize
|
|
- Conduct self-review before suggesting merges
|
|
- Ensure CI passes before finalizing changes |