diffowl 0.5.1 → 0.5.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 +5 -1
- package/dist/cli.js +2282 -740
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -109,7 +109,9 @@ diffowl review --base --format json
|
|
|
109
109
|
diffowl review --base --fail-on-findings
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
-
|
|
112
|
+
Commit review compares the selected commit with its first parent. For a merge commit, this means the changes the merge introduced to its first-parent branch. It is not the pull-request diff.
|
|
113
|
+
|
|
114
|
+
Branch review uses the merge base through `HEAD`, matching the committed diff in a pull request. Use `--base` for pull-request coverage. Neither mode includes staged or unstaged changes.
|
|
113
115
|
|
|
114
116
|
## Work with findings
|
|
115
117
|
|
|
@@ -217,6 +219,8 @@ diffowl reasoning --reset
|
|
|
217
219
|
|
|
218
220
|
Reasoning names are backend-native identifiers, not a shared DiffOwl scale. A model might advertise `low` and `high`, `thinking`, only one value, or no selectable value. An absent preference means the backend default; DiffOwl never translates one backend's names into another's. Changing a model clears its old reasoning preference so a stale value cannot carry over. Use `diffowl review --reasoning <variant>` for a one-review override.
|
|
219
221
|
|
|
222
|
+
When an explicit `max` selection is paired with a timeout of 300 seconds or less, DiffOwl warns before starting provider work. It does not lower the reasoning effort or extend the deadline automatically. Increase `timeout` in `.diffowl.yml` when a quality-first review should be allowed to run longer.
|
|
223
|
+
|
|
220
224
|
When model metadata rejects a variant, DiffOwl uses the backend default and
|
|
221
225
|
prints the model's advertised choices. If the model advertises no selectable
|
|
222
226
|
variants, the warning says so explicitly.
|