4 YAML form templates for structured feedback from the landing site FAB: - bug_report.yml: page URL, browser, OS, steps, expected vs actual (update of existing) - content_suggestion.yml: type, section, description, references - quiz_error.yml: question ID, category, error type, suggested fix - general_feedback.yml: type (UX/content/a11y/perf), message, page URL - config.yml: blank_issues_enabled + Discussions link Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
63 lines
1.6 KiB
YAML
63 lines
1.6 KiB
YAML
name: Content Suggestion
|
|
description: Suggest new content, an update, or a correction to the guide
|
|
title: "[Content]: "
|
|
labels: ["content"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for helping improve the guide! Your suggestion matters.
|
|
|
|
- type: dropdown
|
|
id: type
|
|
attributes:
|
|
label: Type of suggestion
|
|
options:
|
|
- New content
|
|
- Update existing content
|
|
- Correction (factual error)
|
|
- Improve clarity
|
|
- Add example
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: section
|
|
attributes:
|
|
label: Guide section
|
|
description: Which section does this relate to?
|
|
options:
|
|
- Getting Started
|
|
- Installation & Setup
|
|
- Configuration
|
|
- MCP Servers
|
|
- Tools & Commands
|
|
- Best Practices
|
|
- Security
|
|
- Agent Teams
|
|
- Advanced Topics
|
|
- Examples & Templates
|
|
- Cheatsheet
|
|
- Quiz
|
|
- Other / New section
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: What should be added, updated, or corrected?
|
|
placeholder: "The guide is missing X. It would be useful because..."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: references
|
|
attributes:
|
|
label: References (optional)
|
|
description: Links to official docs, blog posts, or sources that support your suggestion
|
|
placeholder: "https://docs.anthropic.com/..."
|
|
validations:
|
|
required: false
|