# Fix

> Fix issues from code review. Use when the user invokes /fix or asks to address review findings for an issue. Use when this capability is needed.

- Skill: `tomevault-io/fix-3` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/fix-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/fix-3/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/fix-3

---


# Fix Command

## Behavior Profile

Use the `developer` skill as the behavior profile for this command.
Treat its rules as mandatory.

Follow `CLAUDE.md`, `conventions.md`, and `ARCHITECTURE.md`.

## Task

Fix issues identified in code review.

## Interaction Contract

1. Fetch review findings.
2. Produce a fix plan.
3. Wait for explicit approval.
4. Implement fixes, commit, push.

## Algorithm

### Step 1: Get findings

- If ID missing → ask "Which issue to fix?"
- Normalize ID: add `DCATgBot-` prefix if missing
- Use `beads` to get issue details + comments
- If no review comments: report "No review findings. Run /review first."
- Parse findings (Critical, Should Fix, Consider)

### Step 2: Create fix plan

Show plan only; do not implement yet.

```
## Fix Plan
<plan>
---
Confirm? (ok / changes)
```

### Step 3: On approval

- Implement fixes per plan
- Commit: `fix(<scope>): address review findings`
- Push to remote

### Step 4: Report

```
Fixes complete for <id>.
Fixed: [C1], [S1]...
Next: /review <id>
```

## Plan Format

```markdown
## Fix Plan

**Issue:** <id> - <title>
**Branch:** <current>

**Findings to fix:**
- [C1] Title - approach
- [S1] Title - approach

**Deferred:**
- [N1] Title - reason
```

## Severity Handling

| Severity | Default |
|----------|---------|
| Critical | Always fix |
| Should Fix | Fix by default |
| Consider | Suggest defer |

## Important

- Never fix without plan approval
- Fix documented issues only
- Re-review required

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/arttttt) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-14 -->

