log_bug
Log a new bug or improvement to a project-specific store, capturing title, severity, location, and the context in which it was found.
Instructions
Log a new bug or improvement into the bug tracking store.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Entry kind ('bug' or 'improvement'). Defaults to 'bug'. | bug |
| tags | No | List of tag strings to categorize the bug. | |
| title | Yes | Short description of the bug. | |
| project | Yes | Name identifying the project these bugs belong to (e.g. the repo name). Required — bugs are isolated per project, so use a consistent name for the same project across calls. | |
| location | No | File location or context reference (e.g. 'src/foo.py:42'). | |
| severity | No | Bug severity level ('minor', 'major', 'blocking'). Defaults to 'minor'. | minor |
| description | No | Detailed explanation or error details. | |
| found_while | No | Context or activity being undertaken when bug was discovered. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| kind | No | bug | |
| tags | No | ||
| title | Yes | ||
| status | No | open | |
| project | Yes | ||
| fixed_at | No | ||
| location | No | ||
| severity | No | minor | |
| created_at | Yes | ||
| resolution | No | ||
| updated_at | Yes | ||
| description | No | ||
| found_while | No |