opencode-resolve 0.1.12 → 0.1.13
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/dist/agents.js +8 -0
- package/package.json +1 -1
package/dist/agents.js
CHANGED
|
@@ -283,6 +283,8 @@ export function buildGLMResolverPrompt(maxParallelSubagents) {
|
|
|
283
283
|
"NEVER: as any / @ts-ignore / leave code broken / delete failing tests / commit without request.",
|
|
284
284
|
"",
|
|
285
285
|
"Specialists: explorer (scope unknown), reviewer (verification gap), debugger (verify failure diagnosis), planner (user asks for plan). No deep-reviewer.",
|
|
286
|
+
"",
|
|
287
|
+
"CONTINUATION: After context compression or any intermediate step, immediately continue the current task. Do NOT pause, summarize status, or ask the user unless you face a CRITICAL decision requiring their input (destructive action, ambiguous requirement, security concern). Keep moving.",
|
|
286
288
|
].join("\n");
|
|
287
289
|
}
|
|
288
290
|
export function buildGPTResolverPrompt() {
|
|
@@ -306,6 +308,8 @@ export function buildGPTResolverPrompt() {
|
|
|
306
308
|
"NEVER: as any / @ts-ignore / leave code broken / delete failing tests / commit without request.",
|
|
307
309
|
"",
|
|
308
310
|
"Specialists: explorer (scope unknown), reviewer (verification gap), deep-reviewer (risky/security/architectural), debugger (verify failure diagnosis), planner (user asks for plan).",
|
|
311
|
+
"",
|
|
312
|
+
"CONTINUATION: After context compression or any intermediate step, immediately continue the current task. Do NOT pause, summarize status, or ask the user unless you face a CRITICAL decision requiring their input (destructive action, ambiguous requirement, security concern). Keep moving.",
|
|
309
313
|
].join("\n");
|
|
310
314
|
}
|
|
311
315
|
export function buildCodexResolverPrompt() {
|
|
@@ -323,6 +327,8 @@ export function buildCodexResolverPrompt() {
|
|
|
323
327
|
"Verify: type check or lint MUST pass on changed files. Check LSP diagnostics when available. NO EVIDENCE = NOT COMPLETE.",
|
|
324
328
|
"",
|
|
325
329
|
"NEVER: as any / @ts-ignore / leave code broken / delete failing tests / commit without request.",
|
|
330
|
+
"",
|
|
331
|
+
"CONTINUATION: After context compression or any intermediate step, immediately continue the current task. Do NOT pause, summarize status, or ask the user unless you face a CRITICAL decision requiring their input (destructive action, ambiguous requirement, security concern). Keep moving.",
|
|
326
332
|
].join("\n");
|
|
327
333
|
}
|
|
328
334
|
export function buildResolverPrompt(maxParallelSubagents) {
|
|
@@ -355,6 +361,8 @@ export function buildResolverPrompt(maxParallelSubagents) {
|
|
|
355
361
|
"NEVER: as any / @ts-ignore / leave code broken / delete failing tests / commit without request.",
|
|
356
362
|
"",
|
|
357
363
|
"Specialists: explorer (scope unknown), reviewer (verification gap), deep-reviewer (risky/security/architectural), debugger (verify failure diagnosis), planner (user asks for plan).",
|
|
364
|
+
"",
|
|
365
|
+
"CONTINUATION: After context compression or any intermediate step, immediately continue the current task. Do NOT pause, summarize status, or ask the user unless you face a CRITICAL decision requiring their input (destructive action, ambiguous requirement, security concern). Keep moving.",
|
|
358
366
|
].join("\n");
|
|
359
367
|
}
|
|
360
368
|
export const VALID_MODEL_ALIASES = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-resolve",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "OpenCode plugin that adds a lightweight resolver/coder harness for continuous agentic coding.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/jshsakura/opencode-resolve#readme",
|