@davesheffer/hunch 0.15.2 β†’ 0.15.3

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,25 @@
1
1
  # 🧠 Hunch β€” Engineering Memory OS
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@davesheffer/hunch?color=2742ff&label=npm)](https://www.npmjs.com/package/@davesheffer/hunch)
4
+ [![npm downloads](https://img.shields.io/npm/dw/@davesheffer/hunch?color=2742ff)](https://www.npmjs.com/package/@davesheffer/hunch)
5
+ [![license](https://img.shields.io/npm/l/@davesheffer/hunch?color=2742ff)](LICENSE)
6
+ [![node](https://img.shields.io/badge/node-%E2%89%A520-2742ff)](https://nodejs.org)
7
+ [![MCP](https://img.shields.io/badge/MCP-native-2742ff)](https://modelcontextprotocol.io)
8
+
3
9
  > Git stores *what* the code is. **Hunch** stores ***why*** it is that way β€” a persistent,
4
10
  > git-native reasoning graph over your codebase, surfaced to Claude Code at reasoning time
5
11
  > so the AI stops re-deriving understanding and stops undoing intentional design.
6
12
 
13
+ ### ⚑ 60-second start
14
+
15
+ ```bash
16
+ npm i -g @davesheffer/hunch
17
+ cd your-repo && hunch init && hunch backfill --since 90d
18
+ hunch why src/some/file.ts # …or just ask Claude Code: "why is X built this way?"
19
+ ```
20
+
21
+ <sub>Works with **Claude Code, Cursor, Copilot & Windsurf** from one shared graph. Full walkthrough in [Getting started](#getting-started).</sub>
22
+
7
23
  ## The problem
8
24
 
9
25
  Every AI coding session starts from zero. The model re-reads your code, re-guesses the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@davesheffer/hunch",
3
- "version": "0.15.2",
3
+ "version": "0.15.3",
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.",