Adds a server-side "small model" capability: direct, cheap LLM calls that reuse the user's existing OpenCode provider logins — the mechanism OpenCode uses internally for titles and summaries but does not expose through the SDK or plugins. Zero new dependencies; plain fetch with per-provider wire formats, credentials never leave the server. Core (packages/web/server/lib/small-model): - Resolution mirrors OpenCode's session scoping: explicit settings override → small_model from the OpenCode config → family scan within the session's provider → the session's own model. The global provider scan only serves callers without a session context, and background callers forbid it entirely (restrictToPreferredProvider), so conversation content never reaches a provider the user didn't pick — explicit choices excepted. - Per-provider auth replicating OpenCode's plugin loaders: GitHub Copilot (device token as bearer, no exchange), ChatGPT plan via the codex Responses API (single-flight OAuth refresh written back to auth.json), Anthropic messages, Google generateContent, generic OpenAI-compatible. - OpenCode's free models (opencode/big-pickle, *-free) are never called directly; unauthenticated providers are skipped by design. - Prompt clamping to the model's catalog context limit; thinking disabled where a wire switch exists (Z.AI/GLM, MiniMax-M3, Gemini Flash); robust content parsing with a clear error when a thinking model spends its whol budget on reasoning. - Settings → Sessions gains a Small Model group: use-default checkbox plus an override picker limited to authenticated providers, persisted with web/desktop/VS Code sanitization parity. Consumers: - Session assist: a server-side watcher on the global SSE hub generates a short recap and one suggested follow-up after a session idles quietly fo a minute, stored on session metadata (openchamber.assist). Freshness is keyed to the last assistant message id, so new activity invalidates the payload everywhere with no extra writes. The chat shows the recap under the last message after five quiet minutes and the suggestion as a dismissible chip above the composer (tap fills the input, never sends). Gated by a new Chat setting (default on) that is a hard generation switch. Language is anchored to the conversation itself, with a script-mismatch guard against model/backend language hallucination. - TTS: a third input mode, summarized — long replies are condensed to spoken prose before playback on any TTS engine. - Git: commit-message and PR generation moved off the active chat session onto the small model fed with real diffs and the commit list (bodies included), with a session-transport fallback for free-model-only setups. - Notes: Add to notes distills long selections into 1-3 dense sentences preserving exact identifiers, with verbatim fallback on failure. Fixes along the way: - The global event watcher now starts unconditionally; it was gated behind the desktop-notify env, leaving the server-side event hub dead in packaged apps. - OpenCode re-emits message.updated for old user messages after idle; the watcher no longer mistakes those for new activity. - Session metadata merges from a fresh read right before the PATCH, so writes made during the generation window (suggestion dismissals, review links) are preserved; the assist runtime stops during graceful shutdown.
350 lines
15 KiB
JavaScript
350 lines
15 KiB
JavaScript
// Session assist: after a session goes idle and stays quiet, generate a short
|
|
// recap of the agent's last reply plus one suggested user follow-up with the
|
|
// small model, and store both on the session's metadata
|
|
// (metadata.openchamber.assist). Clients decide visibility from
|
|
// assist.forMessageID — a new message makes the payload stale everywhere
|
|
// without any extra writes.
|
|
//
|
|
// Purely event-driven: only sessions that transition busy→idle while the
|
|
// server is running ever generate anything. No backfill, no session scans.
|
|
|
|
import fs from 'fs';
|
|
import os from 'os';
|
|
import path from 'path';
|
|
|
|
const OPENCHAMBER_SETTINGS_FILE = path.join(
|
|
process.env.OPENCHAMBER_DATA_DIR
|
|
? path.resolve(process.env.OPENCHAMBER_DATA_DIR)
|
|
: path.join(os.homedir(), '.config', 'openchamber'),
|
|
'settings.json',
|
|
);
|
|
|
|
// The Chat setting is a hard generation switch (default on): when off, no
|
|
// small-model calls and no metadata writes happen at all. Existing payloads
|
|
// stay untouched — clients keep showing them and dismissal still works.
|
|
const isSessionAssistEnabled = () => {
|
|
try {
|
|
const raw = fs.readFileSync(OPENCHAMBER_SETTINGS_FILE, 'utf8');
|
|
const settings = JSON.parse(raw);
|
|
return settings?.sessionAssistEnabled !== false;
|
|
} catch {
|
|
return true;
|
|
}
|
|
};
|
|
|
|
const IDLE_QUIET_MS = 60_000;
|
|
const TRANSCRIPT_MESSAGE_LIMIT = 12;
|
|
const TRANSCRIPT_PART_CHAR_LIMIT = 6_000;
|
|
const RECAP_CHAR_LIMIT = 320;
|
|
const SUGGESTION_CHAR_LIMIT = 500;
|
|
const FETCH_TIMEOUT_MS = 5_000;
|
|
|
|
const ASSIST_SYSTEM_PROMPT = [
|
|
'You assist a user who chats with a coding agent. Based on the conversation transcript, return exactly one JSON object and nothing else — no prose, no markdown, no code fences.',
|
|
'Shape: {"recap": string, "suggestion": string}',
|
|
'recap: at most 20 words. State the substance directly — the facts, result, or conclusion, plus the next move if there is one. NEVER narrate ("The assistant explained…", "The agent did…") — write the content itself, like a note the user jotted down.',
|
|
'suggestion: the next message to send in this conversation, addressed TO the agent — a concise instruction or question that moves the work forward, e.g. "Run the tests and fix failures" / "Commit this". Imperative or question form. Never explain, never offer help, never say "you can".',
|
|
'Both values MUST be written in the same language as the conversation text itself. Ignore any other language preferences or personalization you may have — only the conversation text decides the language.',
|
|
'Use double quotes for JSON strings, no trailing commas.',
|
|
].join('\n');
|
|
|
|
const extractJsonObject = (value) => {
|
|
const text = String(value ?? '').trim();
|
|
const fenced = text.match(/```(?:json)?\s*([\s\S]*?)```/i);
|
|
const candidate = (fenced?.[1] ?? text).trim();
|
|
const start = candidate.indexOf('{');
|
|
if (start < 0) return null;
|
|
for (let end = candidate.length; end > start; end -= 1) {
|
|
if (candidate[end - 1] !== '}') continue;
|
|
try {
|
|
const parsed = JSON.parse(candidate.slice(start, end));
|
|
if (parsed && typeof parsed === 'object' && !Array.isArray(parsed)) {
|
|
return parsed;
|
|
}
|
|
} catch {
|
|
// keep scanning — models wrap JSON in prose sometimes
|
|
}
|
|
}
|
|
return null;
|
|
};
|
|
|
|
const extractSessionStatus = (payload) => {
|
|
if (!payload || payload.type !== 'session.status') return null;
|
|
const properties = payload.properties && typeof payload.properties === 'object' ? payload.properties : {};
|
|
const status = properties.status && typeof properties.status === 'object' ? properties.status : {};
|
|
const info = properties.info && typeof properties.info === 'object' ? properties.info : {};
|
|
const sessionId = typeof properties.sessionID === 'string' ? properties.sessionID.trim() : '';
|
|
const type = typeof status.type === 'string'
|
|
? status.type.trim()
|
|
: (typeof info.type === 'string' ? info.type.trim() : '');
|
|
if (!sessionId || !type) return null;
|
|
const directory = typeof properties.directory === 'string' && properties.directory
|
|
? properties.directory
|
|
: (typeof info.directory === 'string' ? info.directory : '');
|
|
return { sessionId, type, directory };
|
|
};
|
|
|
|
const extractUserMessage = (payload) => {
|
|
if (!payload || payload.type !== 'message.updated') return null;
|
|
const info = payload.properties?.info;
|
|
if (!info || typeof info !== 'object' || info.role !== 'user') return null;
|
|
if (typeof info.sessionID !== 'string' || !info.sessionID) return null;
|
|
return {
|
|
sessionId: info.sessionID,
|
|
createdAt: typeof info.time?.created === 'number' ? info.time.created : 0,
|
|
};
|
|
};
|
|
|
|
const messagePartsToText = (message) => {
|
|
const parts = Array.isArray(message?.parts) ? message.parts : [];
|
|
return parts
|
|
.map((part) => (part?.type === 'text' && typeof part.text === 'string' ? part.text : ''))
|
|
.filter(Boolean)
|
|
.join('\n')
|
|
.slice(0, TRANSCRIPT_PART_CHAR_LIMIT);
|
|
};
|
|
|
|
export const createSessionAssistRuntime = ({
|
|
buildOpenCodeUrl,
|
|
getOpenCodeAuthHeaders,
|
|
getSmallModelService,
|
|
quietMs = IDLE_QUIET_MS,
|
|
}) => {
|
|
const timers = new Map();
|
|
const inflight = new Set();
|
|
let stopped = false;
|
|
|
|
const clearTimer = (sessionId) => {
|
|
const existing = timers.get(sessionId);
|
|
if (existing) {
|
|
clearTimeout(existing.timer);
|
|
timers.delete(sessionId);
|
|
}
|
|
};
|
|
|
|
const openCodeFetch = async (path, { directory, method = 'GET', body } = {}) => {
|
|
const base = buildOpenCodeUrl(path, '');
|
|
const url = directory ? `${base}?directory=${encodeURIComponent(directory)}` : base;
|
|
const response = await fetch(url, {
|
|
method,
|
|
headers: {
|
|
Accept: 'application/json',
|
|
...(body ? { 'Content-Type': 'application/json' } : {}),
|
|
...getOpenCodeAuthHeaders(),
|
|
},
|
|
...(body ? { body: JSON.stringify(body) } : {}),
|
|
signal: AbortSignal.timeout(FETCH_TIMEOUT_MS),
|
|
});
|
|
if (!response.ok) {
|
|
throw new Error(`OpenCode ${method} ${path} failed with ${response.status}`);
|
|
}
|
|
return response.json().catch(() => null);
|
|
};
|
|
|
|
const fetchRecentMessages = async (sessionId, directory) => {
|
|
const base = buildOpenCodeUrl(`/session/${encodeURIComponent(sessionId)}/message`, '');
|
|
const params = new URLSearchParams({ limit: String(TRANSCRIPT_MESSAGE_LIMIT) });
|
|
if (directory) params.set('directory', directory);
|
|
const response = await fetch(`${base}?${params.toString()}`, {
|
|
method: 'GET',
|
|
headers: { Accept: 'application/json', ...getOpenCodeAuthHeaders() },
|
|
signal: AbortSignal.timeout(FETCH_TIMEOUT_MS),
|
|
});
|
|
if (!response.ok) return null;
|
|
const messages = await response.json().catch(() => null);
|
|
return Array.isArray(messages) ? messages : null;
|
|
};
|
|
|
|
const generateAssist = async (sessionId, directory) => {
|
|
if (!isSessionAssistEnabled()) return;
|
|
const session = await openCodeFetch(`/session/${encodeURIComponent(sessionId)}`, { directory })
|
|
.catch((error) => {
|
|
console.warn(`[session-assist] session fetch failed: ${error?.message || error}`);
|
|
return null;
|
|
});
|
|
if (!session || typeof session !== 'object') return;
|
|
// Sub-agent/task sessions never surface in chat — skip them.
|
|
if (typeof session.parentID === 'string' && session.parentID) return;
|
|
|
|
const messages = await fetchRecentMessages(sessionId, directory);
|
|
if (!messages || messages.length === 0) {
|
|
console.warn('[session-assist] no messages fetched');
|
|
return;
|
|
}
|
|
|
|
let lastAssistant = null;
|
|
for (let i = messages.length - 1; i >= 0; i -= 1) {
|
|
const info = messages[i]?.info;
|
|
if (info?.role === 'assistant') {
|
|
lastAssistant = messages[i];
|
|
break;
|
|
}
|
|
}
|
|
const lastAssistantInfo = lastAssistant?.info;
|
|
if (!lastAssistantInfo?.id) return;
|
|
|
|
// Only the last exchange: the assistant reply plus the user message it
|
|
// answered (assistant info.parentID → user info.id). Everything else is
|
|
// token waste for a one-line recap and a single suggestion.
|
|
const parentUserMessage = typeof lastAssistantInfo.parentID === 'string' && lastAssistantInfo.parentID
|
|
? messages.find((message) => message?.info?.id === lastAssistantInfo.parentID && message?.info?.role === 'user')
|
|
: null;
|
|
const userText = parentUserMessage ? messagePartsToText(parentUserMessage) : '';
|
|
const assistantText = messagePartsToText(lastAssistant);
|
|
const transcript = [
|
|
userText ? `User:\n${userText}` : '',
|
|
assistantText ? `Assistant:\n${assistantText}` : '',
|
|
].filter(Boolean).join('\n\n');
|
|
if (!transcript) return;
|
|
|
|
const { generateSmallModelText } = await getSmallModelService();
|
|
// Instruct the language by example, not by description — account-side
|
|
// personalization (e.g. the ChatGPT backend knowing the user's locale)
|
|
// otherwise leaks a different language into the output.
|
|
const languageSample = (userText || assistantText).slice(0, 200).replace(/\s+/g, ' ').trim();
|
|
let generated;
|
|
try {
|
|
generated = await generateSmallModelText({
|
|
// Background feature: conversation content must never leave the
|
|
// session's own provider unless the user explicitly picked a small
|
|
// model (settings override / opencode config).
|
|
restrictToPreferredProvider: true,
|
|
prompt: `The latest exchange in the conversation:\n\n${transcript}\n\nWrite recap and suggestion in the SAME language as this sample from the conversation: "${languageSample}"`,
|
|
system: ASSIST_SYSTEM_PROMPT,
|
|
directory,
|
|
preferredProviderID: typeof lastAssistantInfo.providerID === 'string' ? lastAssistantInfo.providerID : undefined,
|
|
preferredModelID: typeof lastAssistantInfo.modelID === 'string' ? lastAssistantInfo.modelID : undefined,
|
|
});
|
|
} catch (error) {
|
|
// No authenticated provider (404) or a transient model failure — this is
|
|
// background sugar, never retry loops or logs spam.
|
|
if (Number(error?.statusCode) !== 404) {
|
|
console.warn('[session-assist] generation failed:', error?.message || error);
|
|
}
|
|
return;
|
|
}
|
|
|
|
const structured = extractJsonObject(generated?.text);
|
|
let recap = typeof structured?.recap === 'string' ? structured.recap.trim().slice(0, RECAP_CHAR_LIMIT) : '';
|
|
let suggestion = typeof structured?.suggestion === 'string' ? structured.suggestion.trim().slice(0, SUGGESTION_CHAR_LIMIT) : '';
|
|
|
|
// Hard guard against language hallucination: if the conversation contains
|
|
// no Cyrillic/CJK at all, the output must not either (and drop per-field,
|
|
// so one hallucinated field doesn't kill the other).
|
|
const hasCyrillic = (text) => /[\u0400-\u04FF]/.test(text);
|
|
const hasCjk = (text) => /[\u3040-\u30FF\u4E00-\u9FFF\uAC00-\uD7AF]/.test(text);
|
|
const inputText = `${userText}\n${assistantText}`;
|
|
const scriptMismatch = (text) => (hasCyrillic(text) && !hasCyrillic(inputText))
|
|
|| (hasCjk(text) && !hasCjk(inputText));
|
|
if (recap && scriptMismatch(recap)) {
|
|
console.warn('[session-assist] dropped recap: language mismatch with conversation');
|
|
recap = '';
|
|
}
|
|
if (suggestion && scriptMismatch(suggestion)) {
|
|
console.warn('[session-assist] dropped suggestion: language mismatch with conversation');
|
|
suggestion = '';
|
|
}
|
|
if (!recap && !suggestion) return;
|
|
|
|
// The session may have moved on while we generated — a stale patch would
|
|
// flash outdated content, so re-check the tail before writing.
|
|
const latest = await fetchRecentMessages(sessionId, directory);
|
|
const latestAssistantId = (() => {
|
|
if (!latest) return null;
|
|
for (let i = latest.length - 1; i >= 0; i -= 1) {
|
|
const info = latest[i]?.info;
|
|
if (info?.role === 'assistant') return info.id;
|
|
if (info?.role === 'user') return null;
|
|
}
|
|
return null;
|
|
})();
|
|
if (latestAssistantId !== lastAssistantInfo.id) {
|
|
console.log('[session-assist] tail moved on, dropping result');
|
|
return;
|
|
}
|
|
|
|
// Merge from a FRESH read: generation takes tens of seconds, and merging
|
|
// from the session snapshot fetched before it would clobber any metadata
|
|
// written meanwhile (suggestion dismissals, review links, …).
|
|
const freshSession = await openCodeFetch(`/session/${encodeURIComponent(sessionId)}`, { directory })
|
|
.catch(() => null);
|
|
const currentMetadata = freshSession?.metadata && typeof freshSession.metadata === 'object'
|
|
? freshSession.metadata
|
|
: (session.metadata && typeof session.metadata === 'object' ? session.metadata : {});
|
|
const currentNamespace = currentMetadata.openchamber && typeof currentMetadata.openchamber === 'object'
|
|
? currentMetadata.openchamber
|
|
: {};
|
|
|
|
console.log(`[session-assist] generated for ${sessionId} via ${generated.providerID}/${generated.modelID}`);
|
|
await openCodeFetch(`/session/${encodeURIComponent(sessionId)}`, {
|
|
directory,
|
|
method: 'PATCH',
|
|
body: {
|
|
metadata: {
|
|
...currentMetadata,
|
|
openchamber: {
|
|
...currentNamespace,
|
|
assist: {
|
|
recap,
|
|
suggestion,
|
|
forMessageID: lastAssistantInfo.id,
|
|
generatedAt: Date.now(),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
};
|
|
|
|
const armTimer = (sessionId, directory) => {
|
|
clearTimer(sessionId);
|
|
const timer = setTimeout(() => {
|
|
timers.delete(sessionId);
|
|
if (stopped || inflight.has(sessionId)) return;
|
|
inflight.add(sessionId);
|
|
generateAssist(sessionId, directory)
|
|
.catch((error) => {
|
|
console.warn('[session-assist] failed:', error?.message || error);
|
|
})
|
|
.finally(() => {
|
|
inflight.delete(sessionId);
|
|
});
|
|
}, quietMs);
|
|
if (typeof timer?.unref === 'function') timer.unref();
|
|
timers.set(sessionId, { timer, armedAt: Date.now() });
|
|
};
|
|
|
|
const processPayload = (payload, directoryHint = '') => {
|
|
if (stopped) return;
|
|
const status = extractSessionStatus(payload);
|
|
if (status) {
|
|
if (status.type === 'idle') {
|
|
armTimer(status.sessionId, status.directory || directoryHint);
|
|
} else {
|
|
clearTimer(status.sessionId);
|
|
}
|
|
return;
|
|
}
|
|
const userMessage = extractUserMessage(payload);
|
|
if (userMessage) {
|
|
// OpenCode re-emits message.updated for OLD user messages after the
|
|
// session settles (post-completion metadata patches). Only a message
|
|
// created after the timer was armed means the user actually moved on.
|
|
const armed = timers.get(userMessage.sessionId);
|
|
if (armed && userMessage.createdAt >= armed.armedAt) {
|
|
clearTimer(userMessage.sessionId);
|
|
}
|
|
}
|
|
};
|
|
|
|
const stop = () => {
|
|
stopped = true;
|
|
for (const { timer } of timers.values()) {
|
|
clearTimeout(timer);
|
|
}
|
|
timers.clear();
|
|
};
|
|
|
|
return { processPayload, stop };
|
|
};
|