ptbk 0.112.0-73 → 0.112.0-82
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 +9 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -431,28 +431,28 @@ npx ts-node ./src/cli/test/ptbk.ts coder verify
|
|
|
431
431
|
|
|
432
432
|
#### Using `ptbk coder` in an external project
|
|
433
433
|
|
|
434
|
-
If you want to use the workflow in another repository, install the package and invoke the `ptbk` binary.
|
|
434
|
+
If you want to use the workflow in another repository, install the package and invoke the `ptbk` binary directly.
|
|
435
435
|
|
|
436
436
|
```bash
|
|
437
437
|
npm install ptbk
|
|
438
438
|
|
|
439
439
|
ptbk coder init
|
|
440
440
|
|
|
441
|
-
|
|
441
|
+
ptbk coder generate-boilerplates
|
|
442
442
|
|
|
443
|
-
|
|
443
|
+
ptbk coder generate-boilerplates --template prompts/templates/common.md
|
|
444
444
|
|
|
445
|
-
|
|
445
|
+
ptbk coder run --agent github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --test npm run test
|
|
446
446
|
|
|
447
|
-
|
|
447
|
+
ptbk coder run --agent github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --auto-push
|
|
448
448
|
|
|
449
|
-
|
|
449
|
+
ptbk coder run --agent github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --test npm run test --ignore-git-changes --no-wait
|
|
450
450
|
|
|
451
|
-
|
|
451
|
+
ptbk coder find-refactor-candidates
|
|
452
452
|
|
|
453
|
-
|
|
453
|
+
ptbk coder find-refactor-candidates --level xhigh
|
|
454
454
|
|
|
455
|
-
|
|
455
|
+
ptbk coder verify
|
|
456
456
|
```
|
|
457
457
|
|
|
458
458
|
`ptbk coder init` also bootstraps a starter `AGENTS.md`, adds `package.json` scripts for the four main coder commands, adds the shared `/.promptbook` temp ignore to `.gitignore`, and configures `.vscode/settings.json` so pasted images from `prompts/*.md` land in `prompts/screenshots/`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ptbk",
|
|
3
|
-
"version": "0.112.0-
|
|
3
|
+
"version": "0.112.0-82",
|
|
4
4
|
"description": "Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action",
|
|
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-82"
|
|
95
95
|
},
|
|
96
96
|
"dependencies": {
|
|
97
|
-
"promptbook": "0.112.0-
|
|
97
|
+
"promptbook": "0.112.0-82"
|
|
98
98
|
},
|
|
99
99
|
"bin": {
|
|
100
100
|
"ptbk": "bin/promptbook-cli-proxy.js"
|