error-tracker

Capture and index bug reports with fixes into a local knowledge base.

Updated Apr 27, 2026
One-click install
npx skills add https://github.com/LHKong7/error_track_skill --skill error-tracker-lhkong7
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: error-tracker
Source: https://github.com/LHKong7/error_track_skill/tree/main
Command: npx skills add https://github.com/LHKong7/error_track_skill --skill error-tracker-lhkong7

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Skill captures, indexes, and reuses a knowledge base of bugs and their fixes to prevent repeated debugging.

Core Features & Use Cases

  • Proactively save verified fixes to a local knowledge base so the next similar bug can be resolved faster.
  • Surface matching past errors during new bug reports and triage, reducing duplicate debugging work.
  • Store records locally in .claude/errors/ with an optional global store, and expose a simple index for quick lookup.

Quick Start

Save a verified bug fix to the local knowledge base after completing a fix.

Frequently Asked Questions about error-tracker

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save bug fixes locally to avoid repeating debugging work?

Save bug fixes locally by capturing error reports and verified solutions into a local knowledge base stored under .claude/errors/, allowing you to quickly retrieve past fixes during future triage.

What is local error management and how does deduplication work?

Local error management captures and indexes bug reports using a structured schema with fields like id, timestamp, and error_message. Deduplication prevents repeated debugging by matching new errors against indexed historical records.

Can I use this bug-tracking knowledge base with global storage across multiple projects?

Yes, bug-tracking records default to project-local storage in .claude/errors/ but also support optional global storage, enabling cross-project error history browsing and retrieval.

How do I search past error reports and solutions during bug triage?

Search past error reports during triage by querying the indexed knowledge base, which surfaces matching historical bugs and their verified fixes using a simple tags system and structured record schema.

Does this error-management tool require external dependencies or APIs?

No, this error-management tool has zero dependencies and operates entirely on local storage using JSON records, requiring no external APIs or components to capture and index bug fixes.

What's the best way to organize bug-tracking records for fast retrieval?

Organize bug-tracking records using the enforced schema with fields like id, timestamp, title, error_message, and solution, supplemented by a simple tags system and deduplication indexing for fast lookup.