alink-cli 0.11.13 → 0.11.14
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 +42 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# AgentLink
|
|
2
2
|
|
|
3
|
+
**中文(默认)** · [English](#english)
|
|
4
|
+
|
|
3
5
|
AgentLink 让你随时从手机或浏览器继续使用运行在自己电脑上的 Claude Code、Codex、Gemini、Qwen、Kimi 等编码 agent。
|
|
4
6
|
|
|
5
7
|
**官网:[https://link.harmopath.com/marketing](https://link.harmopath.com/marketing)**
|
|
@@ -8,7 +10,7 @@ AgentLink 让你随时从手机或浏览器继续使用运行在自己电脑上
|
|
|
8
10
|
|
|
9
11
|
- **Local-first:** agent、项目文件和任务记录都保存在你的电脑上。
|
|
10
12
|
- **安全连接:** 设备之间端到端加密,Hub 不保存你的对话。
|
|
11
|
-
- **跨设备继续:**
|
|
13
|
+
- **跨设备继续:** 离开电脑后,仍可查看进度、回复消息、处理授权、操作终端、访问本机服务和加密分享文件。
|
|
12
14
|
- **一个账号:** 登录后自动发现自己的电脑,无需手动配置连接。
|
|
13
15
|
|
|
14
16
|
## 开始使用
|
|
@@ -20,11 +22,46 @@ npm install -g alink-cli
|
|
|
20
22
|
alink
|
|
21
23
|
```
|
|
22
24
|
|
|
25
|
+
`alink` 是推荐的短命令别名;`agentlink` 和 `alink-cli` 也都支持。
|
|
26
|
+
|
|
23
27
|
按提示登录,然后在手机或浏览器打开 [AgentLink 控制台](https://link.harmopath.com/login),即可开始任务或继续已有工作。
|
|
24
28
|
|
|
25
|
-
`alink login` 会打开浏览器,支持使用 GitHub 或已有 AgentLink
|
|
29
|
+
`alink login` 会打开浏览器,支持使用 GitHub 或已有 AgentLink 账号登录并添加当前电脑。脚本或排障时可用 `alink status --json` 和 `alink machines --json` 获取结构化状态。
|
|
30
|
+
|
|
31
|
+
## 联系
|
|
32
|
+
|
|
33
|
+
问题、建议或 TestFlight 申请:[imbistone@gmail.com](mailto:imbistone@gmail.com)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## English
|
|
38
|
+
|
|
39
|
+
AgentLink lets you continue using Claude Code, Codex, Gemini, Qwen, Kimi, and other coding agents running on your own computer from any phone or browser.
|
|
40
|
+
|
|
41
|
+
### Runs locally, ready remotely
|
|
42
|
+
|
|
43
|
+
- **Local-first:** Your agents, project files, and task history stay on your computer.
|
|
44
|
+
- **Secure connection:** Devices use end-to-end encryption, and the Hub does not store your conversations.
|
|
45
|
+
- **Continue anywhere:** Follow progress, reply, approve actions, operate terminals, open local services, and share encrypted files while away from your computer.
|
|
46
|
+
- **One account:** Sign in to find your computers automatically, without manually configuring connections.
|
|
47
|
+
|
|
48
|
+
### Get started
|
|
49
|
+
|
|
50
|
+
Node.js 22.16 or later is required.
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
npm install -g alink-cli
|
|
54
|
+
alink
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
`alink` is the recommended short alias. `agentlink` and `alink-cli` are also supported.
|
|
58
|
+
|
|
59
|
+
Follow the sign-in prompt, then open the [AgentLink console](https://link.harmopath.com/login) on your phone or browser to start a task or continue existing work.
|
|
60
|
+
|
|
61
|
+
Use `alink status --json` and `alink machines --json` for structured local connection and machine status in scripts or troubleshooting.
|
|
62
|
+
|
|
63
|
+
### Contact
|
|
26
64
|
|
|
27
|
-
|
|
28
|
-
daemon 每次连接 Hub 时都会上报当前 `alink-cli` 包版本,供机器列表展示。
|
|
65
|
+
Questions, feedback, or TestFlight access: [imbistone@gmail.com](mailto:imbistone@gmail.com)
|
|
29
66
|
|
|
30
|
-
[GitHub](https://github.com/baichen99/agentlink) · [
|
|
67
|
+
[Website](https://link.harmopath.com/marketing) · [GitHub](https://github.com/baichen99/agentlink) · [Issues](https://github.com/baichen99/agentlink/issues) · MIT
|
package/package.json
CHANGED