bug_report.yml•3.7 kB
name: 🐛 Bug Report
description: Report a bug in Continuo Memory System
labels: ["bug", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for reporting a bug! Please provide as much detail as possible.
- type: textarea
id: description
attributes:
label: Bug Description
description: Clear and concise description of the bug
placeholder: What happened?
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Steps to Reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Configure Qoder with...
2. Run memory server with...
3. Execute search_memory...
4. See error
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What did you expect to happen?
placeholder: The search should return relevant results...
validations:
required: true
- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened?
placeholder: Instead, it returned an error...
validations:
required: true
- type: dropdown
id: component
attributes:
label: Component
description: Which component is affected?
options:
- MCP Server
- Memory Server
- Hierarchical Compression
- Embeddings (Local)
- Embeddings (OpenAI)
- IDE Integration (Qoder)
- IDE Integration (Cursor)
- Examples/Documentation
- Other
validations:
required: true
- type: input
id: version
attributes:
label: Continuo Version
description: Which version are you using?
placeholder: "v0.1.0 or commit hash"
validations:
required: true
- type: dropdown
id: os
attributes:
label: Operating System
description: What OS are you running?
options:
- macOS
- Linux
- Windows
- Other
validations:
required: true
- type: input
id: python
attributes:
label: Python Version
description: Output of `python --version`
placeholder: "Python 3.11.5"
validations:
required: true
- type: textarea
id: logs
attributes:
label: Error Logs
description: |
Include relevant error logs, stack traces, or terminal output.
Tip: Use ``` code blocks for better formatting
placeholder: |
```
Traceback (most recent call last):
...
```
render: shell
- type: textarea
id: config
attributes:
label: Configuration
description: Relevant configuration (remove sensitive data!)
placeholder: |
Provider: local
DB Path: ~/.qoder/continuo_memory_db
Python: /path/to/venv/bin/python
render: yaml
- type: checkboxes
id: checklist
attributes:
label: Pre-submission Checklist
description: Please verify these before submitting
options:
- label: I've searched existing issues and this is not a duplicate
required: true
- label: I'm using the latest version of Continuo
required: false
- label: I've included error logs and configuration
required: false
- label: I've removed sensitive information (API keys, paths)
required: true
- type: textarea
id: additional
attributes:
label: Additional Context
description: Any other context, screenshots, or information
placeholder: Add screenshots, related issues, workarounds, etc.