@pheem49/mint 1.4.2 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/GUIDE_TH.md +113 -0
  2. package/README.md +267 -78
  3. package/assets/CLI_Screen.png +0 -0
  4. package/main.js +76 -890
  5. package/mint-cli-logic.js +3 -107
  6. package/mint-cli.js +594 -29
  7. package/models/Shiroko_Model/Shiroko/Shiroko_Core/72d86db84cfa9730b894c241fd24c0db.png +0 -0
  8. package/models/Shiroko_Model/Shiroko/Shiroko_Core/items_pinned_to_model.json +14 -0
  9. package/models/Shiroko_Model/Shiroko/Shiroko_Core//345/221/206/347/214/253.exp3.json +10 -0
  10. package/models/Shiroko_Model/Shiroko/Shiroko_Core//345/221/206/347/214/253/347/234/274/347/217/240/346/221/207/346/231/203.exp3.json +15 -0
  11. package/models/Shiroko_Model/Shiroko/Shiroko_Core//345/233/264/350/243/231.exp3.json +10 -0
  12. package/models/Shiroko_Model/Shiroko/Shiroko_Core//346/213/215/347/205/247.exp3.json +50 -0
  13. package/models/Shiroko_Model/Shiroko/Shiroko_Core//346/213/277/347/254/224.exp3.json +10 -0
  14. package/models/Shiroko_Model/Shiroko/Shiroko_Core//347/202/271/344/270/200/344/270/213.exp3.json +10 -0
  15. package/models/Shiroko_Model/Shiroko/Shiroko_Core//347/214/253/345/222/252/346/273/244/351/225/234.exp3.json +10 -0
  16. package/models/Shiroko_Model/Shiroko/Shiroko_Core//347/234/274/351/225/234.exp3.json +10 -0
  17. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.4096/texture_00.png +0 -0
  18. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.4096/texture_01.png +0 -0
  19. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.4096/texture_02.png +0 -0
  20. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.4096/texture_03.png +0 -0
  21. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.cdi3.json +1498 -0
  22. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.moc3 +0 -0
  23. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.model3.json +47 -0
  24. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.physics3.json +6658 -0
  25. package/models/Shiroko_Model/Shiroko/Shiroko_Core//351/235/242/351/245/2740.vtube.json +1299 -0
  26. package/models/Shiroko_Model/Shiroko//342/232/241/351/253/230/344/272/256/342/232/241/344/275/277/347/224/250/346/225/231/347/250/213/344/270/216/346/263/250/346/204/217/344/272/213/351/241/271.txt +23 -0
  27. package/package.json +37 -4
  28. package/src/AI_Brain/Gemini_API.js +223 -65
  29. package/src/AI_Brain/autonomous_brain.js +11 -0
  30. package/src/AI_Brain/behavior_memory.js +26 -5
  31. package/src/AI_Brain/headless_agent.js +4 -0
  32. package/src/AI_Brain/knowledge_base.js +61 -8
  33. package/src/AI_Brain/memory_store.js +354 -10
  34. package/src/Automation_Layer/file_operations.js +1 -1
  35. package/src/CLI/chat_router.js +20 -7
  36. package/src/CLI/chat_ui.js +596 -825
  37. package/src/CLI/code_agent.js +347 -56
  38. package/src/CLI/gmail_auth.js +210 -0
  39. package/src/CLI/image_input.js +90 -0
  40. package/src/CLI/list_features.js +2 -0
  41. package/src/CLI/onboarding.js +364 -55
  42. package/src/CLI/updater.js +210 -0
  43. package/src/Channels/brave_search_bridge.js +35 -0
  44. package/src/Channels/discord_bridge.js +68 -0
  45. package/src/Channels/google_search_bridge.js +38 -0
  46. package/src/Channels/line_bridge.js +60 -0
  47. package/src/Channels/slack_bridge.js +53 -0
  48. package/src/Channels/telegram_bridge.js +49 -0
  49. package/src/Channels/whatsapp_bridge.js +55 -0
  50. package/src/Command_Parser/parser.js +12 -1
  51. package/src/Plugins/gmail.js +251 -0
  52. package/src/Plugins/google_calendar.js +245 -19
  53. package/src/Plugins/notion.js +256 -0
  54. package/src/System/action_executor.js +178 -0
  55. package/src/System/bridge_manager.js +76 -0
  56. package/src/System/chat_history_manager.js +23 -5
  57. package/src/System/config_manager.js +71 -7
  58. package/src/System/custom_workflows.js +31 -2
  59. package/src/System/google_tts_urls.js +51 -0
  60. package/src/System/granular_automation.js +122 -53
  61. package/src/System/ipc_handlers.js +238 -0
  62. package/src/System/proactive_loop.js +153 -0
  63. package/src/System/safety_manager.js +273 -0
  64. package/src/System/sandbox_runner.js +182 -0
  65. package/src/System/screen_capture.js +175 -0
  66. package/src/System/system_automation.js +127 -81
  67. package/src/System/system_info.js +70 -0
  68. package/src/System/task_manager.js +15 -5
  69. package/src/System/tool_registry.js +280 -0
  70. package/src/System/window_manager.js +212 -0
  71. package/src/UI/live2d_manager.js +368 -0
  72. package/src/UI/renderer.js +208 -24
  73. package/src/UI/settings.html +24 -0
  74. package/src/UI/settings.js +14 -4
  75. package/src/UI/styles.css +466 -32
  76. package/.codex +0 -0
  77. package/docs/assets/Agent_Mint.png +0 -0
  78. package/docs/assets/CLI_Screen.png +0 -0
  79. package/docs/assets/Settings.png +0 -0
  80. package/docs/assets/icon.png +0 -0
  81. package/docs/index.html +0 -132
  82. package/docs/style.css +0 -579
  83. package/index.html +0 -16
  84. package/src/UI/index.html +0 -126
  85. package/tech_news.txt +0 -3
  86. package/test_knowledge.txt +0 -3
  87. package/tests/agent_orchestrator.test.js +0 -41
  88. package/tests/chat_router.test.js +0 -42
  89. package/tests/code_agent.test.js +0 -69
  90. package/tests/config_manager.test.js +0 -141
  91. package/tests/docker.test.js +0 -46
  92. package/tests/file_operations.test.js +0 -57
  93. package/tests/memory_store.test.js +0 -185
  94. package/tests/provider_routing.test.js +0 -67
  95. package/tests/spotify.test.js +0 -201
  96. package/tests/system_monitor.test.js +0 -37
  97. package/tests/workspace_manager.test.js +0 -56
