You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix README to accurately document autoUpdate default behavior
The README previously stated autoUpdate was enabled by default and that
DCP 'automatically updates itself'. This was incorrect - autoUpdate
defaults to false. Updated documentation to:
- Clarify that auto-update is opt-in (set autoUpdate: true to enable)
- Change default value in config table from true to false
- Update description text to say 'checks for' instead of 'updates'
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Add to your OpenCode config:
22
22
23
23
The `experimental.primary_tools` setting ensures the `prune` tool is only available to the primary agent (not subagents).
24
24
25
-
DCP automatically updates itself in the background when new versions are available. You'll see a toast notification when an update is downloaded—just restart OpenCode to apply it. To disable auto-updates, set `"autoUpdate": false` in your DCP config.
25
+
DCP automatically checks for new versions in the background. You'll see a toast notification when an update is available. To enable automatic background updates, set `"autoUpdate": true` in your DCP config.
26
26
27
27
Restart OpenCode. The plugin will automatically start optimizing your sessions.
28
28
@@ -63,7 +63,7 @@ DCP uses its own config file (`~/.config/opencode/dcp.jsonc` or `.opencode/dcp.j
63
63
|`model`| (session) | Model for analysis (e.g., `"anthropic/claude-haiku-4-5"`) |
64
64
|`showModelErrorToasts`|`true`| Show notifications on model fallback |
65
65
|`showUpdateToasts`|`true`| Show notifications when a new version is available |
66
-
|`autoUpdate`|`true`| Automatically download new versions (restart to apply) |
66
+
|`autoUpdate`|`false`| Automatically download new versions (restart to apply) |
67
67
|`strictModelSelection`|`false`| Only run AI analysis with session or configured model (disables fallback models) |
68
68
|`pruning_summary`|`"detailed"`|`"off"`, `"minimal"`, or `"detailed"`|
69
69
|`nudge_freq`|`10`| How often to remind AI to prune (lower = more frequent) |
0 commit comments