Skip to content
Merged
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
73 changes: 73 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@

---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

# Bug Report

**Describe the bug**
<!-- A clear and concise description of the issue. -->

---

## To Reproduce
<!-- Provide the YAML configuration and the exact CLI command that reproduces the issue. -->

### YAML configuration
<!-- Paste the YAML file or the smallest excerpt that reproduces the issue.
Remove unrelated fields to make it minimal. -->
```yaml
# Paste the YAML snippet here
```

### CLI command used
<!-- Write the exact command used, for example: -->
```bash
# Paste the CLI command here
```

### Actual output
<!-- Paste the output, logs, or error messages here -->
```bash
# Paste the output, logs, or error messages here
```

### Expected output
<!-- Describe what you expected to see instead -->

---

## Environment and Versions

- Operating System:
- CodeEntropy Version:
- Python Version:
- Package list:
- If using conda, run: `conda list > packages.txt` and paste the contents here.

``` bash
# Paste packages.txt here
```

- If using venv/pip, run: `pip list > packages.txt` and paste the contents here.

``` bash
# Paste packages.txt here
```

---

## Screenshots or Logs

Attach any relevant screenshots, logs, or stack traces.

---

## Additional Context

Include anything else that might help reproduce or understand the bug, such as changes from a previously working version.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''
---

# Feature Request

## Problem / Motivation
<!-- Describe the problem you want to solve or the motivation for this feature. -->

## Proposed Solution
<!-- Describe the feature you would like to see implemented. Include examples if applicable. -->

## Alternatives Considered
- <!-- Alternative 1 -->
- <!-- Alternative 2 -->

## Expected Impact
<!-- How this feature would affect the codebase or workflow -->
- <!-- Impact 1 -->
- <!-- Impact 2 -->

## Additional Context
<!-- Add any other context, screenshots, or references for the feature request here. -->
- <!-- Further context -->