github-issues.rules.mdc•2.28 kB
---
description: Guidelines to Create Issues on GitHub
globs:
alwaysApply: false
---
When creating or updateing Issues on Github, follow this Guidelines:
## Feature REquest
```
---
name: Feature Request
about: Suggest an enhancement or new feature for this project
labels: "enhancement, needs triage"
---
## 📝 Problem Statement
<!-- Provide a clear, concise description of the problem this feature would solve. What user need or pain point are you addressing? -->
## 🎯 Expected Behavior
<!-- Describe what you want to happen when this feature is implemented. Be specific about the desired outcome. -->
## 🔍 Use Case(s)
<!-- Describe specific scenarios where this feature would be valuable. Include examples of how you or others would use this feature. -->
## 💡 Proposed Solution
<!-- Optional: Share your ideas on how to implement this feature. This section helps start the discussion but isn't required. -->
## 🤔 Alternatives Considered
<!-- Optional: What alternative solutions or workarounds have you considered? Why are they insufficient? -->
## 📊 Business Impact
<!-- Optional: How would this feature benefit the project or its users? Consider metrics like time saved, improved experience, etc. -->
## 📋 Additional Context
<!-- Add any other context, screenshots, mockups, or examples that might help explain your request. -->
## 🔄 Related Issues
<!-- Link to any related issues or discussions. Format: #issue-number -->
```
## Bug Report
```
---
name: Bug report
about: Create a report to help us improve
title: "[BUG] "
labels: bug
assignees: ""
---
## Bug Description
A clear and concise description of what the bug is.
## Steps To Reproduce
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
## Expected Behavior
A clear and concise description of what you expected to happen.
## Actual Behavior
A clear and concise description of what actually happened.
## Screenshots
If applicable, add screenshots to help explain your problem.
## Environment
- OS: [e.g. macOS, Windows, Linux]
- Node.js version: [e.g. 16.14.0]
- MCP version: [e.g. 1.0.0]
- AI Assistant: [e.g. Claude Desktop, Cursor]
## Additional Context
Add any other context about the problem here.
```