mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-08-16 21:24:09 +00:00
Structured issue templates that turn the README's 'Open an issue' entry into guided forms with required fields for vendor, location, and details. Files: - .github/ISSUE_TEMPLATE/bug_report.yml (Bug Report) - .github/ISSUE_TEMPLATE/request.yml (Feature Request) - .github/ISSUE_TEMPLATE/config.yml (Docs / Typo / Inquiry) Validation: PyYAML loads each file; body is a non-empty list of valid form element types (input, textarea, dropdown); top-level keys (name, description, body) are present in each template. Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
866 B
YAML
31 lines
866 B
YAML
name: Feature Request
|
|
description: Request a new AI tool, vendor, or system prompt to be added to the collection.
|
|
title: "[Request] "
|
|
labels:
|
|
- enhancement
|
|
body:
|
|
- type: input
|
|
id: vendor
|
|
attributes:
|
|
label: Vendor / Tool
|
|
description: Name of the AI tool or vendor you want added.
|
|
placeholder: "e.g., Augment Code"
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: source
|
|
attributes:
|
|
label: Source URL
|
|
description: Link to the official docs, repo, or other verifiable source.
|
|
placeholder: "https://..."
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: rationale
|
|
attributes:
|
|
label: Why should this be added?
|
|
description: Brief explanation of the tool's relevance and what prompts/entries are available.
|
|
placeholder: "Explain..."
|
|
validations:
|
|
required: true
|