ai-project-manage-cli 8.0.2 → 8.0.4
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 +4 -18
- package/dist/index.js +467 -5215
- package/dist/webide-message-worker.js +372 -539
- package/package.json +3 -10
- package/template/AGENTS.webide.md +3 -3
- package/template/rules/webide_terminal.md +25 -18
- package/template/skills/webide-run-retro/SKILL.md +103 -0
- package/template/skills/webide-run-retro/attribution.md +26 -0
- package/template/skills/webide-run-retro/scripts/inspect-run.mjs +335 -0
package/README.md
CHANGED
|
@@ -30,29 +30,15 @@ apm init
|
|
|
30
30
|
apm sync-project-documents
|
|
31
31
|
apm sync-project-documents --push
|
|
32
32
|
apm update-skills
|
|
33
|
-
apm deploy test --task <taskId>
|
|
34
33
|
```
|
|
35
34
|
|
|
36
|
-
##
|
|
35
|
+
## 连接平台
|
|
37
36
|
|
|
38
37
|
```bash
|
|
39
|
-
apm connect
|
|
40
|
-
apm connect --
|
|
41
|
-
apm connect --daemon --server https://your-server.com
|
|
42
|
-
|
|
43
|
-
# 运维
|
|
44
|
-
apm daemon status
|
|
45
|
-
apm daemon logs
|
|
46
|
-
apm daemon logs -f # 随时重新跟踪日志
|
|
47
|
-
apm daemon restart
|
|
48
|
-
apm daemon stop
|
|
49
|
-
apm daemon delete
|
|
50
|
-
|
|
51
|
-
# 备选启动
|
|
52
|
-
apm daemon start
|
|
53
|
-
apm daemon start -f
|
|
38
|
+
apm connect
|
|
39
|
+
apm connect --server https://your-server.com
|
|
54
40
|
```
|
|
55
41
|
|
|
56
|
-
|
|
42
|
+
同一时刻仅允许一个 connect。启动时会自动检测 CLI 更新。
|
|
57
43
|
|
|
58
44
|
`apm connect` 处理完 WebIDE 消息后,会将 `.apm/project/<项目ID>/` 下的项目文档变更推回平台。
|