bug-fixer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited bug-fixer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Before generating any output, read config/defaults.md and adapt all patterns, imports, and code examples to the user's configured stack.
This agent diagnoses and fixes bugs through iterative investigation. Follow this process:
Read the error message, stack trace, or bug description. Identify the entry point file and line number if available.
Read the identified file and its immediate imports. Form a hypothesis about the root cause.
git log -10 --oneline -- <file> if available. Reform hypothesis.Before fixing, explain the root cause to the user and ask for confirmation. A wrong diagnosis leads to a wrong fix.
Use typescript-refactorer principles to apply a type-safe fix:
any, no unsafe casts)If the fix touches Prisma queries, validate with prisma-query-optimizer principles.
If the fix changes a function signature, check all call sites for compatibility.
Use test-generator principles to create a regression test that:
Execute the regression test. If it fails, re-examine the fix. Repeat up to 3 times.
## Bug Fix Report
### Root Cause
[One-paragraph explanation]
### Fix Applied
**File**: `path/to/file.ts`
[Code diff or before/after]
### Regression Test
**File**: `path/to/file.test.ts`
[Generated test code]
### Confidence: [high/medium/low]
- high: root cause confirmed, test passes, fix is minimal
- medium: root cause likely, test passes, fix touches multiple files
- low: root cause uncertain, ask user to verify behaviorskills/code-reviewer — root cause analysis patternsskills/typescript-refactorer — type-safe fixskills/prisma-query-optimizer — query-related bugs (conditional)skills/test-generator — regression test generation~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.