mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
f539a44cfd
* docs: add issue/PR templates and contributing guide - Add GitHub Issue forms: bug report, feature request, new site adapter - Add PR template with CI-aligned checklist (typecheck, test, validate) - Add CONTRIBUTING.md with adapter development workflow and testing guide * docs: simplify adapter request and fix contributor example * docs: trim contribution and issue templates --------- Co-authored-by: jackwener <jakevingoo@gmail.com>
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: "✨ Feature Request"
|
|
description: Suggest a new feature or improvement
|
|
title: "[Feature]: "
|
|
labels: ["enhancement"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Have an idea to make OpenCLI better? We'd love to hear it!
|
|
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Feature Description
|
|
description: A clear and concise description of the feature you'd like.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: use-case
|
|
attributes:
|
|
label: Use Case
|
|
description: What problem does this solve? Who benefits from this feature?
|
|
placeholder: "As a user, I want to ... so that ..."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: proposed-solution
|
|
attributes:
|
|
label: Proposed Solution
|
|
description: If you have a specific implementation in mind, describe it here.
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
id: alternatives
|
|
attributes:
|
|
label: Alternatives Considered
|
|
description: Any alternative approaches you've thought about?
|
|
validations:
|
|
required: false
|