@tarquinen/opencode-dcp 3.2.4-beta0 → 3.2.6-beta0
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.
- package/dcp.schema.json +329 -0
- package/dist/lib/config.js +2 -2
- package/dist/lib/config.js.map +1 -1
- package/index.ts +141 -0
- package/lib/auth.ts +37 -0
- package/lib/commands/compression-targets.ts +137 -0
- package/lib/commands/context.ts +132 -0
- package/lib/commands/decompress.ts +275 -0
- package/lib/commands/help.ts +76 -0
- package/lib/commands/index.ts +11 -0
- package/lib/commands/manual.ts +125 -0
- package/lib/commands/recompress.ts +224 -0
- package/lib/commands/stats.ts +148 -0
- package/lib/commands/sweep.ts +268 -0
- package/lib/compress-permission.ts +25 -0
- package/lib/config.ts +2 -2
- package/lib/hooks.ts +378 -0
- package/lib/host-permissions.ts +101 -0
- package/lib/messages/index.ts +8 -0
- package/lib/messages/inject/inject.ts +215 -0
- package/lib/messages/inject/subagent-results.ts +82 -0
- package/lib/messages/inject/utils.ts +374 -0
- package/lib/messages/priority.ts +102 -0
- package/lib/messages/prune.ts +238 -0
- package/lib/messages/reasoning-strip.ts +40 -0
- package/lib/messages/sync.ts +124 -0
- package/lib/messages/utils.ts +187 -0
- package/lib/prompts/compress-message.ts +42 -0
- package/lib/prompts/compress-range.ts +60 -0
- package/lib/prompts/context-limit-nudge.ts +18 -0
- package/lib/prompts/extensions/nudge.ts +43 -0
- package/lib/prompts/extensions/system.ts +32 -0
- package/lib/prompts/extensions/tool.ts +35 -0
- package/lib/prompts/index.ts +29 -0
- package/lib/prompts/iteration-nudge.ts +6 -0
- package/lib/prompts/store.ts +467 -0
- package/lib/prompts/system.ts +33 -0
- package/lib/prompts/turn-nudge.ts +10 -0
- package/lib/protected-patterns.ts +128 -0
- package/lib/strategies/deduplication.ts +127 -0
- package/lib/strategies/index.ts +2 -0
- package/lib/strategies/purge-errors.ts +88 -0
- package/lib/subagents/subagent-results.ts +74 -0
- package/lib/ui/notification.ts +346 -0
- package/lib/ui/utils.ts +287 -0
- package/package.json +14 -19
package/lib/ui/utils.ts
ADDED
|
@@ -0,0 +1,287 @@
|
|
|
1
|
+
import { SessionState, ToolParameterEntry, WithParts } from "../state"
|
|
2
|
+
import { countTokens } from "../token-utils"
|
|
3
|
+
import { isIgnoredUserMessage } from "../messages/query"
|
|
4
|
+
|
|
5
|
+
function extractParameterKey(tool: string, parameters: any): string {
|
|
6
|
+
if (!parameters) return ""
|
|
7
|
+
|
|
8
|
+
if (tool === "read" && parameters.filePath) {
|
|
9
|
+
const offset = parameters.offset
|
|
10
|
+
const limit = parameters.limit
|
|
11
|
+
if (offset !== undefined && limit !== undefined) {
|
|
12
|
+
return `${parameters.filePath} (lines ${offset}-${offset + limit})`
|
|
13
|
+
}
|
|
14
|
+
if (offset !== undefined) {
|
|
15
|
+
return `${parameters.filePath} (lines ${offset}+)`
|
|
16
|
+
}
|
|
17
|
+
if (limit !== undefined) {
|
|
18
|
+
return `${parameters.filePath} (lines 0-${limit})`
|
|
19
|
+
}
|
|
20
|
+
return parameters.filePath
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
if ((tool === "write" || tool === "edit" || tool === "multiedit") && parameters.filePath) {
|
|
24
|
+
return parameters.filePath
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
if (tool === "apply_patch" && typeof parameters.patchText === "string") {
|
|
28
|
+
const pathRegex = /\*\*\* (?:Add|Delete|Update) File: ([^\n\r]+)/g
|
|
29
|
+
const paths: string[] = []
|
|
30
|
+
let match
|
|
31
|
+
while ((match = pathRegex.exec(parameters.patchText)) !== null) {
|
|
32
|
+
paths.push(match[1].trim())
|
|
33
|
+
}
|
|
34
|
+
if (paths.length > 0) {
|
|
35
|
+
const uniquePaths = [...new Set(paths)]
|
|
36
|
+
const count = uniquePaths.length
|
|
37
|
+
const plural = count > 1 ? "s" : ""
|
|
38
|
+
if (count === 1) return uniquePaths[0]
|
|
39
|
+
if (count === 2) return uniquePaths.join(", ")
|
|
40
|
+
return `${count} file${plural}: ${uniquePaths[0]}, ${uniquePaths[1]}...`
|
|
41
|
+
}
|
|
42
|
+
return "patch"
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
if (tool === "list") {
|
|
46
|
+
return parameters.path || "(current directory)"
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
if (tool === "glob") {
|
|
50
|
+
if (parameters.pattern) {
|
|
51
|
+
const pathInfo = parameters.path ? ` in ${parameters.path}` : ""
|
|
52
|
+
return `"${parameters.pattern}"${pathInfo}`
|
|
53
|
+
}
|
|
54
|
+
return "(unknown pattern)"
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
if (tool === "grep") {
|
|
58
|
+
if (parameters.pattern) {
|
|
59
|
+
const pathInfo = parameters.path ? ` in ${parameters.path}` : ""
|
|
60
|
+
return `"${parameters.pattern}"${pathInfo}`
|
|
61
|
+
}
|
|
62
|
+
return "(unknown pattern)"
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if (tool === "bash") {
|
|
66
|
+
if (parameters.description) return parameters.description
|
|
67
|
+
if (parameters.command) {
|
|
68
|
+
return parameters.command.length > 50
|
|
69
|
+
? parameters.command.substring(0, 50) + "..."
|
|
70
|
+
: parameters.command
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (tool === "webfetch" && parameters.url) {
|
|
75
|
+
return parameters.url
|
|
76
|
+
}
|
|
77
|
+
if (tool === "websearch" && parameters.query) {
|
|
78
|
+
return `"${parameters.query}"`
|
|
79
|
+
}
|
|
80
|
+
if (tool === "codesearch" && parameters.query) {
|
|
81
|
+
return `"${parameters.query}"`
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if (tool === "todowrite") {
|
|
85
|
+
return `${parameters.todos?.length || 0} todos`
|
|
86
|
+
}
|
|
87
|
+
if (tool === "todoread") {
|
|
88
|
+
return "read todo list"
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
if (tool === "task" && parameters.description) {
|
|
92
|
+
return parameters.description
|
|
93
|
+
}
|
|
94
|
+
if (tool === "skill" && parameters.name) {
|
|
95
|
+
return parameters.name
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
if (tool === "lsp") {
|
|
99
|
+
const op = parameters.operation || "lsp"
|
|
100
|
+
const path = parameters.filePath || ""
|
|
101
|
+
const line = parameters.line
|
|
102
|
+
const char = parameters.character
|
|
103
|
+
if (path && line !== undefined && char !== undefined) {
|
|
104
|
+
return `${op} ${path}:${line}:${char}`
|
|
105
|
+
}
|
|
106
|
+
if (path) {
|
|
107
|
+
return `${op} ${path}`
|
|
108
|
+
}
|
|
109
|
+
return op
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
if (tool === "question") {
|
|
113
|
+
const questions = parameters.questions
|
|
114
|
+
if (Array.isArray(questions) && questions.length > 0) {
|
|
115
|
+
const headers = questions
|
|
116
|
+
.map((q: any) => q.header || "")
|
|
117
|
+
.filter(Boolean)
|
|
118
|
+
.slice(0, 3)
|
|
119
|
+
|
|
120
|
+
const count = questions.length
|
|
121
|
+
const plural = count > 1 ? "s" : ""
|
|
122
|
+
|
|
123
|
+
if (headers.length > 0) {
|
|
124
|
+
const suffix = count > 3 ? ` (+${count - 3} more)` : ""
|
|
125
|
+
return `${count} question${plural}: ${headers.join(", ")}${suffix}`
|
|
126
|
+
}
|
|
127
|
+
return `${count} question${plural}`
|
|
128
|
+
}
|
|
129
|
+
return "question"
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
const paramStr = JSON.stringify(parameters)
|
|
133
|
+
if (paramStr === "{}" || paramStr === "[]" || paramStr === "null") {
|
|
134
|
+
return ""
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
return paramStr.substring(0, 50)
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export function formatStatsHeader(totalTokensSaved: number, pruneTokenCounter: number): string {
|
|
141
|
+
const totalTokensSavedStr = `~${formatTokenCount(totalTokensSaved + pruneTokenCounter)}`
|
|
142
|
+
return [`▣ DCP | ${totalTokensSavedStr} saved total`].join("\n")
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export function formatTokenCount(tokens: number, compact?: boolean): string {
|
|
146
|
+
const suffix = compact ? "" : " tokens"
|
|
147
|
+
if (tokens >= 1000) {
|
|
148
|
+
return `${(tokens / 1000).toFixed(1)}K`.replace(".0K", "K") + suffix
|
|
149
|
+
}
|
|
150
|
+
return tokens.toString() + suffix
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export function truncate(str: string, maxLen: number = 60): string {
|
|
154
|
+
if (str.length <= maxLen) return str
|
|
155
|
+
return str.slice(0, maxLen - 3) + "..."
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export function formatProgressBar(
|
|
159
|
+
messageIds: string[],
|
|
160
|
+
prunedMessages: Map<string, number>,
|
|
161
|
+
recentMessageIds: string[],
|
|
162
|
+
width: number = 50,
|
|
163
|
+
): string {
|
|
164
|
+
const ACTIVE = "█"
|
|
165
|
+
const PRUNED = "░"
|
|
166
|
+
const RECENT = "⣿"
|
|
167
|
+
const recentSet = new Set(recentMessageIds)
|
|
168
|
+
|
|
169
|
+
const total = messageIds.length
|
|
170
|
+
if (total === 0) return `│${PRUNED.repeat(width)}│`
|
|
171
|
+
|
|
172
|
+
const bar = new Array(width).fill(ACTIVE)
|
|
173
|
+
|
|
174
|
+
for (let m = 0; m < total; m++) {
|
|
175
|
+
const msgId = messageIds[m]
|
|
176
|
+
const start = Math.floor((m / total) * width)
|
|
177
|
+
const end = Math.floor(((m + 1) / total) * width)
|
|
178
|
+
|
|
179
|
+
if (recentSet.has(msgId)) {
|
|
180
|
+
for (let i = start; i < end; i++) {
|
|
181
|
+
bar[i] = RECENT
|
|
182
|
+
}
|
|
183
|
+
} else if (prunedMessages.has(msgId)) {
|
|
184
|
+
for (let i = start; i < end; i++) {
|
|
185
|
+
bar[i] = PRUNED
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
return `│${bar.join("")}│`
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export function cacheSystemPromptTokens(state: SessionState, messages: WithParts[]): void {
|
|
194
|
+
let firstInputTokens = 0
|
|
195
|
+
for (const msg of messages) {
|
|
196
|
+
if (msg.info.role !== "assistant") {
|
|
197
|
+
continue
|
|
198
|
+
}
|
|
199
|
+
const info = msg.info as any
|
|
200
|
+
const input = info?.tokens?.input || 0
|
|
201
|
+
const cacheRead = info?.tokens?.cache?.read || 0
|
|
202
|
+
const cacheWrite = info?.tokens?.cache?.write || 0
|
|
203
|
+
if (input > 0 || cacheRead > 0 || cacheWrite > 0) {
|
|
204
|
+
firstInputTokens = input + cacheRead + cacheWrite
|
|
205
|
+
break
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
if (firstInputTokens <= 0) {
|
|
210
|
+
state.systemPromptTokens = undefined
|
|
211
|
+
return
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
let firstUserText = ""
|
|
215
|
+
for (const msg of messages) {
|
|
216
|
+
if (msg.info.role !== "user" || isIgnoredUserMessage(msg)) {
|
|
217
|
+
continue
|
|
218
|
+
}
|
|
219
|
+
const parts = Array.isArray(msg.parts) ? msg.parts : []
|
|
220
|
+
for (const part of parts) {
|
|
221
|
+
if (part.type === "text" && !(part as any).ignored) {
|
|
222
|
+
firstUserText += part.text
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
break
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
const estimatedSystemTokens = Math.max(0, firstInputTokens - countTokens(firstUserText))
|
|
229
|
+
state.systemPromptTokens = estimatedSystemTokens > 0 ? estimatedSystemTokens : undefined
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
export function shortenPath(input: string, workingDirectory?: string): string {
|
|
233
|
+
const inPathMatch = input.match(/^(.+) in (.+)$/)
|
|
234
|
+
if (inPathMatch) {
|
|
235
|
+
const prefix = inPathMatch[1]
|
|
236
|
+
const pathPart = inPathMatch[2]
|
|
237
|
+
const shortenedPath = shortenSinglePath(pathPart, workingDirectory)
|
|
238
|
+
return `${prefix} in ${shortenedPath}`
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
return shortenSinglePath(input, workingDirectory)
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
function shortenSinglePath(path: string, workingDirectory?: string): string {
|
|
245
|
+
if (workingDirectory) {
|
|
246
|
+
if (path.startsWith(workingDirectory + "/")) {
|
|
247
|
+
return path.slice(workingDirectory.length + 1)
|
|
248
|
+
}
|
|
249
|
+
if (path === workingDirectory) {
|
|
250
|
+
return "."
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
return path
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
export function formatPrunedItemsList(
|
|
258
|
+
pruneToolIds: string[],
|
|
259
|
+
toolMetadata: Map<string, ToolParameterEntry>,
|
|
260
|
+
workingDirectory?: string,
|
|
261
|
+
): string[] {
|
|
262
|
+
const lines: string[] = []
|
|
263
|
+
|
|
264
|
+
for (const id of pruneToolIds) {
|
|
265
|
+
const metadata = toolMetadata.get(id)
|
|
266
|
+
|
|
267
|
+
if (metadata) {
|
|
268
|
+
const paramKey = extractParameterKey(metadata.tool, metadata.parameters)
|
|
269
|
+
if (paramKey) {
|
|
270
|
+
// Use 60 char limit to match notification style
|
|
271
|
+
const displayKey = truncate(shortenPath(paramKey, workingDirectory), 60)
|
|
272
|
+
lines.push(`→ ${metadata.tool}: ${displayKey}`)
|
|
273
|
+
} else {
|
|
274
|
+
lines.push(`→ ${metadata.tool}`)
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
const knownCount = pruneToolIds.filter((id) => toolMetadata.has(id)).length
|
|
280
|
+
const unknownCount = pruneToolIds.length - knownCount
|
|
281
|
+
|
|
282
|
+
if (unknownCount > 0) {
|
|
283
|
+
lines.push(`→ (${unknownCount} tool${unknownCount > 1 ? "s" : ""} with unknown metadata)`)
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
return lines
|
|
287
|
+
}
|
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": "3.2.
|
|
4
|
+
"version": "3.2.6-beta0",
|
|
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",
|
|
@@ -20,6 +20,19 @@
|
|
|
20
20
|
"server",
|
|
21
21
|
"tui"
|
|
22
22
|
],
|
|
23
|
+
"files": [
|
|
24
|
+
"dist/",
|
|
25
|
+
"index.ts",
|
|
26
|
+
"lib/**/*.ts",
|
|
27
|
+
"tui/index.tsx",
|
|
28
|
+
"tui/data/*.ts",
|
|
29
|
+
"tui/routes/*.tsx",
|
|
30
|
+
"tui/shared/*.ts",
|
|
31
|
+
"tui/slots/*.tsx",
|
|
32
|
+
"README.md",
|
|
33
|
+
"LICENSE",
|
|
34
|
+
"dcp.schema.json"
|
|
35
|
+
],
|
|
23
36
|
"scripts": {
|
|
24
37
|
"clean": "rm -rf dist",
|
|
25
38
|
"build": "npm run clean && tsc",
|
|
@@ -71,24 +84,6 @@
|
|
|
71
84
|
"tsx": "^4.21.0",
|
|
72
85
|
"typescript": "^6.0.2"
|
|
73
86
|
},
|
|
74
|
-
"files": [
|
|
75
|
-
"dist/",
|
|
76
|
-
"lib/analysis/",
|
|
77
|
-
"lib/compress/",
|
|
78
|
-
"lib/state/",
|
|
79
|
-
"lib/config.ts",
|
|
80
|
-
"lib/logger.ts",
|
|
81
|
-
"lib/message-ids.ts",
|
|
82
|
-
"lib/messages/query.ts",
|
|
83
|
-
"lib/token-utils.ts",
|
|
84
|
-
"tui/data/",
|
|
85
|
-
"tui/routes/",
|
|
86
|
-
"tui/shared/",
|
|
87
|
-
"tui/slots/",
|
|
88
|
-
"tui/index.tsx",
|
|
89
|
-
"README.md",
|
|
90
|
-
"LICENSE"
|
|
91
|
-
],
|
|
92
87
|
"directories": {
|
|
93
88
|
"doc": "docs",
|
|
94
89
|
"lib": "lib",
|