@@ -0,0 +1,23 @@
1
+ 免费模型、免费发布,禁止转手、倒卖、免费模型、免费发布,禁止转手、倒卖、免费模型、免费发布,禁止转手、倒卖、
2
+
3
+ 本模型开放直播收益权利 可以通过直播营业收礼物舰长盈利 可以二创 可以以次形象约稿作为粉丝回馈or舰长礼物
4
+
5
+
6
+ *注意:本形象已注册版权 如过渡期间使用本模型的在制作属于私人的新形象时不可参考本模型立绘的设计 否则将追究其责任*
7
+
8
+
9
+
10
+ 唯一发布渠道为哔哩哔哩账号:神宫凉子 发布者账号UID:13737731
11
+ 唯一发布渠道为哔哩哔哩账号:神宫凉子 发布者账号UID:13737731
12
+ 唯一发布渠道为哔哩哔哩账号:神宫凉子 发布者账号UID:13737731
13
+ 唯一发布渠道为哔哩哔哩账号:神宫凉子 发布者账号UID:13737731
14
+
15
+ 【简单使用流程】
16
+
17
+ 1、通过链接下载压缩包
18
+
19
+ 2、根据自己使用的软件(vts),选择相应模型文件,不同模型文件都经过简单配置,打开即用
20
+
21
+ 3、把模型导入面捕软件,开启面捕即可使用
22
+
23
+ 4、直播推流与面捕软件的具体使用方法,可在b站自行搜索
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pheem49/mint",
3
- "version": "1.4.2",
3
+ "version": "1.5.1",
4
4
  "description": "A powerful Electron-based AI desktop assistant powered by Google Gemini, featuring screen vision, web automation, and proactive suggestions.",
