cli-blueprint 1.0.1 → 1.0.3

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,9 +1,9 @@
1
- # clitax-wvz6zmRWmX
1
+ # cli-blueprint
2
2
 
3
3
  Install and run the Blueprint skill from [CLI.Tax](https://cli.tax/blueprint).
4
4
 
5
5
  ```bash
6
- npx clitaxio@latest install wvz6zmRWmX
6
+ npx cli-blueprint@latest install
7
7
  ```
8
8
 
9
9
  Installs the Blueprint skill into the current IDE skills directory
@@ -11,27 +11,7 @@ Installs the Blueprint skill into the current IDE skills directory
11
11
  so the IDE agent can discover the protocol and compile goals into
12
12
  implementation-ready engineering blueprints.
13
13
 
14
- ```bash
15
- npx clitaxio@latest run wvz6zmRWmX
16
- ```
17
-
18
- Runs the skill handshake in the terminal: it prints the capability address,
19
- method, and example request so the IDE agent can read the installed SKILL.md
20
- and take the intake questions before calling.
14
+ Source: https://github.com/88208555/blueprint-clitax.git
21
15
 
22
16
  The live endpoint is `https://cli.tax/wvz6zmRWmX` and speaks
23
17
  `blueprint.skill.request/1.0`.
24
-
25
- ## Distribution
26
-
27
- No npm account is required. The installer tarball is hosted on the platform
28
- itself and mirrored to the object storage download folder `cli-downloads/`:
29
-
30
- ```bash
31
- pnpm pack:blueprint
32
- ```
33
-
34
- `scripts/pack-blueprint-cli.mjs` packs this directory into
35
- `apps/web/public/cli-downloads/clitax-wvz6zmRWmX.tgz`; the production deploy
36
- uploads every file in that folder to the object storage bucket under the
37
- dedicated `cli-downloads/` key prefix.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cli-blueprint",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Blueprint skill installer for CLI.Tax: compile one goal into an executable, verifiable engineering blueprint.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,12 +8,17 @@
8
8
  },
9
9
  "files": [
10
10
  "cli.mjs",
11
- "skill",
12
- "README.md"
11
+ "README.md",
12
+ "skill/SKILL.md",
13
+ "skill/skill.json"
13
14
  ],
14
15
  "engines": {
15
16
  "node": ">=18"
16
17
  },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/88208555/blueprint-clitax.git"
21
+ },
17
22
  "license": "UNLICENSED",
18
23
  "keywords": [
19
24
  "cli.tax",
package/skill/SKILL.md CHANGED
@@ -40,6 +40,10 @@ POST JSON to the endpoint with an `input` wrapper:
40
40
  4. Build a Blueprint conforming to `blueprint.ir/1.0`, then call `validate`.
41
41
  5. Fix every validation finding until the report is green, then call `compile-inline` and save the artifacts.
42
42
 
43
+ ## Official catalog hops
44
+
45
+ After `capabilities`, read `officialCatalog`. Default allowlist is official skills. Call another skill only when its capability matches this demand. User-named extras enter only when the user names them; then confirm that skill's capabilities before invoke. Do not call chain-unrelated or self-extended skills.
46
+
43
47
  ## Safety rules
44
48
 
45
49
  - Never send credentials, model keys, provider endpoints, or personal secrets inside the request envelope or `input`.
package/skill/skill.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "blueprint",
3
- "version": "v1.0.0",
4
- "endpoint": "https://cli.tax/wvz6zmRWmX",
3
+ "displayName": "Blueprint",
4
+ "description": "Blueprint 是一个跨工具的工程规划 CLI,把明确目标编译为可执行、可追溯、可验收的全站工程蓝图,并通过确定性规则检查每个节点、分支、合同、任务与验收闭环。默认由当前 IDE 的多智能体协同推演,也可连接用户自行安装的本地 Hermes;平台不托管模型密钥。",
5
5
  "schemaVersion": "blueprint.skill.request/1.0",
6
- "displayName": "Blueprint"
6
+ "endpoint": "https://cli.tax/wvz6zmRWmX",
7
+ "method": "POST",
8
+ "version": "v1.0.2",
9
+ "type": "Skill"
7
10
  }