Skip to content

Commit 0453e85

Browse files
feat: Add GitHub issue templates for better issue tracking
- Add bug report template with environment details and affected files checklist - Add feature request template tailored for documentation framework improvements - Add config.yml to disable blank issues and provide helpful links - Templates specifically designed for Claude Conductor documentation framework This enables structured issue reporting and feature requests from the community. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 9cfa1eb commit 0453e85

File tree

3 files changed

+102
-0
lines changed

3 files changed

+102
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve Claude Conductor
4+
title: '[BUG] '
5+
labels: 'bug'
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Environment (please complete the following information):**
27+
- OS: [e.g. macOS, Windows, Linux]
28+
- Node.js Version: [e.g. 18.0.0]
29+
- Claude Conductor Version: [e.g. 1.1.1]
30+
- Claude Code Version: [e.g. latest]
31+
32+
**Documentation Files Affected**
33+
Which documentation files are involved in this bug?
34+
- [ ] CONDUCTOR.md
35+
- [ ] CLAUDE.md
36+
- [ ] ARCHITECTURE.md
37+
- [ ] DESIGN.md
38+
- [ ] UIUX.md
39+
- [ ] CONFIG.md
40+
- [ ] DATA_MODEL.md
41+
- [ ] API.md
42+
- [ ] BUILD.md
43+
- [ ] TEST.md
44+
- [ ] CONTRIBUTING.md
45+
- [ ] PLAYBOOKS/DEPLOY.md
46+
- [ ] ERRORS.md
47+
- [ ] JOURNAL.md
48+
- [ ] TASKS.md
49+
- [ ] Other: _____
50+
51+
**Error Messages**
52+
```
53+
Paste any error messages here
54+
```
55+
56+
**Additional context**
57+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Claude Conductor Documentation
4+
url: https://github.com/superbasicstudio/claude-conductor/blob/main/README.md
5+
about: Please read the documentation before opening an issue
6+
- name: Contributing Guidelines
7+
url: https://github.com/superbasicstudio/claude-conductor/blob/main/CONTRIBUTING.md
8+
about: Want to contribute? Start here!
9+
- name: Community Discussions
10+
url: https://github.com/superbasicstudio/claude-conductor/discussions
11+
about: Ask questions and discuss ideas with the community
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for Claude Conductor
4+
title: '[FEATURE] '
5+
labels: 'enhancement'
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**How would this benefit Claude Code projects?**
20+
Explain how this feature would improve the documentation framework for projects using Claude Code.
21+
22+
**Proposed Implementation**
23+
If you have ideas about how this could be implemented:
24+
- Which documentation modules would be affected?
25+
- Would this require changes to CONDUCTOR.md?
26+
- Are there any new files or sections needed?
27+
28+
**Additional context**
29+
Add any other context or screenshots about the feature request here.
30+
31+
**Would you be willing to contribute this feature?**
32+
- [ ] Yes, I'd like to implement this
33+
- [ ] Yes, I'd like to help with testing
34+
- [ ] No, but I'm happy to provide feedback

0 commit comments

Comments
 (0)