Add a packaged-client runtime boundary so the shared UI can talk to local, desktop, remote, and VS Code runtimes through the right transport instead of assuming one same-origin web server. Centralize OpenChamber-owned API access behind RuntimeAPIs, runtimeFetch, and runtime URL helpers, while keeping official OpenCode traffic on the SDK path. Support runtime switching, remote host selection, desktop client credentials, and headless connection links for pairing packaged clients with remote OpenChamber servers. Harden the new auth model by moving long-lived client tokens out of browser URLs, introducing short-lived scoped URL tokens for browser-owned transports, restricting URL-token access to explicit readable/realtime routes, and making client-token management session-scoped or self-scoped as appropriate. Update browser-owned assets and preview proxy flows to work with the split runtime model, including authenticated project icons, preview token propagation, CSP-safe preview bridge injection, and preview proxy auth that survives short-lived URL-token expiry. Tighten Electron security boundaries for packaged clients by gating privileged preload state to trusted origins and requiring explicit confirmation before connect deep-links import or switch remote runtimes. Also refresh agent guidance and project skills so future runtime/API, auth, preview, UI, CLI, settings, locale, and drag-to-reorder work follows the new architecture.
30 lines
953 B
TypeScript
30 lines
953 B
TypeScript
import type { VSCodeAPI } from '@openchamber/ui/lib/api/types';
|
|
import { executeVSCodeCommand, openVSCodeExternalUrl, sendBridgeMessage } from './bridge';
|
|
|
|
export const createVSCodeActionsAPI = (): VSCodeAPI => ({
|
|
async executeCommand(command: string, ...args: unknown[]): Promise<unknown> {
|
|
const result = await executeVSCodeCommand(command, args);
|
|
return result.result;
|
|
},
|
|
|
|
async openAgentManager(): Promise<void> {
|
|
await executeVSCodeCommand('openchamber.openAgentManager');
|
|
},
|
|
|
|
async openExternalUrl(url: string): Promise<void> {
|
|
await openVSCodeExternalUrl(url);
|
|
},
|
|
|
|
async pickFiles(): Promise<unknown> {
|
|
return sendBridgeMessage('api:files/pick');
|
|
},
|
|
|
|
async saveImage(payload: unknown): Promise<unknown> {
|
|
return sendBridgeMessage('api:files/save-image', payload);
|
|
},
|
|
|
|
async saveMarkdown(payload: unknown): Promise<unknown> {
|
|
return sendBridgeMessage('api:files/save-markdown', payload);
|
|
},
|
|
});
|