From 5d9c87039f461ac61861684bb164446021b7dab4 Mon Sep 17 00:00:00 2001 From: Veeranjaneyulu Chunduri Date: Tue, 21 Jul 2026 17:07:16 -0700 Subject: [PATCH] Add bug report and feature request templates --- .github/ISSUE_TEMPLATE/bug_report.yml | 65 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 42 ++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..f68095f32 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,65 @@ +name: Antigravity CLI - Bug Template +description: File a bug report for the Antigravity CLI +title: "[Bug]: " +labels: ["bug"] +assignees: [] +body: + - type: markdown + attributes: + value: | + > [!IMPORTANT] + > Thanks for taking the time to fill out this bug report! + > + > Please search **[existing issues](https://github.com/google-antigravity/antigravity-cli/issues)** to see if an issue already exists for the bug you encountered + - type: input + id: cli-version + attributes: + label: Antigravity CLI Version + description: Run `agy --version` or `antigravity --version` and paste the output + placeholder: e.g., 1.1.5 + validations: + required: true + - type: textarea + id: environment + attributes: + label: Environment Context + value: | + - **OS:** + - **Shell:** + - **Terminal Emulator:** + - **Runtime Version:** + - **Hardware Details:** + validations: + required: true + - type: textarea + id: reproduction + attributes: + label: Steps to Reproduce + description: Explain the steps required to replicate the problem + value: | + 1. Go to '...' + 2. Run command '...' + 3. See error '...' + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected Behavior + description: A clear and concise description of what you expected to happen + validations: + required: true + - type: textarea + id: actual + attributes: + label: Actual Behavior / Error Screenshots + description: What actually happened? (Include screenshots, CLI exit code or terminal output) + validations: + required: true + - type: textarea + id: logs + attributes: + label: Logs & Configurations + description: Note that this output may contain your email address. Please remove them before submitting + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..a80d2b0f3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,42 @@ +name: Antigravity CLI - Feature Request +description: Propose a new feature or improvement for Antigravity CLI +title: "[Feature Request]: " +labels: ["type: feature request"] +assignees: [] +body: + - type: markdown + attributes: + value: | + > [!IMPORTANT] + > Thanks for taking the time to fill out this bug report! + > + > Please search **[existing issues](https://github.com/google-antigravity/antigravity-cli/issues)** to see if a similar feature has been requested + - type: textarea + id: pitch + attributes: + label: Is your feature request related to a specific problem? + description: A clear and concise description of what the problem is + placeholder: Describe the problem or limitation... + validations: + required: false + - type: textarea + id: solution + attributes: + label: Describe the solution you'd like + description: A clear and concise description of what you want to happen + placeholder: Describe your proposed feature or improvement... + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered + placeholder: What other solutions did you think of? + validations: + required: false + - type: textarea + id: additional-context + attributes: + label: Additional context + description: Add any other context, CLI output examples, screenshots about the feature request here