fix-suggester
Installation
SKILL.md
Fix Suggester
When to Use
- A test or runtime error is reported and you need a safe, auditable fix plan.
Rules
- Prefer the smallest atomic change that fixes the problem.
- Include: rationale, exact patch plan (files + hunks), verification commands, and a one-line rollback.
- Highlight security/auth or data-migration risks explicitly.
Output
- Diagnosis: concise bullets (root cause + confidence).
- Fix plan: files + short hunk descriptions.
- Verify: specific commands and expected outputs.
- Rollback: single command/step.
Examples
- "Failing test X shows nil pointer in Y" - propose fix, tests to run, rollback.
- "Login returns 500 instead of 401" - trace handler logic, propose fix.
Related Skills
safe-edit-simulator,patch-applier,test-runner
Related skills
More from pilinux/gorest
file-reader
Precisely read source files or snippets and return concise, citation-backed facts needed for decisions or edits.
26code-navigation
Rapid, focused navigation to locate definitions/usages and map the impact of proposed changes.
7build-run
Build and run the project locally to reproduce compile/runtime issues in a safe, non-production way.
7logs-repro-harness
Reduce flaky or environment-dependent failures to a minimal, reproducible script and capture the exact logs and error lines.
7ci-orchestrator
Run a CI-like pipeline locally (format, lint, vet, static-analysis, tests) and summarize per-step results with remediation guidance.
6config-loader-helper
Diagnose configuration-related failures, enumerate required env vars, and guide safe local test setup (no secrets).
6