Files
zclaw/package.json
iven 045e9cef5b feat: initialize ZCLAW project with core systems and Tauri desktop
- Created backend core systems:
  - Remote Execution System (远程执行系统)
  - Task Orchestration Engine (任务编排引擎)
  - Persistent Memory System (持续记忆系统)
  - Proactive Service System (主动服务系统)

- Created Tauri desktop app:
  - Three-column layout based on AutoClaw design
  - React + TypeScript + Tailwind CSS
  - Zustand state management
  - Lucide React icons

- Components:
  - Sidebar (Agent list, IM channels, scheduled tasks)
  - ChatArea (Chat interface with message bubbles)
  - RightPanel (Task progress, statistics, next actions)

Next: Test Tauri dev server and integrate with OpenClaw backend
2026-03-11 22:06:07 +08:00

32 lines
744 B
JSON

{
"name": "zclaw",
"version": "0.1.0",
"description": "ZCLAW - AI Agent Platform based on OpenClaw",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"test": "jest"
},
"keywords": ["ai", "agent", "openclaw", "automation"],
"author": "ZCLAW Team",
"license": "MIT",
"dependencies": {
"@openclaw/sdk": "latest",
"bullmq": "^5.0.0",
"ioredis": "^5.3.0",
"better-sqlite3": "^9.4.0",
"sqlite-vec": "^0.1.0",
"node-cron": "^3.0.3",
"koishi": "^4.17.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/better-sqlite3": "^7.6.8",
"typescript": "^5.3.0",
"tsx": "^4.7.0",
"jest": "^29.7.0"
}
}