Add GitHub Project Board setup and issue templates

- Add comprehensive PROJECT_BOARD_SETUP.md with 20 issues
- Create 3 milestones: v1.1.0, v1.2.0, v2.0.0
- Add issue templates: feature, bug, documentation
- Add PR template with checklist
- Define labels for priority, type, component, status
- Include setup instructions for web UI and CLI

Features:
- 6-column project board structure
- 20 pre-defined issues covering website, core improvements, advanced features
- Custom fields: Effort, Impact, Category
- Success metrics and community engagement guidelines

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
yusyus
2025-10-20 13:38:13 +03:00
parent efaa1454e5
commit 29a181752a
5 changed files with 709 additions and 23 deletions

52
.github/ISSUE_TEMPLATE/bug_report.md vendored Normal file
View File

@@ -0,0 +1,52 @@
---
name: Bug Report
about: Report a bug or issue with Skill Seekers
title: '[BUG] '
labels: 'type: bug'
assignees: ''
---
## 🐛 Bug Description
A clear and concise description of what the bug is.
## 🔄 Steps to Reproduce
1. Go to '...'
2. Run command '...'
3. See error
## ✅ Expected Behavior
What you expected to happen.
## ❌ Actual Behavior
What actually happened.
## 📋 Environment
- **OS:** [e.g., macOS 14.0, Ubuntu 22.04, Windows 11]
- **Python Version:** [e.g., 3.10, 3.11]
- **Skill Seekers Version:** [e.g., v1.0.0]
- **Installation Method:** [pip, git clone, etc.]
## 📊 Error Output
```
Paste the full error message or traceback here
```
## 📸 Screenshots
If applicable, add screenshots to help explain the problem.
## 🔍 Additional Context
- Config file used (if applicable)
- Documentation URL being scraped
- Any custom modifications made
## 🎯 Possible Solution
If you have an idea of how to fix this, please share!

41
.github/ISSUE_TEMPLATE/documentation.md vendored Normal file
View File

@@ -0,0 +1,41 @@
---
name: Documentation Improvement
about: Suggest improvements to documentation
title: '[DOCS] '
labels: 'type: documentation'
assignees: ''
---
## 📚 Documentation Issue
What documentation needs to be improved, added, or fixed?
## 📍 Location
- **File:** [e.g., README.md, docs/CLAUDE.md]
- **Section:** [e.g., Installation, Configuration]
- **URL:** [if applicable]
## ❌ Current State
Describe what's currently unclear, missing, or incorrect.
## ✅ Proposed Improvement
How should the documentation be changed?
## 🎯 Target Audience
Who would benefit from this documentation improvement?
- [ ] New users
- [ ] Advanced users
- [ ] Contributors
- [ ] API users
## 📝 Additional Context
Any additional context or examples that would help.
## 🔗 Related Issues
Link to any related issues or PRs.

View File

@@ -1,36 +1,39 @@
---
name: Feature Request
about: Suggest a new feature for Skill Seeker or MCP server
about: Suggest a new feature for Skill Seekers
title: '[FEATURE] '
labels: enhancement
labels: 'type: feature'
assignees: ''
---
## Feature Description
<!-- Clear description of the feature -->
## 🚀 Feature Description
## Use Case
<!-- Why is this feature needed? What problem does it solve? -->
A clear and concise description of the feature you'd like to see.
## Proposed Solution
<!-- How should this feature work? -->
## 💡 Use Case
## Component
- [ ] CLI Tool
- [ ] MCP Server
- [ ] Configuration
- [ ] Documentation
- [ ] Tests
Describe the problem this feature would solve. What is the user trying to accomplish?
## Examples
<!-- Code examples, screenshots, or mockups -->
## 📋 Proposed Solution
```bash
# Example usage
```
Describe how you envision this feature working.
## Alternatives Considered
<!-- Other approaches you've thought about -->
## 🔄 Alternatives Considered
## Additional Context
<!-- Any other information -->
Have you considered any alternative solutions or workarounds?
## 📊 Expected Impact
- **Priority:** Low / Medium / High / Critical
- **Effort:** XS / S / M / L / XL
- **Users Affected:** Describe who would benefit
## 📝 Additional Context
Add any other context, screenshots, or examples about the feature request.
## ✅ Acceptance Criteria
- [ ] Criteria 1
- [ ] Criteria 2
- [ ] Criteria 3