mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-08-16 13:14:07 +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>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: Bug Report
|
|
description: Report an error in a system prompt, broken link, or incorrect content.
|
|
title: "[Bug] "
|
|
labels:
|
|
- bug
|
|
body:
|
|
- type: input
|
|
id: vendor
|
|
attributes:
|
|
label: Vendor / Tool
|
|
description: Which AI tool or vendor is affected (e.g., Cursor, Claude Code, Windsurf).
|
|
placeholder: "e.g., Cursor"
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: location
|
|
attributes:
|
|
label: File path
|
|
description: Path of the affected file inside this repository, if known.
|
|
placeholder: "e.g., Cursor Prompts/Agent Prompt.txt"
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: summary
|
|
attributes:
|
|
label: What is wrong?
|
|
description: A clear description of the issue and how it should look.
|
|
placeholder: "Describe the problem..."
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: repro
|
|
attributes:
|
|
label: Steps to reproduce / evidence
|
|
description: Reproduction steps, screenshots, or links to upstream sources.
|
|
placeholder: "1. ...\n2. ..."
|
|
validations:
|
|
required: false
|