
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
opencode-dcp-aggressive
Advanced tools
OpenCode plugin that optimizes token usage by pruning obsolete tool outputs - Aggressive fork with pruneThinking and placeholderCompression strategies
Automatically reduces token usage in OpenCode by removing obsolete tools from conversation history.
⚡ This is an aggressive fork with more aggressive default settings and two new pruning strategies: Prune Thinking and Placeholder Compression.

Add to your OpenCode config:
// opencode.jsonc
{
"plugin": ["@tarquinen/opencode-dcp@latest"],
}
Using @latest ensures you always get the newest version automatically when OpenCode starts.
Restart OpenCode. The plugin will automatically start optimizing your sessions.
DCP uses multiple tools and strategies to reduce context size:
Discard — Exposes a discard tool that the AI can call to remove completed or noisy tool content from context.
Extract — Exposes an extract tool that the AI can call to distill valuable context into concise summaries before removing the tool content.
Deduplication — Identifies repeated tool calls (e.g., reading the same file multiple times) and keeps only the most recent output. Runs automatically on every request with zero LLM cost.
Supersede Writes — Prunes write tool inputs for files that have subsequently been read. When a file is written and later read, the original write content becomes redundant since the current file state is captured in the read result. Runs automatically on every request with zero LLM cost. ⚡ Enabled by default in this fork.
Purge Errors — Prunes tool inputs for tools that returned errors after a configurable number of turns (default: 2). Error messages are preserved for context, but the potentially large input content is removed. Runs automatically on every request with zero LLM cost. ⚡ Reduced from 4 to 2 turns in this fork.
Prune Thinking ⚡ NEW — Removes extended thinking tokens (<thinking> blocks, OpenAI reasoning fields) from older assistant messages. Thinking tokens consume significant context but provide no utility after the response is generated. Preserves recent turns for cache efficiency. Runs automatically with zero LLM cost.
Placeholder Compression ⚡ NEW — Replaces verbose tool outputs with actionable placeholder hints while preserving the tool call structure (name + input) as breadcrumbs. This allows the agent to see what actions were taken and re-execute if needed, while dramatically reducing context size. Based on Escaping Context Amnesia.
Example:
Before: [1000 tokens of file content]
After: [File read previously. Read again if needed: /path/to/file.ts]
Your session history is never modified—DCP replaces pruned content with placeholders before sending requests to your LLM.
| Setting | Upstream | This Fork | Rationale |
|---|---|---|---|
purgeErrors.turns | 4 | 2 | Errors rarely useful after 2 turns |
nudgeFrequency | 10 | 5 | More frequent prune reminders |
supersedeWrites.enabled | false | true | Safe with read-after-write pattern |
pruneThinking.enabled | N/A | true | Strip ephemeral thinking tokens |
placeholderCompression.enabled | N/A | true | Compress verbose outputs, keep breadcrumbs |
LLM providers like Anthropic and OpenAI cache prompts based on exact prefix matching. When DCP prunes a tool output, it changes the message content, which invalidates cached prefixes from that point forward.
Trade-off: You lose some cache read benefits but gain larger token savings from reduced context size and performance improvements through reduced context poisoning. In most cases, the token savings outweigh the cache miss cost—especially in long sessions where context bloat becomes significant.
Note: In testing, cache hit rates were approximately 65% with DCP enabled vs 85% without.
Best use case: Providers that count usage in requests, such as Github Copilot and Google Antigravity have no negative price impact.
DCP uses its own config file:
~/.config/opencode/dcp.jsonc (or dcp.json), created automatically on first run$OPENCODE_CONFIG_DIR/dcp.jsonc (or dcp.json), if OPENCODE_CONFIG_DIR is set.opencode/dcp.jsonc (or dcp.json) in your project's .opencode directory{
"$schema": "https://raw.githubusercontent.com/Opencode-DCP/opencode-dynamic-context-pruning/master/dcp.schema.json",
// Enable or disable the plugin
"enabled": true,
// Enable debug logging to ~/.config/opencode/logs/dcp/
"debug": false,
// Notification display: "off", "minimal", or "detailed"
"pruneNotification": "detailed",
// Slash commands configuration
"commands": {
"enabled": true,
// Additional tools to protect from pruning via commands (e.g., /dcp sweep)
"protectedTools": [],
},
// Protect from pruning for <turns> message turns
"turnProtection": {
"enabled": false,
"turns": 4,
},
// Protect file operations from pruning via glob patterns
// Patterns match tool parameters.filePath (e.g. read/write/edit)
"protectedFilePatterns": [],
// LLM-driven context pruning tools
"tools": {
// Shared settings for all prune tools
"settings": {
// Nudge the LLM to use prune tools (every <nudgeFrequency> tool results)
"nudgeEnabled": true,
"nudgeFrequency": 5, // ⚡ Changed from 10
// Additional tools to protect from pruning
"protectedTools": [],
},
// Removes tool content from context without preservation (for completed tasks or noise)
"discard": {
"enabled": true,
},
// Distills key findings into preserved knowledge before removing raw content
"extract": {
"enabled": true,
// Show distillation content as an ignored message notification
"showDistillation": false,
},
},
// Automatic pruning strategies
"strategies": {
// Remove duplicate tool calls (same tool with same arguments)
"deduplication": {
"enabled": true,
// Additional tools to protect from pruning
"protectedTools": [],
},
// Prune write tool inputs when the file has been subsequently read
"supersedeWrites": {
"enabled": true, // ⚡ Changed from false
},
// Prune tool inputs for errored tools after X turns
"purgeErrors": {
"enabled": true,
// Number of turns before errored tool inputs are pruned
"turns": 2, // ⚡ Changed from 4
// Additional tools to protect from pruning
"protectedTools": [],
},
// ⚡ NEW: Remove extended thinking tokens from older messages
"pruneThinking": {
"enabled": true,
// Turns to wait before pruning (preserves cache)
"delayTurns": 1,
},
// ⚡ NEW: Replace verbose tool outputs with actionable placeholders
"placeholderCompression": {
"enabled": true,
// Turns to wait before compressing
"delayTurns": 2,
// Only compress outputs larger than this token count
"minOutputTokens": 100,
// Additional tools to protect from compression
"protectedTools": [],
},
},
}
Removes extended thinking content from assistant messages after a configurable delay:
type: "thinking" content blocksreasoning field from messages<thinking>...</thinking> tags from text"pruneThinking": {
"enabled": true,
"delayTurns": 1 // Keep current turn for cache, prune older
}
Replaces verbose tool outputs with actionable hints while preserving breadcrumbs:
| Tool | Placeholder Example |
|---|---|
read | [File read previously. Read again if needed: /path/to/file.ts] |
grep | [Content search completed for: pattern. Search again if needed] |
bash | [Command executed: npm test. Re-run if needed] |
webfetch | [URL fetched: https://example.com. Fetch again if needed] |
Protected tools (never compressed): write, edit, todowrite, todoread, discard, extract, task, question, batch, skill
"placeholderCompression": {
"enabled": true,
"delayTurns": 2, // Wait 2 turns before compressing
"minOutputTokens": 100, // Only compress large outputs
"protectedTools": [] // Add custom protected tools
}
DCP provides a /dcp slash command:
/dcp — Shows available DCP commands/dcp context — Shows a breakdown of your current session's token usage by category (system, user, assistant, tools, etc.) and how much has been saved through pruning./dcp stats — Shows cumulative pruning statistics across all sessions./dcp sweep — Prunes all tools since the last user message. Accepts an optional count: /dcp sweep 10 prunes the last 10 tools. Respects commands.protectedTools.When enabled, turn protection prevents tool outputs from being pruned for a configurable number of message turns. This gives the AI time to reference recent tool outputs before they become prunable. Applies to both discard and extract tools, as well as automatic strategies.
By default, these tools are always protected from pruning across all strategies:
task, todowrite, todoread, discard, extract, batch, write, edit
The protectedTools arrays in each section add to this default list.
Settings are merged in order:
Defaults → Global (~/.config/opencode/dcp.jsonc) → Config Dir ($OPENCODE_CONFIG_DIR/dcp.jsonc) → Project (.opencode/dcp.jsonc).
Each level overrides the previous, so project settings take priority over config-dir and global, which take priority over defaults.
Restart OpenCode after making config changes.
Subagents — DCP is disabled for subagents. Subagents are not designed to be token efficient; what matters is that the final message returned to the main agent is a concise summary of findings. DCP's pruning could interfere with this summarization behavior.
MIT
FAQs
OpenCode plugin that optimizes token usage by pruning obsolete tool outputs - Aggressive fork with pruneThinking and placeholderCompression strategies
We found that opencode-dcp-aggressive demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.