Decouple bundled UI from runtime API and add remote instance tooling (#1228)

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.
This commit is contained in:
Bohdan Triapitsyn
2026-06-02 00:43:05 +03:00
committed by GitHub
parent a4314c189b
commit 2031e3b4a8
282 changed files with 16524 additions and 4259 deletions
+26 -9
View File
@@ -1,5 +1,6 @@
import type { OpenChamberProjectAction } from './openchamberConfig';
import { getRegisteredRuntimeAPIs } from '@/contexts/runtimeAPIRegistry';
import { runtimeFetch } from '@/lib/runtime-fetch';
type DevServerInfo = {
command: string;
@@ -76,13 +77,13 @@ export async function detectDevServerCommand(
async function hasStaticIndexHtml(directory: string): Promise<boolean> {
const target = `${directory}/index.html`;
const content = await readOptionalTextFile(target);
const content = await readOptionalTextFile(target, directory);
return typeof content === 'string' && content.trim().length > 0;
}
async function allocatePreviewPort(): Promise<number | null> {
try {
const response = await fetch('/api/system/free-port', { cache: 'no-store' });
const response = await runtimeFetch('/api/system/free-port', { cache: 'no-store' });
if (!response.ok) return null;
const body = await response.json().catch(() => null) as { port?: unknown } | null;
const port = typeof body?.port === 'number' ? body.port : null;
@@ -133,7 +134,7 @@ function findDevScript(scripts: Record<string, string>): string | null {
* For server-side operations, the server's package-manager.js is used.
*/
async function detectPackageManager(directory: string): Promise<PackageManager> {
const packageJsonContent = await readOptionalTextFile(`${directory}/package.json`);
const packageJsonContent = await readOptionalTextFile(`${directory}/package.json`, directory);
if (packageJsonContent) {
try {
const pkg = JSON.parse(packageJsonContent) as { packageManager?: unknown };
@@ -156,7 +157,7 @@ async function detectPackageManager(directory: string): Promise<PackageManager>
];
for (const [fileName, packageManager] of lockfiles) {
const content = await readOptionalTextFile(`${directory}/${fileName}`);
const content = await readOptionalTextFile(`${directory}/${fileName}`, directory);
if (typeof content === 'string' && content.trim().length > 0) {
return packageManager;
}
@@ -165,7 +166,21 @@ async function detectPackageManager(directory: string): Promise<PackageManager>
return 'npm';
}
async function readOptionalTextFile(path: string): Promise<string | null> {
async function readOptionalTextFile(path: string, directory?: string): Promise<string | null> {
if (directory?.trim()) {
try {
const params = new URLSearchParams({ path, directory, optional: 'true' });
const response = await runtimeFetch(`/api/fs/read?${params.toString()}`, {
cache: 'no-store',
});
if (response.ok) {
return response.text();
}
} catch {
// Fall through to the registered files API for runtimes that do not expose HTTP fs routes.
}
}
const runtimeFiles = getRegisteredRuntimeAPIs()?.files;
if (runtimeFiles?.readFile) {
try {
@@ -177,7 +192,7 @@ async function readOptionalTextFile(path: string): Promise<string | null> {
}
try {
const response = await fetch(`/api/fs/read?path=${encodeURIComponent(path)}&optional=true`, {
const response = await runtimeFetch(`/api/fs/read?path=${encodeURIComponent(path)}&optional=true`, {
cache: 'no-store',
});
if (!response.ok) return null;
@@ -192,12 +207,14 @@ async function readOptionalTextFile(path: string): Promise<string | null> {
*/
export async function readPackageJsonScripts(directory: string): Promise<Record<string, string> | null> {
try {
const content = await readOptionalTextFile(`${directory}/package.json`);
const content = await readOptionalTextFile(`${directory}/package.json`, directory);
if (content == null) return null;
const pkg = JSON.parse(content);
return pkg.scripts || null;
const scripts = (pkg as { scripts?: unknown }).scripts;
return scripts && typeof scripts === 'object' && !Array.isArray(scripts)
? scripts as Record<string, string>
: null;
} catch {
return null;
}