diff --git a/README.md b/README.md index 3c26ff4..ee60a93 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Add to your OpenCode config: ```jsonc // opencode.jsonc { - "plugin": ["@tarquinen/opencode-dcp@0.4.0"] + "plugin": ["@tarquinen/opencode-dcp@0.4.1"] } ``` @@ -57,6 +57,7 @@ DCP uses its own config file (`~/.config/opencode/dcp.jsonc` or `.opencode/dcp.j | `debug` | `false` | Log to `~/.config/opencode/logs/dcp/` | | `model` | (session) | Model for analysis (e.g., `"anthropic/claude-haiku-4-5"`) | | `showModelErrorToasts` | `true` | Show notifications on model fallback | +| `showUpdateToasts` | `true` | Show notifications when a new version is available | | `strictModelSelection` | `false` | Only run AI analysis with session or configured model (disables fallback models) | | `pruning_summary` | `"detailed"` | `"off"`, `"minimal"`, or `"detailed"` | | `nudge_freq` | `10` | How often to remind AI to prune (lower = more frequent) | diff --git a/package-lock.json b/package-lock.json index 438426e..2abfa14 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@tarquinen/opencode-dcp", - "version": "0.4.0", + "version": "0.4.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@tarquinen/opencode-dcp", - "version": "0.4.0", + "version": "0.4.1", "license": "MIT", "dependencies": { "@ai-sdk/openai-compatible": "^1.0.28", diff --git a/package.json b/package.json index d42db11..54a309c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "@tarquinen/opencode-dcp", - "version": "0.4.0", + "version": "0.4.1", "type": "module", "description": "OpenCode plugin that optimizes token usage by pruning obsolete tool outputs from conversation context", "main": "./dist/index.js",