arona-agent 1.0.5 → 1.0.7
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.
- package/README.md +5 -4
- package/README_en.md +5 -4
- package/assets/blue-archive/hanako/spine/hanako_spr.json +1453 -964
- package/assets/blue-archive/hanako/voice.mp3 +0 -0
- package/assets/blue-archive/hanako/voice_sovits.mp3 +0 -0
- package/assets/blue-archive/hanako/voice_text.txt +1 -0
- package/assets/blue-archive/koharu/spine/koharu_spr.json +2314 -1539
- package/assets/blue-archive/koharu/voice.mp3 +0 -0
- package/assets/blue-archive/koharu/voice_sovits.mp3 +0 -0
- package/assets/blue-archive/koharu/voice_text.txt +1 -0
- package/bin/arona.mjs +1 -1
- package/package.json +2 -4
- package/pet/agents.cjs +90 -6
- package/pet/main.cjs +1 -1
- package/pet/renderer/renderer.js +1 -1
- package/pet/tools/emotion_map_editor.cjs +233 -0
- package/pet/tools/gallery_capture.cjs +18 -9
- package/pet/tools/gen_sway.cjs +23 -2
- package/src/agent.ts +87 -103
- package/src/agent_registry.ts +6 -2
- package/src/config.ts +7 -1
- package/src/index.ts +6 -4
- package/src/repl.ts +1 -1
- package/src/setup.ts +2 -1
- package/src/tools/emotion_tool.ts +2 -2
- package/src/tools/memory_tool.ts +2 -2
- package/src/tools/skill_tools.ts +2 -2
- package/src/utils/spawn.ts +1 -1
- package/src/voices.ts +4 -0
- package/bin/postinstall-fix.mjs +0 -46
- package/intro.png +0 -0
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# ARONA Agent
|
|
2
2
|
|
|
3
|
-
[English](README_en.md)
|
|
3
|
+
[English](https://github.com/SRC114514/arona-agent/blob/main/README_en.md)
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
> 谁不想在电脑上养一只 ~~香香软软~~ 可可爱爱的阿洛娜呢?
|
|
8
8
|
|
|
9
|
-

|
|
10
10
|
|
|
11
|
-
基于 [Pi SDK](https://www.npmjs.com/package/@earendil-works/pi-coding-agent) 构建的终端对话式 AI Agent,集成 Computer Use
|
|
11
|
+
基于 [Pi SDK](https://www.npmjs.com/package/@earendil-works/pi-coding-agent) 构建的终端对话式 AI Agent,集成 Computer Use、TTS / STT、桌面宠物与持久记忆。
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
@@ -39,7 +39,7 @@ arona voice add [<角色名>] # 不带角色名则进入 TUI 选择未补全
|
|
|
39
39
|
|
|
40
40
|
- **Computer Use**:基于 [cua](https://pypi.org/project/cua/) 。
|
|
41
41
|
- **语音**:非流式 TTS + STT。
|
|
42
|
-
- **桌宠**:透明无边框置顶 Electron 窗口 + 情绪切换 + 瞳孔跟随鼠标 + 头部摇动摸头彩蛋 + 全屏点击/拖尾特效;
|
|
42
|
+
- **桌宠**:透明无边框置顶 Electron 窗口 + 情绪切换 + 瞳孔跟随鼠标 + 头部摇动摸头彩蛋 + 全屏点击/拖尾特效;
|
|
43
43
|
- **多角色群聊**:主 Agent 单窗口、子 Agent 同屏;每轮主 Agent 回复完后子 Agent 依次接话。
|
|
44
44
|
|
|
45
45
|
|
|
@@ -80,6 +80,7 @@ arona voice add [<角色名>] # 不带角色名则进入 TUI 选择未补全
|
|
|
80
80
|
| `cuaApiKey` | Cua API Key | — |
|
|
81
81
|
| `tavilyApiKey` | Tavily API Key | — |
|
|
82
82
|
| `pythonPath` | Python 路径 | `python3` |
|
|
83
|
+
| `autoReadSkills` | 启动时自动从 `~/.agents` 补全缺失的Skill | `true` |
|
|
83
84
|
| `mcpServers` | MCP 服务器 JSON | `{}` |
|
|
84
85
|
|
|
85
86
|
模型名前缀自动检测:若 `model` 不含 `/`,按模型名前缀或 `apiBaseUrl` 域名自动补 `provider/`。
|
package/README_en.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# ARONA Agent
|
|
2
2
|
|
|
3
|
-
[
|
|
3
|
+
[简体中文](README.md)
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-

|
|
8
8
|
|
|
9
|
-
A terminal-based conversational AI Agent built on the [Pi SDK](https://www.npmjs.com/package/@earendil-works/pi-coding-agent), featuring Computer Use,
|
|
9
|
+
A terminal-based conversational AI Agent built on the [Pi SDK](https://www.npmjs.com/package/@earendil-works/pi-coding-agent), featuring Computer Use, TTS / STT, desktop pets and persistent memory.
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
@@ -37,7 +37,7 @@ arona voice add [<character-name>] # omit the name to enter the TUI for missin
|
|
|
37
37
|
|
|
38
38
|
- **Computer Use**: based on [cua](https://pypi.org/project/cua/).
|
|
39
39
|
- **Voice**: Non-streaming TTS (whole-sentence synthesis for natural prosody) + STT.
|
|
40
|
-
- **Desktop pet**: transparent frameless always-on-top Electron window + emotion switching + cursor-following pupils + head-pat easter egg + full-screen click/trail FX
|
|
40
|
+
- **Desktop pet**: transparent frameless always-on-top Electron window + emotion switching + cursor-following pupils + head-pat easter egg + full-screen click/trail FX.
|
|
41
41
|
- **Multi-character group chat**: main agent + sub agents on the same screen. After the main agent replies, sub agents take turns in order.
|
|
42
42
|
|
|
43
43
|
---
|
|
@@ -77,6 +77,7 @@ All configuration lives in the JSON file `~/.arona/settings.json`, mostly genera
|
|
|
77
77
|
| `cuaApiKey` | Cua API key | — |
|
|
78
78
|
| `tavilyApiKey` | Tavily API key | — |
|
|
79
79
|
| `pythonPath` | Python path | `python3` |
|
|
80
|
+
| `autoReadSkills` | Automatically load missing Skills from `~/.agents` on startup | `true` |
|
|
80
81
|
| `mcpServers` | MCP server JSON | `{}` |
|
|
81
82
|
|
|
82
83
|
Model prefix auto-detection: if `model` contains no `/`, a `provider/` prefix is added automatically based on the model name prefix or the `apiBaseUrl` domain.
|