# Bug Track

> Traquer les régressions avec bisect. Use this skill whenever the user asks about bug track in an open-source maintenance context — including phrasing like "trouver quel commit a cassé", "bisect", "traquer une régression" — even if they don't name the skill directly.

- Skill: `tryboy869/bug-track` (Agent Skill)
- Install (CLI): `npx skillmds@latest add tryboy869/bug-track`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tryboy869/bug-track/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Tryboy869 (https://skillmd.com/u/tryboy869)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tryboy869/bug-track

---


## Quand invoquer ce skill

Traquer les régressions avec bisect.

## L1 — Réflexe de base

`git bisect start`, marquer `good`/`bad`, laisser Git proposer le commit suspect.

## L2 — Pratique professionnelle par défaut

Automatiser avec `git bisect run <script_de_test>` pour isoler une régression sans intervention manuelle.

## L3 — Maîtrise d'architecte

Bisect sur un monorepo avec build partiel (`--first-parent` pour ignorer les merges de features non liées) ; combiner avec `git blame -w -C` pour distinguer refactor et régression réelle.

## Chaînage

Si ce skill révèle un besoin relevant d'un autre pilier, enchaîner automatiquement sur : pr-craft/atomic-commits.

