mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
45 lines
1.1 KiB
Markdown
45 lines
1.1 KiB
Markdown
---
|
|
inclusion: manual
|
|
description: Development mode context for active feature implementation and coding work
|
|
---
|
|
|
|
# Development Mode
|
|
|
|
Use this context when actively implementing features or writing code.
|
|
|
|
## Focus Areas
|
|
|
|
- Write clean, maintainable code
|
|
- Follow TDD workflow when appropriate
|
|
- Implement incrementally with frequent testing
|
|
- Consider edge cases and error handling
|
|
- Document complex logic inline
|
|
|
|
## Workflow
|
|
|
|
1. Understand requirements thoroughly
|
|
2. Plan implementation approach
|
|
3. Write tests first (when using TDD)
|
|
4. Implement minimal working solution
|
|
5. Refactor for clarity and maintainability
|
|
6. Verify all tests pass
|
|
|
|
## Code Quality
|
|
|
|
- Prioritize readability over cleverness
|
|
- Keep functions small and focused
|
|
- Use meaningful variable and function names
|
|
- Add comments for non-obvious logic
|
|
- Follow project coding standards
|
|
|
|
## Testing
|
|
|
|
- Write unit tests for business logic
|
|
- Test edge cases and error conditions
|
|
- Ensure tests are fast and reliable
|
|
- Use descriptive test names
|
|
|
|
## Invocation
|
|
|
|
Use `#dev-mode` to activate this context when starting development work.
|