cli-blueprint 1.0.2 → 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 +3 -23
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
#
|
|
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
|
|
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
|
-
|
|
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.
|
|
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": {
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": ">=18"
|
|
17
17
|
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/88208555/blueprint-clitax.git"
|
|
21
|
+
},
|
|
18
22
|
"license": "UNLICENSED",
|
|
19
23
|
"keywords": [
|
|
20
24
|
"cli.tax",
|