feat: add admin CLI for project management

- User management (list, create, delete, reset-password)
- Data CRUD for all 32 collections
- Import/export with JSON support
- Worker/queue management (status, jobs, retry, trigger)
- Webhook management (list, test, deliveries, retry)
- Agent management (list, CRUD, tasks, trigger, activity)
- Health diagnostics (check, errors, stats)
- JSON output mode (--json flag)
- Run via: npm run cli -- <command>
This commit is contained in:
2026-07-24 07:02:11 -04:00
parent ec33544172
commit 6c438eab32
13 changed files with 1644 additions and 3 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "@project-e/cli",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"project-e-cli": "./index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@project-e/db": "^0.1.0",
"@project-e/shared": "*",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/node": "^22.19.0",
"typescript": "^5.9.3"
}
}