@tarquinen/opencode-dcp 0.4.0 → 0.4.1

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 (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,7 +13,7 @@ Add to your OpenCode config:
13
13
  ```jsonc
14
14
  // opencode.jsonc
15
15
  {
16
- "plugin": ["@tarquinen/opencode-dcp@0.4.0"]
16
+ "plugin": ["@tarquinen/opencode-dcp@0.4.1"]
17
17
  }
18
18
  ```
19
19
 
@@ -57,6 +57,7 @@ DCP uses its own config file (`~/.config/opencode/dcp.jsonc` or `.opencode/dcp.j
57
57
  | `debug` | `false` | Log to `~/.config/opencode/logs/dcp/` |
58
58
  | `model` | (session) | Model for analysis (e.g., `"anthropic/claude-haiku-4-5"`) |
59
59
  | `showModelErrorToasts` | `true` | Show notifications on model fallback |
60
+ | `showUpdateToasts` | `true` | Show notifications when a new version is available |
60
61
  | `strictModelSelection` | `false` | Only run AI analysis with session or configured model (disables fallback models) |
61
62
  | `pruning_summary` | `"detailed"` | `"off"`, `"minimal"`, or `"detailed"` |
62
63
  | `nudge_freq` | `10` | How often to remind AI to prune (lower = more frequent) |
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@tarquinen/opencode-dcp",
4
- "version": "0.4.0",
4
+ "version": "0.4.1",
5
5
  "type": "module",
6
6
  "description": "OpenCode plugin that optimizes token usage by pruning obsolete tool outputs from conversation context",
7
7
  "main": "./dist/index.js",