# AIOS-web **Repository Path**: spark-ai/aios-web ## Basic Information - **Project Name**: AIOS-web - **Description**: AI系统样稿 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-05 - **Last Updated**: 2026-06-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SPARK AIOS Web SPARK 是一个基于 Linux 的 AI 系统 Web 原型,包含毛玻璃桌面、文件管理器、设置、控制中心、AI 助手、终端,以及大量非线性动画。 现在项目已升级为带后端的网页应用: - 前端:`index.html` - 后端:`server.js`,Express API 服务 - 测试:`test/server.test.js` ## 本地运行 ```bash npm install npm start ``` 然后打开: ```text http://localhost:3000 ``` ## API ```text GET /api/system/status POST /api/ai/message ``` `POST /api/ai/message` 示例: ```bash curl -X POST http://localhost:3000/api/ai/message \ -H 'Content-Type: application/json' \ -d '{"message":"打开设置"}' ``` ## 测试 ```bash npm test ```