* docs: harden collaboration policy and review automation * ci(docs): remove unsupported lychee --exclude-mail flag * docs(governance): reduce automation side-effects and tighten risk controls * docs(governance): add backlog pruning and supersede protocol * docs(agents): codify engineering principles and risk-tier workflow * docs(readme): add centered star history section at bottom * docs(agents): enforce privacy-safe and neutral test wording * docs(governance): enforce privacy-safe and neutral collaboration checks * fix(ci): satisfy rustfmt and discord schema test fields * docs(governance): require ZeroClaw-native identity wording * docs(agents): add ZeroClaw identity-safe naming palette * docs(governance): codify code naming and architecture contracts * docs(contributing): add naming and architecture good/bad examples * docs(pr): reduce checkbox TODOs and shift to label-first metadata * docs(pr): remove duplicate collaboration track field * ci(labeler): auto-derive module labels and expand provider hints * ci(labeler): auto-apply trusted contributor on PRs and issues * fix(ci): apply rustfmt updates from latest main * ci(labels): flatten namespaces and add contributor tiers * chore: drop stale rustfmt-only drift * ci: scope Rust and docs checks by change set * ci: exclude non-markdown docs from docs-quality targets * ci: satisfy actionlint shellcheck output style * ci(labels): auto-correct manual contributor tier edits * ci(labeler): auto-correct risk label edits * ci(labeler): auto-correct size label edits --------- Co-authored-by: Chummy <183474434+chumyin@users.noreply.github.com>
148 lines
3.5 KiB
YAML
148 lines
3.5 KiB
YAML
name: Bug Report
|
|
description: Report a reproducible defect in ZeroClaw
|
|
title: "[Bug]: "
|
|
labels:
|
|
- bug
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to report a bug.
|
|
Please provide a minimal reproducible case so maintainers can triage quickly.
|
|
Do not include personal/sensitive data; redact and anonymize all logs/payloads.
|
|
|
|
- type: input
|
|
id: summary
|
|
attributes:
|
|
label: Summary
|
|
description: One-line description of the problem.
|
|
placeholder: zeroclaw daemon exits immediately when ...
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: component
|
|
attributes:
|
|
label: Affected component
|
|
options:
|
|
- runtime/daemon
|
|
- provider
|
|
- channel
|
|
- memory
|
|
- security/sandbox
|
|
- tooling/ci
|
|
- docs
|
|
- unknown
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: severity
|
|
attributes:
|
|
label: Severity
|
|
options:
|
|
- S0 - data loss / security risk
|
|
- S1 - workflow blocked
|
|
- S2 - degraded behavior
|
|
- S3 - minor issue
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: current
|
|
attributes:
|
|
label: Current behavior
|
|
description: What is happening now?
|
|
placeholder: The process exits with ...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected behavior
|
|
description: What should happen instead?
|
|
placeholder: The daemon should stay alive and ...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: reproduce
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: Please provide exact commands/config.
|
|
placeholder: |
|
|
1. zeroclaw onboard --interactive
|
|
2. zeroclaw daemon
|
|
3. Observe crash in logs
|
|
render: bash
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: impact
|
|
attributes:
|
|
label: Impact
|
|
description: Who is affected, how often, and practical consequences.
|
|
placeholder: |
|
|
Affected users: ...
|
|
Frequency: always/intermittent
|
|
Consequence: ...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Logs / stack traces
|
|
description: Paste relevant logs (redact secrets, personal identifiers, and sensitive data).
|
|
render: text
|
|
validations:
|
|
required: false
|
|
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: ZeroClaw version
|
|
placeholder: v0.1.0 / commit SHA
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: rust
|
|
attributes:
|
|
label: Rust version
|
|
placeholder: rustc 1.xx.x
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: os
|
|
attributes:
|
|
label: Operating system
|
|
placeholder: Ubuntu 24.04 / macOS 15 / Windows 11
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: regression
|
|
attributes:
|
|
label: Regression?
|
|
options:
|
|
- Unknown
|
|
- Yes, it worked before
|
|
- No, first-time setup
|
|
validations:
|
|
required: true
|
|
|
|
- type: checkboxes
|
|
id: checks
|
|
attributes:
|
|
label: Pre-flight checks
|
|
options:
|
|
- label: I reproduced this on the latest main branch or latest release.
|
|
required: true
|
|
- label: I redacted secrets/tokens from logs.
|
|
required: true
|
|
- label: I removed personal identifiers and replaced identity-specific data with neutral placeholders.
|
|
required: true
|