5
5
  "main": "main.js",
6
6
  "scripts": {
@@ -8,11 +8,16 @@
8
8
  "test": "jest --testPathPatterns=tests/",
9
9
  "test:watch": "jest --testPathPatterns=tests/ --watch",
10
10
  "build:linux": "electron-builder --linux",
11
+ "build:mac": "electron-builder --mac",
12
+ "build:win": "electron-builder --win",
13
+ "build:all": "electron-builder --linux --mac --win",
11
14
  "cli": "node mint-cli.js"
12
15
  },
13
16
  "jest": {
14
17
  "testEnvironment": "node",
15
- "testMatch": ["**/tests/**/*.test.js"],
18
+ "testMatch": [
19
+ "**/tests/**/*.test.js"
20
+ ],
16
21
  "collectCoverageFrom": [
17
22
  "src/AI_Brain/memory_store.js",
18
23
  "src/AI_Brain/knowledge_base.js",
@@ -31,25 +36,34 @@
31
36
  "type": "commonjs",
32
37
  "dependencies": {
33
38
  "@google/genai": "^1.44.0",
39
+ "@hazart-pkg/live2d-core": "^1.0.1",
34
40
  "@inkjs/ui": "^2.0.0",
41
+ "@line/bot-sdk": "^11.0.0",
35
42
  "@modelcontextprotocol/sdk": "^1.29.0",
43
+ "@slack/bolt": "^4.7.2",
36
44
  "axios": "^1.13.6",
37
45
  "blessed": "^0.1.81",
38
46
  "cheerio": "^1.2.0",
39
47
  "commander": "^14.0.3",
48
+ "discord.js": "^14.26.4",
40
49
  "dotenv": "^17.3.1",
50
+ "express": "^5.2.1",
41
51
  "framer-motion": "^12.38.0",
42
- "google-tts-api": "^2.0.2",
43
52
  "ink": "^7.0.1",
44
53
  "ink-text-input": "^6.0.0",
45
54
  "inquirer": "^13.4.1",
46
55
  "lucide-react": "^1.9.0",
47
56
  "mammoth": "^1.12.0",
48
57
  "pdf-parse": "^2.4.5",
58
+ "pixi-live2d-display": "^0.4.0",
59
+ "pixi.js": "^6.5.10",
49
60
  "puppeteer": "^24.38.0",
61
+ "qrcode-terminal": "^0.12.0",
50
62
  "react": "^19.2.5",
51
63
  "react-dom": "^19.2.5",
52
- "xlsx": "^0.18.5"
64
+ "read-excel-file": "^9.0.9",
65
+ "telegraf": "^4.16.3",
66
+ "whatsapp-web.js": "^1.34.7"
53
67
  },
54
68
  "devDependencies": {
55
69
  "@vitejs/plugin-react": "^6.0.1",
@@ -76,6 +90,25 @@
76
90
  ],
77
91
  "category": "Utility"
78
92
  },
93
+ "mac": {
94
+ "icon": "assets/icon.png",
95
+ "target": [
96
+ "dmg",
97
+ "zip"
98
+ ],
99
+ "category": "public.app-category.productivity"
100
+ },
101
+ "win": {
102
+ "icon": "assets/icon.png",
103
+ "target": [
104
+ "nsis",
105
+ "portable"
106
+ ]
107
+ },
108
+ "nsis": {
109
+ "oneClick": false,
110
+ "allowToChangeInstallationDirectory": true
111
+ },
79
112
  "deb": {
80
113
  "packageName": "mint-ai",
81
114
  "artifactName": "mint-ai_${version}_${arch}.${ext}"