@markbrutx/promptbook-cli 0.4.0 → 0.4.1
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/dist/bin/promptbook.js +0 -0
- package/dist/src/run.js +1 -1
- package/package.json +4 -4
- package/src/run.ts +1 -1
package/dist/bin/promptbook.js
CHANGED
|
File without changes
|
package/dist/src/run.js
CHANGED
|
@@ -10,7 +10,7 @@ import { cmdResolve } from "./commands/resolve.js";
|
|
|
10
10
|
import { cmdView } from "./commands/view.js";
|
|
11
11
|
import { cmdWatch } from "./commands/watch.js";
|
|
12
12
|
import { defaultIO } from "./io.js";
|
|
13
|
-
const HELP = `promptbook
|
|
13
|
+
const HELP = `promptbook · compose prompts from reusable fragments
|
|
14
14
|
|
|
15
15
|
Usage:
|
|
16
16
|
promptbook <command> [options]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markbrutx/promptbook-cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Thin terminal surface over @markbrutx/promptbook-core: resolve and ls for agents and CI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"check": "biome check ."
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@markbrutx/promptbook-core": "^0.
|
|
52
|
-
"@markbrutx/promptbook-openrouter": "^0.
|
|
51
|
+
"@markbrutx/promptbook-core": "^0.4.1",
|
|
52
|
+
"@markbrutx/promptbook-openrouter": "^0.4.1",
|
|
53
53
|
"chokidar": "^4.0.3"
|
|
54
54
|
},
|
|
55
55
|
"optionalDependencies": {
|
|
56
|
-
"@markbrutx/promptbook-viewer": "^0.
|
|
56
|
+
"@markbrutx/promptbook-viewer": "^0.4.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@biomejs/biome": "latest",
|
package/src/run.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { cmdView } from "./commands/view.js";
|
|
|
11
11
|
import { cmdWatch } from "./commands/watch.js";
|
|
12
12
|
import { defaultIO, type IO } from "./io.js";
|
|
13
13
|
|
|
14
|
-
const HELP = `promptbook
|
|
14
|
+
const HELP = `promptbook · compose prompts from reusable fragments
|
|
15
15
|
|
|
16
16
|
Usage:
|
|
17
17
|
promptbook <command> [options]
|