Skip to content

Commit ba028b3

Browse files
committed
fix: github issue template
1 parent 1ebd7b4 commit ba028b3

2 files changed

Lines changed: 33 additions & 78 deletions

File tree

.github/ISSUE_TEMPLATE/1.bug_report.yml

Lines changed: 16 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
name: Bug report
2-
description: Report something that is not working as expected in Command Code.
2+
description: Report a bug for Command Code.
33
labels: []
44
body:
55
- type: markdown
66
attributes:
77
value: |
8-
Thanks for helping us improve Command Code, the terminal-based coding agent. The more detail you can share, the faster we can understand and fix the issue.
9-
10-
Before filing, please check that you are using the latest version and include exact commands, screenshots, logs, or request IDs when available. If you need help confirming whether something is a bug, feel free to [start a new thread in our Discord forum](https://commandcode.ai/discord).
8+
Use this template to report bugs for Command Code. Feel free to [start a new thread in our discord forum](https://commandcode.ai/discord).
119
- type: textarea
1210
attributes:
1311
label: Summary
@@ -18,34 +16,34 @@ body:
1816
- type: textarea
1917
attributes:
2018
label: Expected Behavior
21-
description: What did you expect Command Code to do?
22-
placeholder: The queued message should send automatically after /compact finishes.
19+
description: Describe the expected behavior you were expecting.
20+
placeholder: Expected behavior...
2321
validations:
2422
required: true
2523
- type: textarea
2624
attributes:
2725
label: Actual Behavior
28-
description: What actually happened? Include exact error messages, request IDs, or screenshots if you have them.
29-
placeholder: The message stays queued and pressing Enter does not send it.
26+
description: Describe the actual behavior that occurred.
27+
placeholder: Actual behavior...
3028
validations:
3129
required: true
3230
- type: textarea
3331
attributes:
3432
label: Steps to reproduce the issue
35-
description: Provide the smallest set of steps that reliably reproduces the issue. Include commands, slash commands, prompts, config, files, or MCP setup needed to trigger it.
33+
description: Describe the actual steps to reproduce the issue.
3634
placeholder: |
37-
1. Run `commandcode` in a repository with ...
38-
2. Type `/compact` while ...
39-
3. Queue a follow-up message ...
40-
4. Observe that ...
35+
1. ...
36+
2. ...
37+
3. ...
38+
4. ...
4139
validations:
4240
required: true
4341
- type: input
4442
id: version
4543
attributes:
4644
label: Command Code Version
47-
description: Run `commandcode --version` or `cmd --version` and paste the exact output.
48-
placeholder: commandcode 0.25.13
45+
description: Run `cmd --version` to get the version.
46+
placeholder: 0.0.1
4947
validations:
5048
required: true
5149
- type: dropdown
@@ -68,32 +66,14 @@ body:
6866
id: terminal
6967
attributes:
7068
label: Terminal/IDE
71-
description: Which terminal app or IDE terminal are you using?
72-
placeholder: VS Code integrated terminal, iTerm2, Windows Terminal, Hyper
69+
description: Which terminal or IDE are you using?
70+
placeholder: vscode
7371
- type: input
7472
id: shell
7573
attributes:
7674
label: Shell
7775
description: Which shell are you using?
78-
placeholder: zsh, bash, fish, PowerShell 5.1, Git Bash
79-
- type: input
80-
id: install-method
81-
attributes:
82-
label: Installation Method
83-
description: How did you install or run Command Code?
84-
placeholder: npm install -g command-code, npx command-code, bundled binary
85-
- type: input
86-
id: node-version
87-
attributes:
88-
label: Node.js Version
89-
description: If relevant, run `node --version` and paste the exact output.
90-
placeholder: v25.9.0
91-
- type: textarea
92-
id: configuration
93-
attributes:
94-
label: Relevant configuration
95-
description: Share any relevant settings, flags, MCP servers, model/provider, permission mode, or project setup. Do not include secrets, API keys, or private data.
96-
placeholder: I ran with `--yolo`; MCP server configured via ...; model/provider is ...
76+
placeholder: zsh
9777
- type: textarea
9878
attributes:
9979
label: Additional context
Lines changed: 17 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,34 @@
11
name: Feature Request
2-
description: Suggest an improvement or new capability for Command Code.
2+
description: Propose a new feature for Command Code.
33
labels: []
44
body:
55
- type: markdown
66
attributes:
77
value: |
8-
Thanks for sharing ideas for Command Code, the terminal-based coding agent. Clear customer context helps us prioritize and design features that fit real workflows.
9-
10-
If you want to discuss the idea first, feel free to [start a new thread in our Discord forum](https://commandcode.ai/discord).
8+
Use this template to propose new features for Command Code. Feel free to [start a new thread in our discord forum](https://commandcode.ai/discord).
119
- type: textarea
1210
attributes:
13-
label: Problem or workflow
14-
description: What are you trying to accomplish, and what currently makes it difficult?
15-
placeholder: I use Command Code from an automated orchestrator, but I cannot capture token usage from non-interactive runs.
11+
label: Feature Description
12+
description: Describe the feature you are proposing. Include any relevant commands, functionality, or improvements.
13+
placeholder: Feature description...
1614
validations:
1715
required: true
1816
- type: textarea
1917
attributes:
20-
label: Proposed solution
21-
description: Describe the behavior or API you would like Command Code to provide.
22-
placeholder: Add `commandcode -p --output-format json` with final usage, model, and provider fields.
23-
validations:
24-
required: true
25-
- type: textarea
26-
attributes:
27-
label: Use case and impact
28-
description: Who would benefit, how often would they use it, and what would it unblock?
29-
placeholder: This would let automation track cost and compare Command Code against other CLI agents for every run.
30-
validations:
31-
required: true
32-
- type: textarea
33-
attributes:
34-
label: Alternatives or workarounds
35-
description: What have you tried instead, and why is it not enough?
36-
placeholder: We currently log usage as unknown because estimating tokens would be inaccurate.
18+
label: Use Case
19+
description: Explain how this feature would be beneficial.
20+
placeholder: Use case...
3721
- type: textarea
3822
attributes:
39-
label: Example usage
40-
description: If applicable, show the command, slash command, output shape, or UI flow you imagine.
41-
placeholder: |
42-
commandcode -p --output-format json "Implement the task"
43-
44-
Expected final JSON line:
45-
{ "model": "...", "tokens": { "input": 0, "output": 0 } }
23+
label: Additional Context
24+
description: Any additional information like screenshots and links that might help us understand your request.
25+
placeholder: Additional context...
4626
- type: dropdown
4727
id: priority
4828
attributes:
49-
label: How important is this to you?
50-
description: This helps us understand urgency and customer impact.
51-
options:
52-
- Nice to have
53-
- Important for my workflow
54-
- Blocking adoption or production use
55-
- type: textarea
56-
attributes:
57-
label: Additional Context
58-
description: Any additional information like screenshots, links, related issues, comparisons to other tools, or implementation constraints.
59-
placeholder: Additional context...
29+
label: How important is this to you?
30+
description: This helps us understand urgency and customer impact.
31+
options:
32+
- Nice to have
33+
- Important for my workflow
34+
- Blocking adoption or production use

0 commit comments

Comments
 (0)