feat: add v0.1 runtime skeleton

This commit is contained in:
Codex
2026-05-29 10:52:41 +08:00
parent 4b33e67484
commit 5deb9fa7fd
20 changed files with 1238 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import { startManagerServer } from "./server.js";
const port = Number(process.env.PORT ?? process.env.AGENTRUN_MGR_PORT ?? "8080");
const host = process.env.HOST ?? "0.0.0.0";
const started = await startManagerServer({ port, host });
console.log(JSON.stringify({ ok: true, serviceId: "agentrun-mgr", baseUrl: started.baseUrl }));