mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-09-13 04:04:09 +00:00
- Add essential open source files (CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md, CHANGELOG.md, CONTRIBUTORS.md) - Add GitHub issue and PR templates - Add CI/CD workflows (CI, docs, release, dependabot) - Add pre-commit hooks configuration - Add documentation enhancements (architecture, governance, contributing, community) - Add developer experience scripts (setup-dev, run-tests, format-code, check-code) - Add community features (SUPPORT.md, .all-contributorsrc) - Enhance README badges and project metadata - Update mkdocs.yml navigation structure
60 lines
1.3 KiB
Markdown
60 lines
1.3 KiB
Markdown
---
|
|
name: Feature Request
|
|
about: Suggest an idea for this project
|
|
title: '[FEATURE] '
|
|
labels: enhancement
|
|
assignees: ''
|
|
---
|
|
|
|
## Problem Statement
|
|
|
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
|
|
|
## Proposed Solution
|
|
|
|
A clear and concise description of what you want to happen.
|
|
|
|
## Alternatives Considered
|
|
|
|
A clear and concise description of any alternative solutions or features you've considered.
|
|
|
|
## Use Cases
|
|
|
|
Describe specific use cases where this feature would be helpful:
|
|
|
|
1. Use case 1
|
|
2. Use case 2
|
|
3. Use case 3
|
|
|
|
## Impact Assessment
|
|
|
|
- **Who would benefit?** [e.g., All users, specific user groups]
|
|
- **Priority**: [Low, Medium, High, Critical]
|
|
- **Breaking Changes**: [Yes/No - if yes, describe]
|
|
- **Dependencies**: [Any dependencies or related features]
|
|
|
|
## Implementation Ideas
|
|
|
|
If you have ideas on how this could be implemented, please share:
|
|
|
|
```python
|
|
# Example API or code structure
|
|
from semantica import NewFeature
|
|
|
|
feature = NewFeature()
|
|
# ...
|
|
```
|
|
|
|
## Additional Context
|
|
|
|
- Related issues or PRs
|
|
- References to similar features in other projects
|
|
- Any other context, mockups, or examples
|
|
|
|
## Contribution
|
|
|
|
- [ ] I'm willing to help implement this feature
|
|
- [ ] I can help with documentation
|
|
- [ ] I can help with testing
|
|
|