mirror of
https://github.com/basketikun/infinite-canvas.git
synced 2026-07-30 04:44:28 +08:00
85 lines
3.7 KiB
TypeScript
85 lines
3.7 KiB
TypeScript
import crypto from "node:crypto";
|
|
import fs from "node:fs";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
|
|
export const DEFAULT_PORT = 17371;
|
|
export const CONFIG_DIR = path.join(os.homedir(), ".infinite-canvas");
|
|
export const CONFIG_FILE = path.join(CONFIG_DIR, "canvas-agent.json");
|
|
export const VERSION = readPackageVersion();
|
|
export const AGENT_PROMPT = fs.readFileSync(new URL("../agent-instructions.md", import.meta.url), "utf8");
|
|
const initializedWorkspaces = new Set<string>();
|
|
|
|
export type SiteWorkspaceConfig = { workspacePath: string; activeThreadId?: string; pinnedThreadIds?: string[] };
|
|
export type CanvasAgentConfig = { url: string; token: string; origins?: string[]; workspace?: SiteWorkspaceConfig };
|
|
|
|
/** 读取本地 Canvas Agent 配置,不存在时生成默认配置。 */
|
|
export function loadConfig(create = false): CanvasAgentConfig {
|
|
try {
|
|
return JSON.parse(fs.readFileSync(CONFIG_FILE, "utf8")) as CanvasAgentConfig;
|
|
} catch {
|
|
const config = { url: `http://127.0.0.1:${Number(process.env.PORT) || DEFAULT_PORT}`, token: crypto.randomBytes(18).toString("hex") };
|
|
if (create) saveConfig(config);
|
|
return config;
|
|
}
|
|
}
|
|
|
|
/** 将 Canvas Agent 配置写入用户配置目录。 */
|
|
export function saveConfig(config: CanvasAgentConfig) {
|
|
fs.mkdirSync(CONFIG_DIR, { recursive: true });
|
|
fs.writeFileSync(CONFIG_FILE, JSON.stringify(config, null, 2));
|
|
}
|
|
|
|
/** 确保站点级 Codex 工作空间存在并已初始化。 */
|
|
export function ensureSiteWorkspace(config: CanvasAgentConfig) {
|
|
const current = config.workspace;
|
|
if (current?.workspacePath) {
|
|
const workspacePath = resolveWorkspacePath(current.workspacePath);
|
|
initializeWorkspace(workspacePath);
|
|
return { ...current, workspacePath };
|
|
}
|
|
const workspacePath = path.join(CONFIG_DIR, "codex-workspaces", "site");
|
|
config.workspace = { workspacePath };
|
|
initializeWorkspace(workspacePath);
|
|
saveConfig(config);
|
|
return { workspacePath };
|
|
}
|
|
|
|
/** 更新站点级 Codex 工作空间配置。 */
|
|
export function updateSiteWorkspace(config: CanvasAgentConfig, patch: Partial<SiteWorkspaceConfig>) {
|
|
const current = ensureSiteWorkspace(config);
|
|
const workspacePath = patch.workspacePath ? resolveWorkspacePath(patch.workspacePath) : current.workspacePath;
|
|
const next = { ...current, ...patch, workspacePath };
|
|
config.workspace = { workspacePath: next.workspacePath, activeThreadId: next.activeThreadId, pinnedThreadIds: next.pinnedThreadIds };
|
|
initializeWorkspace(workspacePath);
|
|
saveConfig(config);
|
|
return config.workspace;
|
|
}
|
|
|
|
/** 创建工作空间目录并写入默认 AGENTS.md。 */
|
|
function initializeWorkspace(workspacePath: string) {
|
|
if (initializedWorkspaces.has(workspacePath)) return;
|
|
fs.mkdirSync(workspacePath, { recursive: true });
|
|
const instructionsFile = path.join(workspacePath, "AGENTS.md");
|
|
const current = fs.existsSync(instructionsFile) ? fs.readFileSync(instructionsFile, "utf8") : "";
|
|
if (!current || current.startsWith("# Infinite Canvas Agent")) fs.writeFileSync(instructionsFile, AGENT_PROMPT);
|
|
initializedWorkspaces.add(workspacePath);
|
|
}
|
|
|
|
/** 将用户输入的工作空间路径解析为绝对路径。 */
|
|
function resolveWorkspacePath(value: string) {
|
|
if (value === "~") return os.homedir();
|
|
if (value.startsWith("~/")) return path.join(os.homedir(), value.slice(2));
|
|
return path.resolve(value);
|
|
}
|
|
|
|
/** 从当前包信息中读取 Canvas Agent 版本号。 */
|
|
function readPackageVersion() {
|
|
try {
|
|
const pkg = JSON.parse(fs.readFileSync(new URL("../package.json", import.meta.url), "utf8")) as { version?: string };
|
|
return pkg.version || "0.0.0";
|
|
} catch {
|
|
return "0.0.0";
|
|
}
|
|
}
|