@xiaoailazy/coexistree 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +43 -0
  2. package/package.json +33 -0
package/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # @xiaoailazy/coexistree
2
+
3
+ **一键安装** CoExistree Agent 工具链:
4
+
5
+ - [`@xiaoailazy/coexistree-cli`](../cli) — `coexistree` 命令
6
+ - [`@xiaoailazy/coexistree-skills`](../skills) — Agent Skills + `coexistree-skills-install`
7
+
8
+ ## 安装
9
+
10
+ ```bash
11
+ npm install -g @xiaoailazy/coexistree
12
+ ```
13
+
14
+ `postinstall` 会将 Skill 安装到 Cursor / Claude / Codex 的个人技能目录。若需跳过或自定义,可只装子包:
15
+
16
+ ```bash
17
+ npm install -g @xiaoailazy/coexistree-cli
18
+ npm install -g @xiaoailazy/coexistree-skills
19
+ coexistree-skills-install --targets cursor
20
+ ```
21
+
22
+ ## 配置与使用
23
+
24
+ ```bash
25
+ coexistree config initial \
26
+ --api-key "ce_从Web复制" \
27
+ --system-code "order-service" \
28
+ --base-url http://localhost:8080
29
+
30
+ coexistree task list
31
+ coexistree ask --question "变更批次有哪些 stage?"
32
+ ```
33
+
34
+ 详见 [Agent CLI 用户指南](../../docs/user-guide/agent-cli.md)。
35
+
36
+ ## 发布
37
+
38
+ 先发布 `coexistree-cli` 与 `coexistree-skills`,再更新本包 `dependencies` 版本并:
39
+
40
+ ```bash
41
+ cd packages/coexistree
42
+ npm publish --access public
43
+ ```
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@xiaoailazy/coexistree",
3
+ "version": "0.2.0",
4
+ "description": "CoExistree Agent CLI + Skills (meta package — one global install)",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/xiaoailazy/coexistree.git",
9
+ "directory": "packages/coexistree"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "keywords": [
15
+ "coexistree",
16
+ "agent",
17
+ "cli",
18
+ "skills"
19
+ ],
20
+ "dependencies": {
21
+ "@xiaoailazy/coexistree-cli": "0.2.0",
22
+ "@xiaoailazy/coexistree-skills": "0.2.0"
23
+ },
24
+ "scripts": {
25
+ "postinstall": "coexistree-skills-install --targets all"
26
+ },
27
+ "engines": {
28
+ "node": ">=18"
29
+ },
30
+ "files": [
31
+ "README.md"
32
+ ]
33
+ }