Skip to content

Commit 587b01a

Browse files
kriscolemanExercise Test Bot
authored andcommitted
Initial commit
0 parents  commit 587b01a

27 files changed

Lines changed: 7474 additions & 0 deletions

File tree

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
name: 🤖 AI Workflow Question
2+
description: Questions about using AI tools with git worktrees
3+
title: "[AI] "
4+
labels: ["ai-workflows", "question"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Ask questions about integrating AI coding assistants with git worktrees! This is an advanced topic and we're here to help.
10+
11+
- type: dropdown
12+
id: ai_tool
13+
attributes:
14+
label: AI Tool
15+
description: Which AI coding assistant are you using or asking about?
16+
options:
17+
- Claude Code
18+
- GitHub Copilot
19+
- Cursor
20+
- ChatGPT/GPT-4
21+
- Replit Agent
22+
- Tabnine
23+
- CodeWhisperer
24+
- Multiple tools
25+
- Other
26+
- General AI workflow question
27+
validations:
28+
required: true
29+
30+
- type: dropdown
31+
id: question_type
32+
attributes:
33+
label: Question Type
34+
description: What aspect of AI + worktrees are you asking about?
35+
options:
36+
- Setting up multiple AI agents in different worktrees
37+
- Coordinating AI work across worktrees
38+
- AI agent specialization strategies
39+
- Merging AI-generated code from different worktrees
40+
- Performance optimization for AI + worktrees
41+
- Best practices for AI collaboration
42+
- Tool-specific integration questions
43+
- AI workflow patterns
44+
- Troubleshooting AI + worktree issues
45+
- Other
46+
validations:
47+
required: true
48+
49+
- type: textarea
50+
id: question_description
51+
attributes:
52+
label: Your Question
53+
description: Describe your question about AI workflows with worktrees
54+
placeholder: "I'm trying to set up multiple Claude Code instances to work on different features simultaneously, but..."
55+
validations:
56+
required: true
57+
58+
- type: textarea
59+
id: current_setup
60+
attributes:
61+
label: Current Setup
62+
description: Describe your current AI + worktree setup
63+
placeholder: |
64+
- Project structure: main/, feature-a/, feature-b/
65+
- AI tools: Claude Code in main directory
66+
- Goal: Have one AI work on frontend, another on backend
67+
- Challenge: ...
68+
69+
- type: textarea
70+
id: what_tried
71+
attributes:
72+
label: What You've Tried
73+
description: What approaches have you already attempted?
74+
placeholder: "I tried opening multiple terminals with different AI sessions, but..."
75+
76+
- type: dropdown
77+
id: experience_level
78+
attributes:
79+
label: Experience Level
80+
description: How experienced are you with AI-assisted development?
81+
options:
82+
- Beginner - New to AI coding tools
83+
- Intermediate - Used AI tools for simple tasks
84+
- Advanced - Experienced with AI workflows
85+
- Expert - Developing custom AI integrations
86+
87+
- type: dropdown
88+
id: project_type
89+
attributes:
90+
label: Project Type
91+
description: What type of project are you working on?
92+
options:
93+
- Web application (frontend + backend)
94+
- Mobile application
95+
- Desktop application
96+
- CLI tool
97+
- Library/package
98+
- Data science project
99+
- DevOps/infrastructure
100+
- Other
101+
102+
- type: textarea
103+
id: workflow_goal
104+
attributes:
105+
label: Desired Workflow
106+
description: Describe your ideal AI + worktree workflow
107+
placeholder: "I want to have one AI agent focused on React components while another works on the API endpoints, and they should be able to coordinate their work..."
108+
109+
- type: checkboxes
110+
id: specific_interests
111+
attributes:
112+
label: Specific Interests
113+
description: Which AI + worktree topics are you most interested in?
114+
options:
115+
- Parallel AI development (multiple agents)
116+
- AI agent specialization (frontend, backend, testing)
117+
- Code integration from multiple AI sources
118+
- AI-assisted code review workflows
119+
- Performance optimization
120+
- Team collaboration with AI agents
121+
- Custom AI tool integration
122+
- Enterprise AI development patterns
123+
124+
- type: textarea
125+
id: additional_context
126+
attributes:
127+
label: Additional Context
128+
description: Any other details that would help us provide better guidance?
129+
placeholder: "Team size, development timeline, specific challenges, etc."
130+
131+
- type: checkboxes
132+
id: checklist
133+
attributes:
134+
label: Checklist
135+
description: Please confirm
136+
options:
137+
- label: I have read the AI Development Guide in the docs/ folder
138+
- label: I have completed the basic worktree exercises (1-3)
139+
- label: I understand the fundamentals of git worktrees
140+
required: true
Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
name: 🐛 Bug Report
2+
description: Report a bug or issue with the Git Worktrees Tutorial
3+
title: "[Bug] "
4+
labels: ["bug", "needs-triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for reporting a bug! Please provide as much detail as possible to help us understand and reproduce the issue.
10+
11+
- type: dropdown
12+
id: tutorial_section
13+
attributes:
14+
label: Tutorial Section
15+
description: Which part of the tutorial is affected?
16+
options:
17+
- Main README
18+
- Exercise 1 - Basic Operations
19+
- Exercise 2 - Parallel Features
20+
- Exercise 3 - Hotfix Workflow
21+
- Exercise 4 - AI Agents
22+
- Exercise 5 - Cleanup
23+
- Scripts (setup, cleanup, status, validation)
24+
- Documentation (cheatsheet, best practices, AI guide)
25+
- Sample Project
26+
- Other
27+
validations:
28+
required: true
29+
30+
- type: textarea
31+
id: bug_description
32+
attributes:
33+
label: Bug Description
34+
description: A clear and concise description of what the bug is
35+
placeholder: Describe the bug...
36+
validations:
37+
required: true
38+
39+
- type: textarea
40+
id: steps_to_reproduce
41+
attributes:
42+
label: Steps to Reproduce
43+
description: Steps to reproduce the behavior
44+
placeholder: |
45+
1. Go to '...'
46+
2. Run command '....'
47+
3. See error
48+
validations:
49+
required: true
50+
51+
- type: textarea
52+
id: expected_behavior
53+
attributes:
54+
label: Expected Behavior
55+
description: A clear description of what you expected to happen
56+
placeholder: What should have happened?
57+
validations:
58+
required: true
59+
60+
- type: textarea
61+
id: actual_behavior
62+
attributes:
63+
label: Actual Behavior
64+
description: What actually happened instead?
65+
placeholder: What happened instead?
66+
validations:
67+
required: true
68+
69+
- type: textarea
70+
id: error_output
71+
attributes:
72+
label: Error Output
73+
description: If applicable, paste any error messages or output
74+
placeholder: Paste error messages here...
75+
render: shell
76+
77+
- type: input
78+
id: git_version
79+
attributes:
80+
label: Git Version
81+
description: What version of Git are you using?
82+
placeholder: "git --version"
83+
validations:
84+
required: true
85+
86+
- type: input
87+
id: os_version
88+
attributes:
89+
label: Operating System
90+
description: What OS are you running?
91+
placeholder: "macOS 13.0, Ubuntu 22.04, Windows 11, etc."
92+
validations:
93+
required: true
94+
95+
- type: dropdown
96+
id: terminal
97+
attributes:
98+
label: Terminal/Shell
99+
description: What terminal or shell are you using?
100+
options:
101+
- bash
102+
- zsh
103+
- fish
104+
- PowerShell
105+
- Command Prompt
106+
- Git Bash
107+
- Other
108+
109+
- type: textarea
110+
id: additional_context
111+
attributes:
112+
label: Additional Context
113+
description: Add any other context about the problem here
114+
placeholder: Screenshots, workaround attempts, etc.
115+
116+
- type: checkboxes
117+
id: checklist
118+
attributes:
119+
label: Checklist
120+
description: Please confirm the following
121+
options:
122+
- label: I have searched existing issues to avoid duplicates
123+
required: true
124+
- label: I have provided all the requested information
125+
required: true
126+
- label: I have tested this with the latest version of the tutorial
127+
required: true

0 commit comments

Comments
 (0)