nexus-agentd 0.1.0 → 0.1.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.
package/README.md CHANGED
@@ -18,6 +18,12 @@ OpenCode / Claude Code / Codex / Pi / OpenClaw
18
18
 
19
19
  ## 安装与启动
20
20
 
21
+ 推荐直接在 AgentNexus 的 **Computer** 页点击 **部署 ACP 网关**。AgentNexus 会通过 SSH
22
+ install-only 安装本包和缺失 Adapter,生成 Token/配置/systemd,并自动注册 Gateway 与逻辑
23
+ Agent,不需要手动导出环境变量。
24
+
25
+ 以下命令用于独立部署、故障恢复或高级配置:
26
+
21
27
  ```bash
22
28
  npm install -g nexus-agentd
23
29
  curl -fsSL \
@@ -243,6 +249,10 @@ workspace 在启动 ACP 子进程前执行:
243
249
  - 不要直接暴露到公网;需要跨网络时在前面部署 HTTPS/mTLS 反向代理。
244
250
  - 使用权限受限的专用系统账号运行 agentd。
245
251
 
252
+ AgentNexus 自动部署时,Token 保存在 `~/.config/agent-nexus/nexus-agentd.env`,配置保存在
253
+ `~/.config/agent-nexus/nexus-agentd.json`,权限均为 `0600`。系统服务优先使用 root 或免密
254
+ sudo 创建;否则在可用时回退到用户 systemd,并在未启用 linger 时返回明确警告。
255
+
246
256
  ## 验证
247
257
 
248
258
  ```bash
@@ -47,7 +47,7 @@ export class AcpProcessRuntime {
47
47
  },
48
48
  clientInfo: {
49
49
  name: 'nexus-agentd',
50
- version: '0.1.0'
50
+ version: '0.1.1'
51
51
  }
52
52
  });
53
53
  if (initialize.protocolVersion !== acp.PROTOCOL_VERSION) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexus-agentd",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Local Nexus Gateway daemon that exposes allowlisted Coding Agents through HTTP/SSE and ACP",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",