diffowl 0.4.0 → 0.5.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.
Files changed (4) hide show
  1. package/README.md +35 -20
  2. package/dist/cli.js +11149 -5278
  3. package/dist/cli.js.map +1 -1
  4. package/package.json +14 -5
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "diffowl",
3
- "version": "0.4.0",
4
- "description": "Local AI code review agent powered by OpenCode",
3
+ "version": "0.5.0",
4
+ "description": "Local AI code review agent for OpenCode and Codex",
5
5
  "keywords": [
6
6
  "ai",
7
7
  "code-review",
8
+ "codex",
8
9
  "git",
9
10
  "opencode",
10
11
  "pre-commit"
@@ -35,7 +36,14 @@
35
36
  "test": "vitest run",
36
37
  "pretypecheck": "pnpm run check:runtime",
37
38
  "typecheck": "node scripts/typecheck.mjs --noEmit",
38
- "lint": "oxlint . && pnpm run typecheck",
39
+ "build:anti-slop": "tsup --entry.plugin tools/oxlint/anti-slop/index.ts --format esm --target node22 --external @oxlint/plugins --out-dir tools/oxlint/anti-slop --no-config --silent",
40
+ "check:anti-slop": "pnpm run build:anti-slop && git diff --exit-code HEAD -- tools/oxlint/anti-slop/plugin.js",
41
+ "lint": "pnpm run check:anti-slop && oxlint . --max-warnings 0 && pnpm run typecheck",
42
+ "test:codex": "vitest run src/codex",
43
+ "spike:codex:test": "vitest run src/codex src/experiments/codex-app-server",
44
+ "spike:codex:protocol-live": "vitest run src/codex/protocol-evidence.test.ts",
45
+ "spike:codex:live": "vitest run src/experiments/codex-app-server/live.integration.test.ts",
46
+ "spike:codex:matched": "vitest run src/experiments/codex-app-server/matched.integration.test.ts",
39
47
  "format": "oxfmt --write .",
40
48
  "format:check": "oxfmt --check .",
41
49
  "eval": "pnpm run build && node dist/cli.js eval",
@@ -48,16 +56,17 @@
48
56
  "execa": "^9.6.1",
49
57
  "ora": "^9.4.0",
50
58
  "picomatch": "^4.0.4",
59
+ "typescript": "^6.0.3",
51
60
  "yaml": "^2.9.0",
52
61
  "zod": "^4.4.3"
53
62
  },
54
63
  "devDependencies": {
64
+ "@oxlint/plugins": "1.79.0",
55
65
  "@types/node": "^25.9.1",
56
66
  "@types/picomatch": "^4.0.3",
57
67
  "oxfmt": "^0.52.0",
58
- "oxlint": "^1.67.0",
68
+ "oxlint": "^1.79.0",
59
69
  "tsup": "^8.5.1",
60
- "typescript": "^6.0.3",
61
70
  "vitest": "^4.1.7"
62
71
  },
63
72
  "engines": {