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
+16
View File
@@ -0,0 +1,16 @@
{
"name": "agentrun",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"check": "tsc --noEmit",
"self-test": "bun run src/selftest/run.ts",
"test": "bun run src/selftest/run.ts",
"cli": "bun scripts/agentrun-cli.ts"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.8.3"
}
}