mirror of
https://github.com/different-ai/openwork
synced 2026-05-14 19:16:24 +02:00
* feat(agent-lab): add instance manager CLI * fix(server): block opencode permission replies for non-owners * feat(toy-ui): add share + checkpoints * feat(agent-lab): add entrypoints and scheduler sync * feat(server): add agentlab automations and skill delete * feat(toy-ui): add agent lab panels
24 lines
629 B
JSON
24 lines
629 B
JSON
{
|
|
"name": "openwork-agent-lab",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Agent Lab instance manager (toy) for OpenWork",
|
|
"type": "module",
|
|
"bin": {
|
|
"openwork-agent-lab": "dist/bin/openwork-agent-lab"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun src/cli.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"build:bin": "bun build --compile src/cli.ts --outfile dist/bin/openwork-agent-lab",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"bun-types": "^1.3.6",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"packageManager": "pnpm@10.27.0"
|
|
}
|