feat: Add custom URL support for the /bug command (#1017)

This commit is contained in:
Allen Hutchison
2025-06-14 00:00:24 -07:00
committed by GitHub
parent d5c6bb9740
commit 643bdf31d5
6 changed files with 79 additions and 7 deletions

View File

@@ -44,6 +44,18 @@ When you create a `.gemini/settings.json` file for project-specific settings, or
- **Default:** `GEMINI.md`
- **Example:** `"contextFileName": "AGENTS.md"`
- **`bugCommand`** (object, optional):
- **Description:** Overrides the default URL for the `/bug` command.
- **Properties:**
- **`urlTemplate`** (string, required): A URL that can contain `{title}` and `{body}` placeholders.
- **Example:**
```json
"bugCommand": {
"urlTemplate": "https://bug.example.com/new?title={title}&body={body}"
}
```
- **`fileFiltering`** (object, optional):
- **Description:** Controls git-aware file filtering behavior for @ commands and file discovery tools.