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 +23 -12
- package/dist/index.js +371 -1446
- package/package.json +4 -13
- package/template/apm.config.json +1 -24
- package/template/deploy/README.md +0 -3
- package/template/skills/apm-apply-change/SKILL.md +0 -191
- package/template/skills/apm-deploy/SKILL.md +0 -135
- package/template/skills/apm-dev/SKILL.md +0 -161
- package/template/skills/apm-propose/SKILL.md +0 -123
- package/template/skills/apm-propose/design-instruction.md +0 -94
- package/template/skills/apm-propose/propose-instruction.md +0 -81
- package/template/skills/apm-propose/specs-instruction.md +0 -114
- package/template/skills/apm-propose/tasks-instruction.md +0 -90
- package/template/skills/apm-refine/SKILL.md +0 -99
- package/template/skills/apm-refine/apm-refine-template.md +0 -73
- package/template/skills/apm-review/SKILL.md +0 -111
- package/template/skills/apm-review/output-template.md +0 -60
- package/template/theater-skills/README.md +0 -13
- package/template/theater-skills/apm-theater-backend/SKILL.md +0 -115
- package/template/theater-skills/apm-theater-backend/apm-theater-api-template.md +0 -146
- package/template/theater-skills/apm-theater-backend/apm-theater-backend-template.md +0 -132
- package/template/theater-skills/apm-theater-dev/SKILL.md +0 -149
- package/template/theater-skills/apm-theater-prd/SKILL.md +0 -98
- package/template/workitems/README.md +0 -20
package/README.md
CHANGED
|
@@ -1,23 +1,34 @@
|
|
|
1
|
-
## 前置安装
|
|
2
|
-
|
|
3
|
-
``
|
|
4
|
-
|
|
5
1
|
## 安装
|
|
6
2
|
|
|
7
|
-
|
|
3
|
+
```bash
|
|
4
|
+
npm install -g ai-project-manage-cli@latest
|
|
5
|
+
```
|
|
8
6
|
|
|
9
|
-
##
|
|
7
|
+
## 更新
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
```bash
|
|
10
|
+
apm update
|
|
11
|
+
```
|
|
12
12
|
|
|
13
13
|
## 登录
|
|
14
14
|
|
|
15
|
-
|
|
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
|
-
|
|
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
|
-
|
|
34
|
+
详见仓库根目录 [docs/CLI.md](../../docs/CLI.md)。
|