Add AgentOS daemon control plane and maintenance tooling

This commit is contained in:
-Puter
2026-07-19 06:29:51 +05:30
parent a37e0cc3c9
commit ec84c52155
621 changed files with 97578 additions and 15 deletions

29
apps/daemon/package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "daemon",
"version": "0.0.0",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build src/index.ts --compile --outfile dist/code-daemon",
"start": "./dist/code-daemon",
"check-types": "tsc --noEmit"
},
"dependencies": {
"@code/backend": "workspace:*",
"@code/env": "workspace:*",
"@code/primitives": "workspace:*",
"@effect/platform-bun": "4.0.0-beta.99",
"@rivet-dev/agentos": "^0.2.7",
"convex": "catalog:",
"effect": "4.0.0-beta.99",
"rivetkit": "0.0.0-stack-feat-rivetkit-forward-inspector-tabs-to-native-plugin-actors-qkwmksyy.d2859b0"
},
"devDependencies": {
"@code/config": "workspace:*",
"@types/bun": "latest",
"@types/node": "^22.13.14",
"typescript": "^6"
}
}