ai-project-manage-cli 4.0.23 → 5.0.2

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
@@ -1,23 +1,34 @@
1
- ## 前置安装
2
-
3
- ``
4
-
5
1
  ## 安装
6
2
 
7
- `npm install -g ai-project-manage-cli@latest`
3
+ ```bash
4
+ npm install -g ai-project-manage-cli@latest
5
+ ```
8
6
 
9
- ## 更新到最新版
7
+ ## 更新
10
8
 
11
- `apm update`(等价于 `npm install -g ai-project-manage-cli@latest`)
9
+ ```bash
10
+ apm update
11
+ ```
12
12
 
13
13
  ## 登录
14
14
 
15
- `apm login --email=xxxxxxx@whbillion.com --password=123456 --server=http://192.168.10.217:3000`
15
+ ```bash
16
+ apm login --email=you@example.com --password=*** --server=http://127.0.0.1:3000
17
+ ```
18
+
19
+ ## 初始化工作区
16
20
 
17
- ## 初始化
21
+ ```bash
22
+ apm init [--name=我的项目]
23
+ ```
18
24
 
19
- `apm init`
25
+ ## 常用命令
20
26
 
21
- ## 连接服务器
27
+ ```bash
28
+ apm pull <sessionId>
29
+ apm sync-document <sessionId> --file docs/PRD.md
30
+ apm update-skills
31
+ apm branch <sessionId>
32
+ ```
22
33
 
23
- `apm connect`
34
+ 详见仓库根目录 [docs/CLI.md](../../docs/CLI.md)。