diffowl 0.3.1 → 0.3.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/cli.js +3306 -1098
- package/dist/cli.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -227,7 +227,7 @@ View or interactively change the active AI model.
|
|
|
227
227
|
diffowl model
|
|
228
228
|
|
|
229
229
|
# Manually set a model
|
|
230
|
-
diffowl model opencode
|
|
230
|
+
diffowl model opencode/big-pickle
|
|
231
231
|
```
|
|
232
232
|
|
|
233
233
|
### `diffowl chat [report]`
|
|
@@ -283,7 +283,7 @@ diffowl server stop
|
|
|
283
283
|
|
|
284
284
|
### `diffowl findings [list] | show | dismiss | defer | fix | reopen`
|
|
285
285
|
|
|
286
|
-
Inspect and manage the durable findings backlog stored in `.diffowl/state.db`.
|
|
286
|
+
Inspect and manage the durable findings backlog stored in the repo's shared `.diffowl/state.db`.
|
|
287
287
|
|
|
288
288
|
```bash
|
|
289
289
|
# List unresolved findings (open and regressed)
|
|
@@ -315,7 +315,7 @@ Your `.diffowl.yml` configures everything for DiffOwl in your project:
|
|
|
315
315
|
|
|
316
316
|
```yaml
|
|
317
317
|
# Model to use for reviews (provider/model)
|
|
318
|
-
model: opencode
|
|
318
|
+
model: opencode/big-pickle
|
|
319
319
|
|
|
320
320
|
# OpenCode server settings
|
|
321
321
|
server:
|
|
@@ -373,7 +373,7 @@ rules:
|
|
|
373
373
|
|
|
374
374
|
## Review Files
|
|
375
375
|
|
|
376
|
-
Each completed review starts with a timestamped report and an ephemeral `latest.md` copy. The optional resolution skill moves fully handled timestamped reports into the resolved archive:
|
|
376
|
+
Each completed review starts with a timestamped report and an ephemeral `latest.md` copy. Durable state and reports are anchored to the repository's primary checkout, so linked Git worktrees share one backlog. Checkout-scoped runtime files such as hook status, hook logs, and `server.pid` stay in that checkout's local `.diffowl/`. The optional resolution skill moves fully handled timestamped reports into the resolved archive:
|
|
377
377
|
|
|
378
378
|
```text
|
|
379
379
|
.diffowl/state.db # Authoritative review and finding state (0.3+)
|