@davesheffer/hunch 0.26.0 → 0.26.1
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.
|
@@ -30,8 +30,9 @@ export function renderHunchSection(store) {
|
|
|
30
30
|
lines.push("- `hunch_why(target)` — why a file/symbol is shaped this way (decisions, bugs, constraints).");
|
|
31
31
|
lines.push("- `hunch_check_constraints(scope)` — invariants you must not break. **Always run before editing.**");
|
|
32
32
|
lines.push("- `hunch_get_dependents(symbol)` — blast radius before a change.");
|
|
33
|
-
lines.push("- `hunch_bug_lineage(
|
|
34
|
-
lines.push("- `hunch_query(
|
|
33
|
+
lines.push("- `hunch_bug_lineage(symptom_or_symbol)` — has this bug happened before? what was the root cause?");
|
|
34
|
+
lines.push("- `hunch_query(query)` — free-text search across all of Hunch.");
|
|
35
|
+
lines.push("- `hunch_runbook(task)` — the proven steps for a recurring task (e.g. \"add an MCP tool\", \"cut a release\").");
|
|
35
36
|
lines.push("- `hunch_record_decision(...)` — write back a decision after a non-trivial choice.");
|
|
36
37
|
if (constraints.length) {
|
|
37
38
|
lines.push("");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davesheffer/hunch",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"author": "Dave Sheffer <dave.sheffer1@gmail.com>",
|
|
6
6
|
"description": "Hunch — an Engineering Memory OS: a persistent, git-native reasoning graph over a codebase, exposed to Claude Code via MCP.",
|