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
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: Bug report
description: >-
Report a reproducible defect in a PixelTops skill or runtime helper
title: "[Bug]: "
labels:
- bug
body:
- type: input
id: component
attributes:
label: Affected component
description: Name the skill, script, or runtime helper
validations:
required: true
- type: textarea
id: summary
attributes:
label: Summary
description: What happened, and what should have happened instead?
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Reproduction
description: >-
Provide minimal commands, inputs, and image properties needed to
reproduce the defect
validations:
required: true
- type: textarea
id: environment
attributes:
label: Environment
description: >-
Include the OS, Python version, and relevant dependency versions
validations:
required: true
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
blank_issues_enabled: false
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Feature request
description: >-
Suggest a focused improvement to a PixelTops skill or runtime helper
title: "[Feature]: "
labels:
- enhancement
body:
- type: textarea
id: problem
attributes:
label: Problem
description: What image-editing problem should the repository solve?
validations:
required: true
- type: textarea
id: proposal
attributes:
label: Proposal
description: What should the skill or helper do differently?
validations:
required: true
- type: textarea
id: boundaries
attributes:
label: Change boundaries
description: >-
Describe the intended selection, mask, output, and preservation
requirements
validations:
required: true
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Summary

-

## Validation

- [ ] `python -m pip install --disable-pip-version-check -r requirements-dev.txt`
- [ ] `python scripts/validate_repository.py --evidence-file .validation-evidence.jsonl`

## Change boundaries

- [ ] Skill guidance, runtime behavior, and validation remain consistent.
- [ ] Generated validation evidence is not committed.