Files
trebuchet/.github/ISSUE_TEMPLATE/bug_report.yml
T
2026-04-01 02:33:12 +05:30

165 lines
4.6 KiB
YAML

name: Bug report
description: Create a report to help us improve
title: "[BUG]: "
labels: []
assignees: []
body:
- type: textarea
id: describe-the-bug
attributes:
label: Describe the bug
description: Provide a clear and concise description of the issue.
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to reproduce
value: |
1.
2.
3.
validations:
required: true
- type: textarea
id: expected-behaviour
attributes:
label: Expected behaviour
description: Describe what you expected to happen.
validations:
required: true
- type: textarea
id: actual-behaviour
attributes:
label: Actual behaviour
description: Describe what actually happened.
validations:
required: true
- type: checkboxes
id: pre-submission-checklist
attributes:
label: Pre-submission checklist (required)
options:
- label: I have searched the existing open issues and confirmed this bug has not already been reported.
required: true
- label: I am running the latest released version of `shannon`.
required: true
- type: checkboxes
id: applicable-checklist
attributes:
label: If applicable
options:
- label: I have included relevant error messages, stack traces, or failure details.
- label: I have checked the workspaces folder for logs and pasted the relevant errors.
- label: I have inspected the failed Temporal workflow run and included the failure reason.
- label: I have included clear steps to reproduce the issue.
- label: I have redacted any sensitive information (tokens, URLs, repo names).
- type: markdown
attributes:
value: |
### Debugging checklist (required)
Please include any **error messages, stack traces, or failure details** you find from the steps below.
Issues without this information may be difficult to triage.
- Check the workflow log:
- **npx mode:** `~/.shannon/workspaces/<workspace>/workflow.log`
- **Local mode:** `./workspaces/<workspace>/workflow.log`
Use `grep` or search to identify errors.
Paste the relevant error output below.
- Temporal:
- Open the Temporal UI: http://localhost:8233/namespaces/default/workflows
- Navigate to failed workflow runs
- Open the failed workflow run
- In Event History, click on the failed event
Copy the error message or failure reason here.
- type: textarea
id: debugging-details
attributes:
label: Debugging details
description: Paste any error messages, stack traces, or failure details from the workspace logs or Temporal UI.
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, add screenshots of the workspace logs or Temporal failure details.
- type: markdown
attributes:
value: |
### CLI details
Provide the following information (redact sensitive data such as repository names, URLs, and tokens):
- type: dropdown
id: cli-mode
attributes:
label: CLI mode
options:
- "npx (@keygraph/shannon)"
- "Local (./shannon)"
validations:
required: true
- type: dropdown
id: provider
attributes:
label: Provider
options:
- "Anthropic (API key)"
- "Anthropic (OAuth token)"
- "Custom base URL (proxy/gateway)"
- "AWS Bedrock"
- "Google Vertex AI"
- "Router - OpenAI"
- "Router - OpenRouter"
validations:
required: true
- type: input
id: shannon-command
attributes:
label: Full command with all flags used (with redactions)
placeholder: "e.g. npx @keygraph/shannon start -u <url> -r my-repo OR ./shannon start -u <url> -r my-repo"
validations:
required: true
- type: input
id: os-version
attributes:
label: "OS (with version)"
placeholder: "e.g. macOS 26.2"
validations:
required: true
- type: input
id: node-version
attributes:
label: "Node.js version ('node -v')"
placeholder: "e.g. 22.12.0"
validations:
required: true
- type: input
id: docker-version
attributes:
label: "Docker version ('docker -v')"
placeholder: "e.g. 25.0.3"
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional context
description: Add any other context that may help us analyze the root cause.