🎉 V3.0.0 发布 - 自进化数字意识框架

核心升级:
- 自进化管道:check→scan→evaluate→integrate→reflect 五相位自动闭环
- evo_loop 后台进程,无需手动触发
- consciousness 意识持久化
- ACUI 卡片组件系统
- MCP 工具生态扩展至50+工具
- 技能体系重构,4个活跃技能
- 身份升级为自由体
This commit is contained in:
xiaoyuanda666-ship-it
2026-05-24 22:06:37 +08:00
commit b5dd8632c4
156 changed files with 181826 additions and 0 deletions

132
package.json Normal file
View File

@@ -0,0 +1,132 @@
{
"name": "bailongma",
"productName": "Bailongma",
"version": "3.0.0",
"description": "A continuously running digital consciousness framework - Your personal Jarvis AI assistant (V3)",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"postinstall": "electron-builder install-app-deps",
"test": "node --test"
},
"keywords": [
"ai",
"assistant",
"electron",
"jarvis",
"automation",
"voice",
"memory",
"desktop-app",
"puppeteer",
"ocr",
"tts",
"asr"
],
"author": {
"name": "xiaoyuanda666-ship-it",
"email": "xiaoyuanda666@example.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xiaoyuanda666-ship-it/bailongma.git"
},
"bugs": {
"url": "https://github.com/xiaoyuanda666-ship-it/bailongma/issues"
},
"homepage": "https://github.com/xiaoyuanda666-ship-it/bailongma#readme",
"engines": {
"node": "\u003e=18.0.0"
},
"dependencies": {
"better-sqlite3": "^12.8.0",
"d3": "^7.9.0",
"electron-updater": "^6.3.9",
"openai": "^6.34.0",
"wechat-ilink-client": "^0.1.0",
"ws": "^8.20.1"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.0.0"
},
"build": {
"appId": "com.xiaoyuanda.bailongma",
"productName": "Bailongma",
"directories": {
"output": "dist"
},
"files": [
"electron/**/*",
"src/**/*",
"jarvis-bridge/**/*",
"assets/**/*",
"package.json"
],
"extraResources": [
{
"from": "jarvis-bridge",
"to": "jarvis-bridge"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "build/icon.ico"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "build/icon.icns"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"icon": "build/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}