ptbk 0.112.0-34 → 0.112.0-35
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 +18 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -327,6 +327,24 @@ You can install all of them at once:
|
|
|
327
327
|
npm i ptbk
|
|
328
328
|
```
|
|
329
329
|
|
|
330
|
+
Promptbook also ships coding-agent CLI utilities through `ptbk coder`.
|
|
331
|
+
For full `coder run` options and runner-specific examples, see [`scripts/run-codex-prompts/README.md`](./scripts/run-codex-prompts/README.md).
|
|
332
|
+
|
|
333
|
+
#### `ptbk coder`
|
|
334
|
+
|
|
335
|
+
Locally in this repository:
|
|
336
|
+
|
|
337
|
+
```bash
|
|
338
|
+
npx ts-node ./src/cli/test/ptbk.ts coder run --dry-run
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
In another project with `ptbk` installed:
|
|
342
|
+
|
|
343
|
+
```bash
|
|
344
|
+
npm install ptbk
|
|
345
|
+
npx ptbk coder run --dry-run
|
|
346
|
+
```
|
|
347
|
+
|
|
330
348
|
Or you can install them separately:
|
|
331
349
|
|
|
332
350
|
> ⭐ Marked packages are worth to try first
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ptbk",
|
|
3
|
-
"version": "0.112.0-
|
|
3
|
+
"version": "0.112.0-35",
|
|
4
4
|
"description": "Promptbook: Turn your company's scattered knowledge into AI ready books",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
"zod": "$zod"
|
|
92
92
|
},
|
|
93
93
|
"peerDependencies": {
|
|
94
|
-
"@promptbook/core": "0.112.0-
|
|
94
|
+
"@promptbook/core": "0.112.0-35"
|
|
95
95
|
},
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"promptbook": "0.112.0-
|
|
97
|
+
"promptbook": "0.112.0-35"
|
|
98
98
|
},
|
|
99
99
|
"bin": {
|
|
100
100
|
"ptbk": "bin/promptbook-cli-proxy.js"
|