@mechanai/deepreview 2.8.0 → 2.9.0

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.
@@ -29,8 +29,14 @@ For each finding in all reviews:
29
29
  3. Determine if the claimed issue actually exists in the code
30
30
  4. If the finding makes claims about external tool behavior (CLI flags, API parameters, library methods), **verify those claims**. Run `--help`, check man pages, or use WebFetch to check documentation. If the claimed behavior doesn't exist, classify as disproved.
31
31
  5. Check if the issue is already handled elsewhere (error handling, validation, guards)
32
- 6. **Assess severity proportionality.** If the finding's severity is more than one level above what the evidence supports (e.g., a stale comment rated "critical" when it's clearly a "suggestion"), downgrade it or classify as trivial.
33
- 7. Classify the finding:
32
+ 6. **Construct a counter-argument.** Before confirming, write one sentence explaining why this finding might be wrong, irrelevant, or not worth fixing. Examples:
33
+ - "This is pre-1.0 and breaking changes are expected"
34
+ - "This path is only reachable in tests"
35
+ - "The existing error handling at line N already covers this"
36
+ - "The severity assumes external input, but this is a local tool"
37
+ If the counter-argument is stronger than the finding, classify as trivial or disproved.
38
+ 7. **Assess severity proportionality.** If the finding's severity is more than one level above what the evidence supports (e.g., a stale comment rated "critical" when it's clearly a "suggestion"), downgrade it or classify as trivial.
39
+ 8. Classify the finding:
34
40
  - **confirmed** (high confidence): you verified the issue exists in the code and the severity is proportionate
35
41
  - **plausible** (medium confidence): the issue might exist but you cannot fully verify
36
42
  - **trivial**: the issue technically exists but is not worth fixing — severity is inflated, the fix is cosmetic, or the finding is a style preference rather than an objective defect
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mechanai/deepreview",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "description": "Multi-agent parallel code/spec review for OpenCode",
5
5
  "license": "MIT",
6
6
  "repository": {