ai-project-manage-cli 6.0.64 → 7.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 +3 -7
- package/dist/index.js +903 -2223
- package/package.json +1 -1
- package/template/AGENTS.md +10 -21
- package/template/rules/write_doc.md +4 -4
- package/template/skills/apm-apply-change/SKILL.md +9 -11
- package/template/skills/apm-dev/SKILL.md +12 -13
- package/template/skills/apm-diff-review/SKILL.md +5 -5
- package/template/skills/apm-propose/SKILL.md +4 -4
- package/template/skills/apm-recap/SKILL.md +15 -22
- package/template/skills/apm-recap/recap-template.md +7 -7
- package/template/skills/apm-review/SKILL.md +1 -1
- package/template/skills/apm-write-checklist/SKILL.md +4 -4
- package/template/skills/apm-write-frontend-plan/SKILL.md +3 -3
- package/template/skills/apm-write-plan/SKILL.md +13 -13
- package/template/skills/apm-write-prd/SKILL.md +2 -2
- package/template/sessions/.gitkeep +0 -0
package/README.md
CHANGED
|
@@ -25,14 +25,10 @@ apm init [--name=我的项目]
|
|
|
25
25
|
## 常用命令
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
apm
|
|
29
|
-
apm sync-document <sessionId> --file PRD
|
|
30
|
-
apm sync-project-documents
|
|
31
|
-
apm sync-project-documents --push
|
|
28
|
+
apm connect
|
|
32
29
|
apm update-skills
|
|
33
|
-
apm
|
|
30
|
+
apm deploy backend
|
|
31
|
+
apm deploy frontend
|
|
34
32
|
```
|
|
35
33
|
|
|
36
|
-
`apm pull` 会自动将平台登记的**仓库项目文档**同步到 `.apm/project/`(含 `manifest.json`)。Agent 修改 `.apm/project/` 下文件后,`apm connect` 处理完消息会自动推回平台。
|
|
37
|
-
|
|
38
34
|
详见仓库根目录 [docs/CLI.md](../../docs/CLI.md)。
|