Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 0 additions & 53 deletions .github/ISSUE_TEMPLATE/bug-.md

This file was deleted.

85 changes: 85 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: Bug Report
description: Report a defect, crash, or unexpected behavior
title: "<short description>"
type: Bug
body:
- type: textarea
id: description
attributes:
label: Description
description: A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What you expected to happen.
validations:
required: false
- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened instead.
validations:
required: false
- type: textarea
id: reproduce
attributes:
label: Steps to Reproduce
description: Detailed steps to reproduce the bug.
placeholder: |
1.
2.
3.
validations:
required: false
- type: input
id: version
attributes:
label: Docker Agent version
description: Output of `docker agent --version`.
validations:
required: false
- type: input
id: os-terminal
attributes:
label: OS & terminal
description: e.g. macOS / Linux / Windows + terminal app.
validations:
required: false
- type: input
id: model
attributes:
label: Model used
description: e.g. claude-opus-4-1, gpt-4, etc.
validations:
required: false
- type: textarea
id: error-output
attributes:
label: Error output
description: If applicable, paste the full error message or stack trace.
render: shell
validations:
required: false
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If this is a visual issue (TUI rendering, output formatting, etc.), add screenshots.
validations:
required: false
- type: textarea
id: context
attributes:
label: Additional context
description: |
Any other information that might help us debug:
- Recent changes to your agent config
- Tools or MCPs being used
- Whether this is a regression (used to work in a previous version)
- Links to related issues
validations:
required: false
49 changes: 0 additions & 49 deletions .github/ISSUE_TEMPLATE/feature-.md

This file was deleted.

62 changes: 62 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Feature Request
description: Suggest a new feature or improvement
title: "<short description>"
type: Enhancement
body:
- type: textarea
id: overview
attributes:
label: Overview
description: Describe the feature or improvement you'd like to see. Be as specific as possible.
validations:
required: true
- type: textarea
id: motivation
attributes:
label: Motivation
description: |
Why is this important? What problem does it solve?
Examples: "This would let me do..."; "Currently, I have to work around this by..."; "This is needed for..."
validations:
required: true
- type: textarea
id: use-cases
attributes:
label: Use cases
description: Describe concrete scenarios where this feature would help.
placeholder: |
1.
2.
3.
validations:
required: false
- type: textarea
id: proposed-solution
attributes:
label: Proposed solution
description: |
If you have ideas on how to implement this, describe them here.
Examples: new CLI flag `--option value`; new agent config field `agents.root.new_field: value`; new tool `xyz_tool`.
validations:
required: false
- type: textarea
id: alternatives
attributes:
label: Alternatives
description: Are there any workarounds available currently? What are the alternatives?
validations:
required: false
- type: textarea
id: related
attributes:
label: Related issues
description: Link any related issues or discussions.
validations:
required: false
- type: textarea
id: context
attributes:
label: Additional context
description: Any other information relevant to this feature request.
validations:
required: false
Loading