mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-20 04:20:38 +09:00
## Thinking Path > - Paperclip orchestrates AI agents for zero-human companies > - Adapter execution and retry classification decide whether agent work pauses, retries, or recovers automatically > - Transient provider failures need to be classified precisely so Paperclip does not convert retryable upstream conditions into false hard failures > - At the same time, operators need an up-to-date model list for Codex-backed agents and prompts should nudge agents toward targeted verification instead of repo-wide sweeps > - This pull request tightens transient recovery classification for Claude and Codex, updates the agent prompt guidance, and adds Codex model refresh support end-to-end > - The benefit is better automatic retry behavior plus fresher operator-facing model configuration ## What Changed - added Codex usage-limit retry-window parsing and Claude extra-usage transient classification - normalized the heartbeat transient-recovery contract across adapter executions and heartbeat scheduling - documented that deferred comment wakes only reopen completed issues for human/comment-reopen interactions, while system follow-ups leave closed work closed - updated adapter-utils prompt guidance to prefer targeted verification - added Codex model refresh support in the server route, registry, shared types, and agent config form - added adapter/server tests covering the new parsing, retry scheduling, and model-refresh behavior ## Verification - `pnpm exec vitest run --project @paperclipai/adapter-utils packages/adapter-utils/src/server-utils.test.ts` - `pnpm exec vitest run --project @paperclipai/adapter-claude-local packages/adapters/claude-local/src/server/parse.test.ts` - `pnpm exec vitest run --project @paperclipai/adapter-codex-local packages/adapters/codex-local/src/server/parse.test.ts` - `pnpm exec vitest run --project @paperclipai/server server/src/__tests__/adapter-model-refresh-routes.test.ts server/src/__tests__/adapter-models.test.ts server/src/__tests__/claude-local-execute.test.ts server/src/__tests__/codex-local-execute.test.ts server/src/__tests__/heartbeat-process-recovery.test.ts server/src/__tests__/heartbeat-retry-scheduling.test.ts` ## Risks - Moderate behavior risk: retry classification affects whether runs auto-recover or block, so mistakes here could either suppress needed retries or over-retry real failures - Low workflow risk: deferred comment wake reopening is intentionally scoped to human/comment-reopen interactions so system follow-ups do not revive completed issues unexpectedly > For core feature work, check [`ROADMAP.md`](ROADMAP.md) first and discuss it in `#dev` before opening the PR. Feature PRs that overlap with planned core work may need to be redirected — check the roadmap first. See `CONTRIBUTING.md`. ## Model Used - OpenAI Codex GPT-5-based coding agent with tool use and code execution in the Codex CLI environment ## Checklist - [x] I have included a thinking path that traces from project context to this change - [x] I have specified the model used (with version and capability details) - [x] I have checked ROADMAP.md and confirmed this PR does not duplicate planned core work - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable - [ ] If this change affects the UI, I have included before/after screenshots - [ ] I have updated relevant documentation to reflect my changes - [x] I have considered and documented any risks above - [x] I will address all Greptile and reviewer comments before requesting merge --------- Co-authored-by: Paperclip <noreply@paperclip.ing>
383 lines
12 KiB
TypeScript
383 lines
12 KiB
TypeScript
import type { UsageSummary } from "@paperclipai/adapter-utils";
|
|
import {
|
|
asString,
|
|
asNumber,
|
|
parseObject,
|
|
parseJson,
|
|
} from "@paperclipai/adapter-utils/server-utils";
|
|
|
|
const CLAUDE_AUTH_REQUIRED_RE = /(?:not\s+logged\s+in|please\s+log\s+in|please\s+run\s+`?claude\s+login`?|login\s+required|requires\s+login|unauthorized|authentication\s+required)/i;
|
|
const URL_RE = /(https?:\/\/[^\s'"`<>()[\]{};,!?]+[^\s'"`<>()[\]{};,!.?:]+)/gi;
|
|
|
|
const CLAUDE_TRANSIENT_UPSTREAM_RE =
|
|
/(?:rate[-\s]?limit(?:ed)?|rate_limit_error|too\s+many\s+requests|\b429\b|overloaded(?:_error)?|server\s+overloaded|service\s+unavailable|\b503\b|\b529\b|high\s+demand|try\s+again\s+later|temporarily\s+unavailable|throttl(?:ed|ing)|throttlingexception|servicequotaexceededexception|out\s+of\s+extra\s+usage|extra\s+usage\b|claude\s+usage\s+limit\s+reached|5[-\s]?hour\s+limit\s+reached|weekly\s+limit\s+reached|usage\s+limit\s+reached|usage\s+cap\s+reached)/i;
|
|
const CLAUDE_EXTRA_USAGE_RESET_RE =
|
|
/(?:out\s+of\s+extra\s+usage|extra\s+usage|usage\s+limit\s+reached|usage\s+cap\s+reached|5[-\s]?hour\s+limit\s+reached|weekly\s+limit\s+reached|claude\s+usage\s+limit\s+reached)[\s\S]{0,80}?\bresets?\s+(?:at\s+)?([^\n()]+?)(?:\s*\(([^)]+)\))?(?:[.!]|\n|$)/i;
|
|
|
|
export function parseClaudeStreamJson(stdout: string) {
|
|
let sessionId: string | null = null;
|
|
let model = "";
|
|
let finalResult: Record<string, unknown> | null = null;
|
|
const assistantTexts: string[] = [];
|
|
|
|
for (const rawLine of stdout.split(/\r?\n/)) {
|
|
const line = rawLine.trim();
|
|
if (!line) continue;
|
|
const event = parseJson(line);
|
|
if (!event) continue;
|
|
|
|
const type = asString(event.type, "");
|
|
if (type === "system" && asString(event.subtype, "") === "init") {
|
|
sessionId = asString(event.session_id, sessionId ?? "") || sessionId;
|
|
model = asString(event.model, model);
|
|
continue;
|
|
}
|
|
|
|
if (type === "assistant") {
|
|
sessionId = asString(event.session_id, sessionId ?? "") || sessionId;
|
|
const message = parseObject(event.message);
|
|
const content = Array.isArray(message.content) ? message.content : [];
|
|
for (const entry of content) {
|
|
if (typeof entry !== "object" || entry === null || Array.isArray(entry)) continue;
|
|
const block = entry as Record<string, unknown>;
|
|
if (asString(block.type, "") === "text") {
|
|
const text = asString(block.text, "");
|
|
if (text) assistantTexts.push(text);
|
|
}
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (type === "result") {
|
|
finalResult = event;
|
|
sessionId = asString(event.session_id, sessionId ?? "") || sessionId;
|
|
}
|
|
}
|
|
|
|
if (!finalResult) {
|
|
return {
|
|
sessionId,
|
|
model,
|
|
costUsd: null as number | null,
|
|
usage: null as UsageSummary | null,
|
|
summary: assistantTexts.join("\n\n").trim(),
|
|
resultJson: null as Record<string, unknown> | null,
|
|
};
|
|
}
|
|
|
|
const usageObj = parseObject(finalResult.usage);
|
|
const usage: UsageSummary = {
|
|
inputTokens: asNumber(usageObj.input_tokens, 0),
|
|
cachedInputTokens: asNumber(usageObj.cache_read_input_tokens, 0),
|
|
outputTokens: asNumber(usageObj.output_tokens, 0),
|
|
};
|
|
const costRaw = finalResult.total_cost_usd;
|
|
const costUsd = typeof costRaw === "number" && Number.isFinite(costRaw) ? costRaw : null;
|
|
const summary = asString(finalResult.result, assistantTexts.join("\n\n")).trim();
|
|
|
|
return {
|
|
sessionId,
|
|
model,
|
|
costUsd,
|
|
usage,
|
|
summary,
|
|
resultJson: finalResult,
|
|
};
|
|
}
|
|
|
|
function extractClaudeErrorMessages(parsed: Record<string, unknown>): string[] {
|
|
const raw = Array.isArray(parsed.errors) ? parsed.errors : [];
|
|
const messages: string[] = [];
|
|
|
|
for (const entry of raw) {
|
|
if (typeof entry === "string") {
|
|
const msg = entry.trim();
|
|
if (msg) messages.push(msg);
|
|
continue;
|
|
}
|
|
|
|
if (typeof entry !== "object" || entry === null || Array.isArray(entry)) {
|
|
continue;
|
|
}
|
|
|
|
const obj = entry as Record<string, unknown>;
|
|
const msg = asString(obj.message, "") || asString(obj.error, "") || asString(obj.code, "");
|
|
if (msg) {
|
|
messages.push(msg);
|
|
continue;
|
|
}
|
|
|
|
try {
|
|
messages.push(JSON.stringify(obj));
|
|
} catch {
|
|
// skip non-serializable entry
|
|
}
|
|
}
|
|
|
|
return messages;
|
|
}
|
|
|
|
export function extractClaudeLoginUrl(text: string): string | null {
|
|
const match = text.match(URL_RE);
|
|
if (!match || match.length === 0) return null;
|
|
for (const rawUrl of match) {
|
|
const cleaned = rawUrl.replace(/[\])}.!,?;:'\"]+$/g, "");
|
|
if (cleaned.includes("claude") || cleaned.includes("anthropic") || cleaned.includes("auth")) {
|
|
return cleaned;
|
|
}
|
|
}
|
|
return match[0]?.replace(/[\])}.!,?;:'\"]+$/g, "") ?? null;
|
|
}
|
|
|
|
export function detectClaudeLoginRequired(input: {
|
|
parsed: Record<string, unknown> | null;
|
|
stdout: string;
|
|
stderr: string;
|
|
}): { requiresLogin: boolean; loginUrl: string | null } {
|
|
const resultText = asString(input.parsed?.result, "").trim();
|
|
const messages = [resultText, ...extractClaudeErrorMessages(input.parsed ?? {}), input.stdout, input.stderr]
|
|
.join("\n")
|
|
.split(/\r?\n/)
|
|
.map((line) => line.trim())
|
|
.filter(Boolean);
|
|
|
|
const requiresLogin = messages.some((line) => CLAUDE_AUTH_REQUIRED_RE.test(line));
|
|
return {
|
|
requiresLogin,
|
|
loginUrl: extractClaudeLoginUrl([input.stdout, input.stderr].join("\n")),
|
|
};
|
|
}
|
|
|
|
export function describeClaudeFailure(parsed: Record<string, unknown>): string | null {
|
|
const subtype = asString(parsed.subtype, "");
|
|
const resultText = asString(parsed.result, "").trim();
|
|
const errors = extractClaudeErrorMessages(parsed);
|
|
|
|
let detail = resultText;
|
|
if (!detail && errors.length > 0) {
|
|
detail = errors[0] ?? "";
|
|
}
|
|
|
|
const parts = ["Claude run failed"];
|
|
if (subtype) parts.push(`subtype=${subtype}`);
|
|
if (detail) parts.push(detail);
|
|
return parts.length > 1 ? parts.join(": ") : null;
|
|
}
|
|
|
|
export function isClaudeMaxTurnsResult(parsed: Record<string, unknown> | null | undefined): boolean {
|
|
if (!parsed) return false;
|
|
|
|
const subtype = asString(parsed.subtype, "").trim().toLowerCase();
|
|
if (subtype === "error_max_turns") return true;
|
|
|
|
const stopReason = asString(parsed.stop_reason, "").trim().toLowerCase();
|
|
if (stopReason === "max_turns") return true;
|
|
|
|
const resultText = asString(parsed.result, "").trim();
|
|
return /max(?:imum)?\s+turns?/i.test(resultText);
|
|
}
|
|
|
|
export function isClaudeUnknownSessionError(parsed: Record<string, unknown>): boolean {
|
|
const resultText = asString(parsed.result, "").trim();
|
|
const allMessages = [resultText, ...extractClaudeErrorMessages(parsed)]
|
|
.map((msg) => msg.trim())
|
|
.filter(Boolean);
|
|
|
|
return allMessages.some((msg) =>
|
|
/no conversation found with session id|unknown session|session .* not found/i.test(msg),
|
|
);
|
|
}
|
|
|
|
function buildClaudeTransientHaystack(input: {
|
|
parsed?: Record<string, unknown> | null;
|
|
stdout?: string | null;
|
|
stderr?: string | null;
|
|
errorMessage?: string | null;
|
|
}): string {
|
|
const parsed = input.parsed ?? null;
|
|
const resultText = parsed ? asString(parsed.result, "") : "";
|
|
const parsedErrors = parsed ? extractClaudeErrorMessages(parsed) : [];
|
|
return [
|
|
input.errorMessage ?? "",
|
|
resultText,
|
|
...parsedErrors,
|
|
input.stdout ?? "",
|
|
input.stderr ?? "",
|
|
]
|
|
.join("\n")
|
|
.split(/\r?\n/)
|
|
.map((line) => line.trim())
|
|
.filter(Boolean)
|
|
.join("\n");
|
|
}
|
|
|
|
function readTimeZoneParts(date: Date, timeZone: string) {
|
|
const values = new Map(
|
|
new Intl.DateTimeFormat("en-US", {
|
|
timeZone,
|
|
hourCycle: "h23",
|
|
year: "numeric",
|
|
month: "2-digit",
|
|
day: "2-digit",
|
|
hour: "2-digit",
|
|
minute: "2-digit",
|
|
}).formatToParts(date).map((part) => [part.type, part.value]),
|
|
);
|
|
return {
|
|
year: Number.parseInt(values.get("year") ?? "", 10),
|
|
month: Number.parseInt(values.get("month") ?? "", 10),
|
|
day: Number.parseInt(values.get("day") ?? "", 10),
|
|
hour: Number.parseInt(values.get("hour") ?? "", 10),
|
|
minute: Number.parseInt(values.get("minute") ?? "", 10),
|
|
};
|
|
}
|
|
|
|
function normalizeResetTimeZone(timeZoneHint: string | null | undefined): string | null {
|
|
const normalized = timeZoneHint?.trim();
|
|
if (!normalized) return null;
|
|
if (/^(?:utc|gmt)$/i.test(normalized)) return "UTC";
|
|
|
|
try {
|
|
new Intl.DateTimeFormat("en-US", { timeZone: normalized }).format(new Date(0));
|
|
return normalized;
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function dateFromTimeZoneWallClock(input: {
|
|
year: number;
|
|
month: number;
|
|
day: number;
|
|
hour: number;
|
|
minute: number;
|
|
timeZone: string;
|
|
}): Date | null {
|
|
let candidate = new Date(Date.UTC(input.year, input.month - 1, input.day, input.hour, input.minute, 0, 0));
|
|
const targetUtc = Date.UTC(input.year, input.month - 1, input.day, input.hour, input.minute, 0, 0);
|
|
|
|
for (let attempt = 0; attempt < 4; attempt += 1) {
|
|
const actual = readTimeZoneParts(candidate, input.timeZone);
|
|
const actualUtc = Date.UTC(actual.year, actual.month - 1, actual.day, actual.hour, actual.minute, 0, 0);
|
|
const offsetMs = targetUtc - actualUtc;
|
|
if (offsetMs === 0) break;
|
|
candidate = new Date(candidate.getTime() + offsetMs);
|
|
}
|
|
|
|
const verified = readTimeZoneParts(candidate, input.timeZone);
|
|
if (
|
|
verified.year !== input.year ||
|
|
verified.month !== input.month ||
|
|
verified.day !== input.day ||
|
|
verified.hour !== input.hour ||
|
|
verified.minute !== input.minute
|
|
) {
|
|
return null;
|
|
}
|
|
|
|
return candidate;
|
|
}
|
|
|
|
function nextClockTimeInTimeZone(input: {
|
|
now: Date;
|
|
hour: number;
|
|
minute: number;
|
|
timeZoneHint: string;
|
|
}): Date | null {
|
|
const timeZone = normalizeResetTimeZone(input.timeZoneHint);
|
|
if (!timeZone) return null;
|
|
|
|
const nowParts = readTimeZoneParts(input.now, timeZone);
|
|
let retryAt = dateFromTimeZoneWallClock({
|
|
year: nowParts.year,
|
|
month: nowParts.month,
|
|
day: nowParts.day,
|
|
hour: input.hour,
|
|
minute: input.minute,
|
|
timeZone,
|
|
});
|
|
if (!retryAt) return null;
|
|
|
|
if (retryAt.getTime() <= input.now.getTime()) {
|
|
const nextDay = new Date(Date.UTC(nowParts.year, nowParts.month - 1, nowParts.day + 1, 0, 0, 0, 0));
|
|
retryAt = dateFromTimeZoneWallClock({
|
|
year: nextDay.getUTCFullYear(),
|
|
month: nextDay.getUTCMonth() + 1,
|
|
day: nextDay.getUTCDate(),
|
|
hour: input.hour,
|
|
minute: input.minute,
|
|
timeZone,
|
|
});
|
|
}
|
|
|
|
return retryAt;
|
|
}
|
|
|
|
function parseClaudeResetClockTime(clockText: string, now: Date, timeZoneHint?: string | null): Date | null {
|
|
const normalized = clockText.trim().replace(/\s+/g, " ");
|
|
const match = normalized.match(/^(\d{1,2})(?::(\d{2}))?\s*([ap])\.?\s*m\.?/i);
|
|
if (!match) return null;
|
|
|
|
const hour12 = Number.parseInt(match[1] ?? "", 10);
|
|
const minute = Number.parseInt(match[2] ?? "0", 10);
|
|
if (!Number.isInteger(hour12) || hour12 < 1 || hour12 > 12) return null;
|
|
if (!Number.isInteger(minute) || minute < 0 || minute > 59) return null;
|
|
|
|
let hour24 = hour12 % 12;
|
|
if ((match[3] ?? "").toLowerCase() === "p") hour24 += 12;
|
|
|
|
if (timeZoneHint) {
|
|
const explicitRetryAt = nextClockTimeInTimeZone({
|
|
now,
|
|
hour: hour24,
|
|
minute,
|
|
timeZoneHint,
|
|
});
|
|
if (explicitRetryAt) return explicitRetryAt;
|
|
}
|
|
|
|
const retryAt = new Date(now);
|
|
retryAt.setHours(hour24, minute, 0, 0);
|
|
if (retryAt.getTime() <= now.getTime()) {
|
|
retryAt.setDate(retryAt.getDate() + 1);
|
|
}
|
|
return retryAt;
|
|
}
|
|
|
|
export function extractClaudeRetryNotBefore(
|
|
input: {
|
|
parsed?: Record<string, unknown> | null;
|
|
stdout?: string | null;
|
|
stderr?: string | null;
|
|
errorMessage?: string | null;
|
|
},
|
|
now = new Date(),
|
|
): Date | null {
|
|
const haystack = buildClaudeTransientHaystack(input);
|
|
const match = haystack.match(CLAUDE_EXTRA_USAGE_RESET_RE);
|
|
if (!match) return null;
|
|
return parseClaudeResetClockTime(match[1] ?? "", now, match[2]);
|
|
}
|
|
|
|
export function isClaudeTransientUpstreamError(input: {
|
|
parsed?: Record<string, unknown> | null;
|
|
stdout?: string | null;
|
|
stderr?: string | null;
|
|
errorMessage?: string | null;
|
|
}): boolean {
|
|
const parsed = input.parsed ?? null;
|
|
// Deterministic failures are handled by their own classifiers.
|
|
if (parsed && (isClaudeMaxTurnsResult(parsed) || isClaudeUnknownSessionError(parsed))) {
|
|
return false;
|
|
}
|
|
const loginMeta = detectClaudeLoginRequired({
|
|
parsed,
|
|
stdout: input.stdout ?? "",
|
|
stderr: input.stderr ?? "",
|
|
});
|
|
if (loginMeta.requiresLogin) return false;
|
|
|
|
const haystack = buildClaudeTransientHaystack(input);
|
|
if (!haystack) return false;
|
|
return CLAUDE_TRANSIENT_UPSTREAM_RE.test(haystack);
|
|
}
|