Skip to content

Commit a0a6c23

Browse files
committed
feat: global AI issue templates
1 parent 34aae5e commit a0a6c23

2 files changed

Lines changed: 69 additions & 0 deletions

File tree

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: AI Bug Report
2+
description: Request the Coding Autopilot System (CAS) to autonomously investigate and fix a bug.
3+
title: "[BUG]: "
4+
labels: ["bug", "ai-dispatch"]
5+
assignees: []
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## 🤖 CAS Factory Dispatch
11+
This issue template is parsed by the `gsd-orchestrator`. Please provide exact reproduction steps.
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Bug Description
16+
description: What is the unexpected behavior?
17+
placeholder: When I click X, Y crashes...
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: repro_steps
22+
attributes:
23+
label: Reproduction Steps
24+
description: How can the AI agent reproduce this issue?
25+
placeholder: 1. Go to... 2. Run command...
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: logs
30+
attributes:
31+
label: Logs / Stack Trace
32+
description: Paste any relevant error logs here.
33+
validations:
34+
required: false
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: AI Feature Request
2+
description: Request the Coding Autopilot System (CAS) to autonomously build a new feature.
3+
title: "[FEATURE]: "
4+
labels: ["enhancement", "ai-dispatch"]
5+
assignees: []
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
## 🤖 CAS Factory Dispatch
11+
This issue template is parsed by the `gsd-orchestrator`. Please provide clear, mathematical specifications.
12+
- type: input
13+
id: phase
14+
attributes:
15+
label: Phase or Milestone
16+
description: What phase does this belong to in the roadmap?
17+
placeholder: e.g., Phase 19.1
18+
validations:
19+
required: false
20+
- type: textarea
21+
id: requirements
22+
attributes:
23+
label: Functional Requirements
24+
description: What exactly should the AI build?
25+
placeholder: Describe the desired behavior...
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: technical_constraints
30+
attributes:
31+
label: Technical Constraints
32+
description: Are there any specific technologies or rules the AI must follow?
33+
placeholder: e.g., "Must use async/await", "Do not modify the database schema"
34+
validations:
35+
required: false

0 commit comments

Comments
 (0)