homebridge-rabbitair
Version:
Homebridge plugin for RabbitAir air purifiers
35 lines (23 loc) • 2 kB
Markdown
---
description: Create a bug fix workflow with regression test and minimal documentation.
---
The user input to you can be provided directly by the agent or as a command argument - you **MUST** consider it before proceeding with the prompt (if not empty).
User input:
$ARGUMENTS
The text the user typed after `/bugfix` in the triggering message **is** the bug description. Assume you always have it available in this conversation even if `$ARGUMENTS` appears literally below. Do not ask the user to repeat it unless they provided an empty command.
Given that bug description, do this:
1. Run the script `.specify/scripts/bash/create-bugfix.sh --json "$ARGUMENTS"` from repo root and parse its JSON output for BUG_ID, BRANCH_NAME, and BUG_REPORT_FILE. All file paths must be absolute.
**IMPORTANT** You must only ever run this script once. The JSON is provided in the terminal as output - always refer to it to get the actual content you're looking for.
2. Load `.specify/extensions/workflows/bugfix/bug-report-template.md` to understand required sections.
3. Write the bug report to BUG_REPORT_FILE using the template structure, replacing placeholders with concrete details derived from the bug description (arguments) while preserving section order and headings.
- Extract current behavior, expected behavior, and reproduction steps from description
- Mark severity based on description keywords (crash/data loss = Critical, broken feature = High, etc.)
- Leave root cause analysis empty (to be filled during investigation)
- Leave fix strategy empty (to be filled before implementation)
4. Load `.specify/extensions/workflows/bugfix/tasks-template.md` and create `tasks.md` in the bug directory with concrete task descriptions based on the bug.
5. Report completion with:
- Branch name
- Bug ID
- Bug report file path
- Reminder to investigate and write regression test BEFORE fixing
Note: The script creates and checks out the new branch before writing files.