Initial commit

This commit is contained in:
liujing
2026-07-16 15:42:50 +08:00
commit 535b03712e
33 changed files with 7893 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "agent-session-manager",
"version": "1.0.0",
"private": true,
"description": "智能体观测中心 - 本地多引擎 AI 会话管理工具",
"scripts": {
"install:all": "cd backend && npm install && cd ../frontend && npm install",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"dev": "concurrently -n BE,FE -c cyan,green \"npm run dev:backend\" \"npm run dev:frontend\"",
"build:frontend": "cd frontend && npm run build",
"start": "cd backend && npm start",
"build": "npm run build:frontend"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}