debug-ledger-mcp 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -150,13 +150,29 @@ Add this to your MCP settings file (Kilo Code / Cursor / Claude Desktop):
|
|
|
150
150
|
Replace `/your/project/path` with your actual project folder path.
|
|
151
151
|
|
|
152
152
|
### Step 2 — Restart Your Editor
|
|
153
|
-
|
|
154
|
-
That's it. `debug_ledger/` folder with 16 example files will be automatically created in your project.
|
|
153
|
+
|
|
155
154
|
|
|
156
155
|
> **Node.js 18+** required.
|
|
157
156
|
|
|
158
157
|

|
|
158
|
+
|
|
159
|
+
That's it. debug_ledger/ folder with 16 example files will be automatically created in your project like below screenshot.
|
|
160
|
+
|
|
161
|
+

|
|
159
162
|
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
## Tools
|
|
166
|
+
|
|
167
|
+
`debug-ledger` exposes **4 MCP tools** that allow AI systems to access debugging history stored in the debug ledger.
|
|
168
|
+
|
|
169
|
+
| Tool | Purpose | Example Return |
|
|
170
|
+
|-----|-----|-----|
|
|
171
|
+
| `list_ledger_files()` | Lists all available debug ledger files in the repository | `["incidents.md", "rejected_fixes.md", "regressions.md", "constraints.md"]` |
|
|
172
|
+
| `read_ledger_file(file_name)` | Reads the full contents of a specific ledger file | `INCIDENT-014: Login timeout under load` |
|
|
173
|
+
| `select_context(query, level)` | Finds relevant ledger entries related to a debugging query | `INCIDENT-014 / rejected fix: increase timeout` |
|
|
174
|
+
| `assemble_debug_context(selected_context)` | Combines selected ledger entries into structured debugging context for AI | `Incident + rejected fix + constraints summary` |
|
|
175
|
+
|
|
160
176
|
---
|
|
161
177
|
|
|
162
178
|
## Try It
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "debug-ledger-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Read-only debug memory for AI — a repo-local ledger of past bugs, rejected fixes, and historical constraints so AI debugs with context, not amnesia.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|