@stillrivercode/agentic-workflow-template
Version:
NPM package to create AI-powered GitHub workflow automation projects
57 lines (43 loc) • 1.61 kB
Markdown
# Feature Implementation Prompt Template
## Task: Implement New Feature
### Context
- **Feature Name**: {FEATURE_NAME}
- **Requirements**: {REQUIREMENTS}
- **Affected Components**: {COMPONENTS}
- **Integration Points**: {INTEGRATIONS}
### Implementation Guidelines
1. **Code Structure**
- Follow existing project conventions and patterns
- Use established naming conventions
- Maintain consistent code style with existing codebase
- Implement proper error handling and validation
2. **Testing Requirements**
- Write unit tests for new functionality
- Include integration tests if applicable
- Test edge cases and error conditions
- Ensure test coverage meets project standards
3. **Documentation**
- Add inline code comments for complex logic
- Update API documentation if applicable
- Add usage examples where helpful
- Update README if feature affects public API
4. **Performance Considerations**
- Optimize for performance where applicable
- Consider memory usage and resource constraints
- Implement caching if beneficial
- Monitor database query efficiency
5. **Security**
- Validate all inputs properly
- Implement proper authentication/authorization
- Follow security best practices
- Avoid exposing sensitive information
### Deliverables
- [ ] Feature implementation complete
- [ ] Unit tests written and passing
- [ ] Integration tests added if needed
- [ ] Documentation updated
- [ ] Code follows project conventions
- [ ] Security considerations addressed
- [ ] Performance optimized
### Additional Notes
{ADDITIONAL_CONTEXT}