Replace local utility stubs with fork's adapter-utils imports

- Replace joinPromptSections, stringifyPaperclipWakePayload, and
  renderPaperclipWakePrompt with imports from adapter-utils/server-utils
  (the fork's renderPaperclipWakePrompt adds execution stage routing,
  resume delta sections, and full comment batch rendering)
- Replace local inferOpenAiCompatibleBiller with import from adapter-utils
- Declare sessionManagement using getAdapterSessionManagement("opencode_local")
  with fallback defaults for proper session compaction policy
- Add log redaction via redactHomePathUserSegments in streamPodLogs
- Bump peerDependency to >=0.3.1 and version to 0.1.14

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-04-14 11:00:33 +00:00
parent 193e68e99d
commit e53bcf2501
5 changed files with 22 additions and 52 deletions
+3 -15
View File
@@ -1,12 +1,6 @@
import type { AdapterExecutionContext, AdapterExecutionResult } from "@paperclipai/adapter-utils";
import { inferOpenAiCompatibleBiller, redactHomePathUserSegments } from "@paperclipai/adapter-utils";
import { asString, asNumber, asBoolean, parseObject } from "@paperclipai/adapter-utils/server-utils";
function inferOpenAiCompatibleBiller(env: Record<string, string>, _fallback: string | null): string | null {
if (env.OPENROUTER_API_KEY) return "openrouter";
if (env.OPENAI_BASE_URL?.includes("openrouter")) return "openrouter";
if (env.OPENAI_API_KEY) return "openai";
return null;
}
import {
parseOpenCodeJsonl,
isOpenCodeUnknownSessionError,
@@ -137,7 +131,7 @@ async function streamPodLogs(
const writable = new Writable({
write(chunk: Buffer, _encoding, callback) {
const text = chunk.toString("utf-8");
const text = redactHomePathUserSegments(chunk.toString("utf-8"));
chunks.push(text);
void onLog("stdout", text).then(() => callback(), callback);
},
@@ -398,13 +392,7 @@ export async function execute(ctx: AdapterExecutionContext): Promise<AdapterExec
: null;
const provider = parseModelProvider(model);
// Build a minimal env record for biller inference
const billerEnv: Record<string, string> = {};
for (const key of ["OPENAI_API_KEY", "OPENAI_BASE_URL", "OPENROUTER_API_KEY"]) {
const val = process.env[key];
if (val) billerEnv[key] = val;
}
const biller = inferOpenAiCompatibleBiller(billerEnv, null) ?? provider ?? "unknown";
const biller = inferOpenAiCompatibleBiller(process.env, null) ?? provider ?? "unknown";
const parsedError = typeof parsed.errorMessage === "string" ? parsed.errorMessage.trim() : "";
const rawExitCode = exitCode;