mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-25 03:55:27 +02:00
* chore: add issue templates and improve PR template Add GitHub issue templates (bug report, feature request) using YAML forms, referencing hermes-agent's template structure. Update the PR template with clearer sections for changes made, related issues, and a more comprehensive checklist. * chore: add AI disclosure section to PR template Since most PRs are now authored or co-authored by AI coding tools, add a dedicated AI Disclosure section to the PR template. Includes authorship type, tool used, and a human review checklist to ensure AI-generated code is properly reviewed before merge. * chore: simplify AI disclosure to focus on prompt sharing Remove the review-status checklist — it was too heavy and users won't actually do it. Instead focus on what's useful: which AI tool was used and what prompt/approach produced the code, so the team can learn from each other's AI workflows. * chore: simplify issue templates to lower submission friction Bug report: just what happened + steps to reproduce (required), plus an optional context field for logs/env. Feature request: just what you want and why (required), plus an optional proposed solution. Removed all dropdowns, environment fields, checkboxes, and other fields that discourage users from filing issues. * chore: add screenshots section to issue templates Add optional screenshots field to both bug report and feature request templates so users can attach images for richer context.
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: "Bug Report"
|
|
description: Report a bug — something that's broken, crashes, or behaves incorrectly.
|
|
title: "[Bug]: "
|
|
labels: ["bug"]
|
|
body:
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: What happened?
|
|
description: Describe the bug and what you expected instead. Screenshots, error messages, or screen recordings are welcome.
|
|
placeholder: |
|
|
When I do X, Y happens. I expected Z instead.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Steps to reproduce
|
|
description: How can we trigger this bug?
|
|
placeholder: |
|
|
1. Go to '...'
|
|
2. Click on '...'
|
|
3. See error
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: screenshots
|
|
attributes:
|
|
label: Screenshots (optional)
|
|
description: If applicable, add screenshots or screen recordings to help explain the problem.
|
|
|
|
- type: textarea
|
|
id: context
|
|
attributes:
|
|
label: Additional context (optional)
|
|
description: Environment info, logs, or anything else that might help.
|
|
render: shell
|