@@ -214,11 +214,11 @@ Each engine runs in an isolated environment:
214214``` typescript
215215{
216216 // App-internal dependencies injected
217- PATH : ' ~/.nuwax-agent /node_modules/.bin:~/.nuwax-agent /bin:$PATH' ,
218- NODE_PATH : ' ~/.nuwax-agent /node_modules' ,
217+ PATH : ' ~/.nuwaxbot /node_modules/.bin:~/.nuwaxbot /bin:$PATH' ,
218+ NODE_PATH : ' ~/.nuwaxbot /node_modules' ,
219219
220220 // Isolated home
221- HOME : ' /tmp/nuwax-agent -run-xxx' ,
221+ HOME : ' /tmp/nuwaxbot -run-xxx' ,
222222 XDG_CONFIG_HOME : ' /tmp/.../.config' ,
223223 CLAUDE_CONFIG_DIR : ' /tmp/.../.claude' ,
224224 NUWAXCODE_CONFIG_DIR : ' /tmp/.../.nuwaxcode' ,
@@ -299,34 +299,34 @@ permissionManager.approveRequest(requestId, alwaysAllow);
299299| ** nuwax-file-server** | npm-local | File service |
300300| ** claude-code-acp-ts** | npm-local | Claude Code ACP implementation |
301301| ** nuwaxcode** | npm-local | Nuwaxcode ACP implementation |
302- | ** nuwax-mcp-stdio-proxy** | npm ^1.0.0 + npm-local | MCP 聚合代理;应用依赖自带,也可在 ~ /.nuwax-agent /node_modules 安装覆盖 |
302+ | ** nuwax-mcp-stdio-proxy** | npm ^1.0.0 + npm-local | MCP 聚合代理;应用依赖自带,也可在 ~ /.nuwaxbot /node_modules 安装覆盖 |
303303
304304> ** Note** : Node.js is NOT a required dependency — Electron bundles its own Node runtime.
305305
306306### Installation Locations
307307
308308```
309- ~/.nuwax-agent /
309+ ~/.nuwaxbot /
310310├── engines/ # Agent engines
311311├── workspaces/ # Session workspaces
312312├── node_modules/ # Local npm packages
313313│ ├── .bin/ # Executable symlinks (injected into PATH)
314314│ └── mcp-servers # MCP servers (isolated)
315315├── bin/ # App binaries
316316├── logs/ # Application logs
317- └── nuwax-agent .db # SQLite database
317+ └── nuwaxbot .db # SQLite database
318318```
319319
320- > ** Important** : All data is stored under ` ~/.nuwax-agent / ` . The Electron ` app.getPath('userData') ` path is NOT used.
320+ > ** Important** : All data is stored under ` ~/.nuwaxbot / ` . The Electron ` app.getPath('userData') ` path is NOT used.
321321
322322### Environment Injection
323323
324324All child processes (engines, file server, lanproxy, agent runner) receive injected environment variables:
325325
326326``` typescript
327327{
328- PATH : ' ~/.nuwax-agent /node_modules/.bin:~/.nuwax-agent /bin:resources/uv/bin:$PATH' ,
329- NODE_PATH : ' ~/.nuwax-agent /node_modules' ,
328+ PATH : ' ~/.nuwaxbot /node_modules/.bin:~/.nuwaxbot /bin:resources/uv/bin:$PATH' ,
329+ NODE_PATH : ' ~/.nuwaxbot /node_modules' ,
330330}
331331```
332332
0 commit comments