mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-31 03:12:16 +00:00
- Add root CONTRIBUTING.md with incentives (paper acknowledgment, Mac Mini giveaway), contribution tiers, PR process, and maintainership path - Add CODE_OF_CONDUCT.md (Contributor Covenant v2.1) - Add .pre-commit-config.yaml with ruff lint + format hooks - Add GitHub issue templates (bug report, feature request, new eval dataset) - Add PR template with test/lint/format checklist - Rewrite docs roadmap with GitHub Projects structure, current focus areas, and collapsible version history - Remove Development section from MkDocs nav; replace with top-level Roadmap tab - Delete changelog, extending docs (consolidated into CONTRIBUTING.md) - Delete root ROADMAP.md (content now lives in docs site) - Add pre-commit to dev extras in pyproject.toml - Add Roadmap link to README Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
96 lines
2.1 KiB
YAML
96 lines
2.1 KiB
YAML
name: Bug Report
|
|
description: Report a bug or unexpected behavior
|
|
labels: ["type:bug"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thank you for reporting a bug! Please fill out the information below to help us investigate.
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: A clear description of what the bug is.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: steps
|
|
attributes:
|
|
label: Steps to Reproduce
|
|
description: Steps to reproduce the behavior.
|
|
placeholder: |
|
|
1. Run `jarvis ask "..."`
|
|
2. See error...
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected Behavior
|
|
description: What you expected to happen.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: actual
|
|
attributes:
|
|
label: Actual Behavior
|
|
description: What actually happened.
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: Operating System
|
|
options:
|
|
- Linux
|
|
- macOS
|
|
- Windows
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: python
|
|
attributes:
|
|
label: Python Version
|
|
options:
|
|
- "3.10"
|
|
- "3.11"
|
|
- "3.12"
|
|
- "3.13"
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: hardware
|
|
attributes:
|
|
label: Hardware
|
|
options:
|
|
- NVIDIA GPU
|
|
- AMD GPU
|
|
- Apple Silicon
|
|
- CPU only
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: engine
|
|
attributes:
|
|
label: Engine
|
|
description: Which inference engine are you using?
|
|
options:
|
|
- Ollama
|
|
- vLLM
|
|
- llama.cpp
|
|
- SGLang
|
|
- MLX
|
|
- Cloud (OpenAI/Anthropic/Google)
|
|
- LiteLLM
|
|
- Other
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Logs / Traceback
|
|
description: Paste any relevant logs or traceback here.
|
|
render: shell
|
|
validations:
|
|
required: false
|