@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.
- package/README.md +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
# π§ Hunch β Engineering Memory OS
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@davesheffer/hunch)
|
|
4
|
+
[](https://www.npmjs.com/package/@davesheffer/hunch)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
[](https://nodejs.org)
|
|
7
|
+
[](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.
|
|
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.",
|