@forwardimpact/libwiki 0.2.17 → 0.2.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/libwiki",
3
- "version": "0.2.17",
3
+ "version": "0.2.18",
4
4
  "description": "Wiki lifecycle primitives — stable memory for agent teams so coordination persists across sessions.",
5
5
  "keywords": [
6
6
  "wiki",
@@ -15,6 +15,7 @@ import {
15
15
  } from "../weekly-log.js";
16
16
  import { currentDayIso } from "../util/clock.js";
17
17
  import { resolveProjectRoot } from "../util/wiki-dir.js";
18
+ import { FAST_MODEL } from "@forwardimpact/libutil/models";
18
19
 
19
20
  // Pipeline: audit → deterministic rotation (the one fix needing a file seal the
20
21
  // agent can't do) → re-audit → Haiku agent on the prose-judgment residual →
@@ -213,7 +214,7 @@ async function buildFixRunner(ctx, projectRoot, runtime) {
213
214
  cwd: projectRoot,
214
215
  query,
215
216
  output: new Writable({ write: (_c, _e, cb) => cb() }),
216
- model: "claude-haiku-4-5-20251001",
217
+ model: FAST_MODEL,
217
218
  maxTurns: 30,
218
219
  allowedTools: ["Read", "Glob", "Write", "Edit"],
219
220
  settingSources: ["project"],