@davesheffer/hunch 1.23.1 → 1.23.2
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 +4 -4
- package/dist/synthesis/provider.js +1 -1
- package/package.json +3 -2
- package/server.json +3 -3
package/README.md
CHANGED
|
@@ -181,7 +181,7 @@ does not host that repository. Give teammates and CI normal Git access, keep cre
|
|
|
181
181
|
the Git credential helper, and have one maintainer connect it:
|
|
182
182
|
|
|
183
183
|
```bash
|
|
184
|
-
npm i -g @davesheffer/hunch@1.23.
|
|
184
|
+
npm i -g @davesheffer/hunch@1.23.2
|
|
185
185
|
hunch shared --repo git@github.com:acme/project-hunch-memory.git
|
|
186
186
|
git add .gitignore .hunch/team.json
|
|
187
187
|
git commit -m "chore: connect shared Hunch memory"
|
|
@@ -191,7 +191,7 @@ git push
|
|
|
191
191
|
Teammates then install the same version and run:
|
|
192
192
|
|
|
193
193
|
```bash
|
|
194
|
-
npm i -g @davesheffer/hunch@1.23.
|
|
194
|
+
npm i -g @davesheffer/hunch@1.23.2
|
|
195
195
|
git pull
|
|
196
196
|
hunch init
|
|
197
197
|
hunch doctor
|
|
@@ -223,8 +223,8 @@ Use `hunch firmness off` to pause hook enforcement without deleting history. Use
|
|
|
223
223
|
|
|
224
224
|
## Learn more
|
|
225
225
|
|
|
226
|
-
- [Full documentation](https://
|
|
227
|
-
- [Copy-paste cookbook](https://
|
|
226
|
+
- [Full documentation](https://www.hunchmemory.com/docs)
|
|
227
|
+
- [Copy-paste cookbook](https://www.hunchmemory.com/cookbook)
|
|
228
228
|
- [Project DNA](docs/project-dna.md)
|
|
229
229
|
- [Native change proof](docs/change-proof.md)
|
|
230
230
|
- [Engineering Landscape Graph](docs/engineering-landscape.md)
|
|
@@ -596,7 +596,7 @@ export async function probeOllamaNumCtx(baseUrl, model) {
|
|
|
596
596
|
return null;
|
|
597
597
|
if (/^num_ctx\s+\d+/m.test(body.parameters))
|
|
598
598
|
return null; // already configured — nothing to warn about
|
|
599
|
-
return "⚠ This Ollama model does not pin num_ctx; its effective context depends on server/VRAM defaults. For stable large-diff synthesis, see https://
|
|
599
|
+
return "⚠ This Ollama model does not pin num_ctx; its effective context depends on server/VRAM defaults. For stable large-diff synthesis, see https://www.hunchmemory.com/cookbook and pin num_ctx via a custom Modelfile.";
|
|
600
600
|
}
|
|
601
601
|
catch {
|
|
602
602
|
return null; // not Ollama, unreachable, or an unexpected response shape — advisory only, never throw
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davesheffer/hunch",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.2",
|
|
4
4
|
"mcpName": "io.github.davesheffer/hunch",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Dave Sheffer <dave.sheffer1@gmail.com>",
|
|
7
7
|
"description": "Engineering memory and a deterministic Change Gate for AI-assisted codebases: decisions, rejected approaches, constraints, and bug lineage become portable context and opt-in enforcement for every MCP assistant.",
|
|
8
|
-
"homepage": "https://
|
|
8
|
+
"homepage": "https://www.hunchmemory.com",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/davesheffer/hunch.git"
|
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
"rehearse:constitution": "npm run build && node tooling/constitution-clean-rehearsal.mjs",
|
|
84
84
|
"gate:release": "node tooling/release-gate.mjs",
|
|
85
85
|
"site:proof": "npm run build && node tooling/generate-public-proof.mjs",
|
|
86
|
+
"site:sitemap": "node tooling/generate-sitemap.mjs",
|
|
86
87
|
"bench:md1": "node tooling/md1-benchmark.mjs",
|
|
87
88
|
"research:competitors": "node tooling/competitive-watch.mjs",
|
|
88
89
|
"outreach": "node tooling/outreach-pipeline.mjs",
|
package/server.json
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"url": "https://github.com/davesheffer/hunch",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"websiteUrl": "https://
|
|
10
|
-
"version": "1.23.
|
|
9
|
+
"websiteUrl": "https://www.hunchmemory.com",
|
|
10
|
+
"version": "1.23.2",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
15
|
"identifier": "@davesheffer/hunch",
|
|
16
|
-
"version": "1.23.
|
|
16
|
+
"version": "1.23.2",
|
|
17
17
|
"runtimeHint": "npx",
|
|
18
18
|
"packageArguments": [
|
|
19
19
|
{
|