@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 +1 -1
- package/src/commands/fix.js +2 -1
package/package.json
CHANGED
package/src/commands/fix.js
CHANGED
|
@@ -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:
|
|
217
|
+
model: FAST_MODEL,
|
|
217
218
|
maxTurns: 30,
|
|
218
219
|
allowedTools: ["Read", "Glob", "Write", "Edit"],
|
|
219
220
|
settingSources: ["project"],
|