mirror of
https://github.com/zebbern/claude-code-guide.git
synced 2026-08-31 02:59:26 +08:00
Add feature implementation system guidelines
Added guidelines for feature implementation, including priority rules, workflow, context optimization, and general guidelines.
This commit is contained in:
@@ -1 +1,27 @@
|
||||
Currently Updating...
|
||||
## Feature Implementation System Guidelines
|
||||
|
||||
### Feature Implementation Priority Rules
|
||||
- IMMEDIATE EXECUTION: Launch parallel Tasks immediately upon feature requests
|
||||
- NO CLARIFICATION: Skip asking what type of implementation unless absolutely critical
|
||||
- PARALLEL BY DEFAULT: Always use 7-parallel-Task method for efficiency
|
||||
|
||||
### Parallel Feature Implementation Workflow
|
||||
1. **Component**: Create main component file
|
||||
2. **Styles**: Create component styles/CSS
|
||||
3. **Tests**: Create test files
|
||||
4. **Types**: Create type definitions
|
||||
5. **Hooks**: Create custom hooks/utilities
|
||||
6. **Integration**: Update routing, imports, exports
|
||||
7. **Remaining**: Update package.json, documentation, configuration files
|
||||
8. **Review and Validation**: Coordinate integration, run tests, verify build, check for conflicts
|
||||
|
||||
### Context Optimization Rules
|
||||
- Strip out all comments when reading code files for analysis
|
||||
- Each task handles ONLY specified files or file types
|
||||
- Task 7 combines small config/doc updates to prevent over-splitting
|
||||
|
||||
### Feature Implementation Guidelines
|
||||
- **CRITICAL**: Make MINIMAL CHANGES to existing patterns and structures
|
||||
- **CRITICAL**: Preserve existing naming conventions and file organization
|
||||
- Follow project's established architecture and component patterns
|
||||
- Use existing utility functions and avoid duplicating functionality
|
||||
|
||||
Reference in New Issue
Block a user