cli-blueprint 1.0.1 → 1.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/package.json +4 -3
- package/skill/SKILL.md +4 -0
- package/skill/skill.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cli-blueprint",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
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,8 +8,9 @@
|
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"cli.mjs",
|
|
11
|
-
"
|
|
12
|
-
"
|
|
11
|
+
"README.md",
|
|
12
|
+
"skill/SKILL.md",
|
|
13
|
+
"skill/skill.json"
|
|
13
14
|
],
|
|
14
15
|
"engines": {
|
|
15
16
|
"node": ">=18"
|
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
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"displayName": "Blueprint",
|
|
4
|
+
"description": "Blueprint 是一个跨工具的工程规划 CLI,把明确目标编译为可执行、可追溯、可验收的全站工程蓝图,并通过确定性规则检查每个节点、分支、合同、任务与验收闭环。默认由当前 IDE 的多智能体协同推演,也可连接用户自行安装的本地 Hermes;平台不托管模型密钥。",
|
|
5
5
|
"schemaVersion": "blueprint.skill.request/1.0",
|
|
6
|
-
"
|
|
6
|
+
"endpoint": "https://cli.tax/wvz6zmRWmX",
|
|
7
|
+
"method": "POST",
|
|
8
|
+
"version": "v1.0.2",
|
|
9
|
+
"type": "Skill"
|
|
7
10
|
}
|