fix-report
Fix and Report
A high-integrity workflow for fixing bugs, ensuring regression testing, and maintaining a GitHub-synced audit trail.
Quick start
- Triage: Find the bug location and root cause.
- Issue: Create a GitHub issue with
gh issue create. - TDD: Write a failing test, then the fix.
- Log: Run
node fix-report/scripts/log-bug.jsto updatedocs/bugs/bug-log.csv. - Close: Update the GitHub issue with the final report.
Workflows
1. Diagnosis & Issue Creation
- Explore: Use
git logand codebase search to trace the error path. - Isolate: Identify the exact trigger (state, input, or environment).
- GitHub: Create the issue early. See REFERENCE.md for the Initial Triage template.
More from danielvm-git/skills
triage-issue
Triage a bug or issue by exploring the codebase to find root cause, then create a GitHub issue with a TDD-based fix plan. Use when user reports a bug, wants to file an issue, mentions "triage", or wants to investigate and plan a fix for a problem.
12design-an-interface
Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface options, compare module shapes, or mentions "design it twice".
12write-a-skill
Create new agent skills with proper structure, progressive disclosure, and bundled resources. Use when user wants to create, write, or build a new skill.
12setup-pre-commit
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
12tdd
Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.
11to-prd
Turn the current conversation context into a PRD and submit it as a GitHub issue. Use when user wants to create a PRD from the current context.
11