mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
1.1 KiB
1.1 KiB
inclusion, description
| inclusion | description |
|---|---|
| manual | 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
- Understand requirements thoroughly
- Plan implementation approach
- Write tests first (when using TDD)
- Implement minimal working solution
- Refactor for clarity and maintainability
- 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.