f99010fae1
CI / lint (push) Failing after 1s
CI / frontend (push) Failing after 1s
CI / scripts (push) Failing after 1s
CI / Go Test (ubuntu-latest) (push) Failing after 0s
CI / frontend-node-25 (push) Failing after 1s
CI / docs (push) Failing after 0s
CI / coverage (push) Failing after 0s
CI / e2e (push) Failing after 0s
Docker / build-and-push (push) Failing after 1s
CI / integration (push) Failing after 4m43s
CI / Go Test (windows-latest) (push) Has been cancelled
CI / Desktop Unit Tests (Windows) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux (arm64)) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Windows) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (aarch64)) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (x86_64)) (push) Has been cancelled
92 lines
2.9 KiB
YAML
92 lines
2.9 KiB
YAML
name: Bug report
|
|
description: Something is parsed, rendered, counted, installed, or updated incorrectly
|
|
labels: ["bug"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for filing a bug. Please search existing issues first.
|
|
|
|
For a wrong-render, wrong-count, or wrong-parse bug, the single most
|
|
useful thing you can give us is a small session file that reproduces it.
|
|
Session files can contain secrets and proprietary code, so redact before
|
|
sharing.
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: agentsview version
|
|
description: "Output of `agentsview version`"
|
|
placeholder: "agentsview v0.32.1 (commit 1964e4f8, built 2026-06-05T19:05:47Z)"
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: install
|
|
attributes:
|
|
label: Install method
|
|
options:
|
|
- Homebrew cask
|
|
- install.sh / install.ps1
|
|
- GitHub release binary
|
|
- Docker image
|
|
- go install
|
|
- Built from source
|
|
- Other / not sure
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: os
|
|
attributes:
|
|
label: OS / platform
|
|
placeholder: "macOS 26.5 (arm64) / Windows 11 / Fedora 44"
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: agent
|
|
attributes:
|
|
label: Which agent and version
|
|
description: The coding agent whose sessions are affected, plus its version. Write "n/a" for bugs unrelated to a specific agent (install, updater, UI).
|
|
placeholder: "OpenClaw 0.x.y"
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: model
|
|
attributes:
|
|
label: Which model(s)
|
|
description: The model(s) behind the affected session, with provider if relevant. Write "n/a" if not applicable.
|
|
placeholder: "claude-opus-4-8 / gpt-5 / gemini-3-pro"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened, and what did you expect
|
|
placeholder: "Tool-call messages do not render; only user/assistant turns show. Expected the tool call and its result to appear."
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: session-file
|
|
attributes:
|
|
label: Sample session file or snippet
|
|
description: >
|
|
For parse/render/usage bugs: attach a small session file that reproduces
|
|
the problem, or paste the relevant entry (for example the raw tool-call
|
|
object). Remove secrets and private data first.
|
|
render: text
|
|
- type: textarea
|
|
id: repro
|
|
attributes:
|
|
label: Steps to reproduce
|
|
placeholder: |
|
|
1. ...
|
|
2. ...
|
|
Include exact CLI commands where relevant.
|
|
- type: checkboxes
|
|
id: hygiene
|
|
attributes:
|
|
label: Checklist
|
|
options:
|
|
- label: I searched existing issues
|
|
required: true
|
|
- label: I removed secrets and private data from any attached session files
|
|
required: true
|