ptbk 0.112.0-112 → 0.112.0-113

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.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -416,11 +416,11 @@ npx ts-node ./src/cli/test/ptbk.ts coder generate-boilerplates --template prompt
416
416
 
417
417
  npx ts-node ./src/cli/test/ptbk.ts coder generate-boilerplates --template prompts/templates/agents-server.md
418
418
 
419
- npx ts-node ./src/cli/test/ptbk.ts coder run --agent github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md
419
+ npx ts-node ./src/cli/test/ptbk.ts coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md
420
420
 
421
- npx ts-node ./src/cli/test/ptbk.ts coder run --agent github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --auto-push
421
+ npx ts-node ./src/cli/test/ptbk.ts coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --auto-push
422
422
 
423
- npx ts-node ./src/cli/test/ptbk.ts coder run --agent github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --ignore-git-changes --no-wait
423
+ npx ts-node ./src/cli/test/ptbk.ts coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --ignore-git-changes --no-wait
424
424
 
425
425
  npx ts-node ./src/cli/test/ptbk.ts coder find-refactor-candidates
426
426
 
@@ -442,11 +442,11 @@ ptbk coder generate-boilerplates
442
442
 
443
443
  ptbk coder generate-boilerplates --template prompts/templates/common.md
444
444
 
445
- ptbk coder run --agent github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --test npm run test
445
+ ptbk coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --test npm run test
446
446
 
447
- ptbk coder run --agent github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --auto-push
447
+ ptbk coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --context AGENTS.md --auto-push
448
448
 
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
449
+ ptbk coder run --harness 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
 
@@ -471,7 +471,7 @@ ptbk coder verify
471
471
 
472
472
  | Flag | Purpose |
473
473
  | -------------------------- | -------------------------------------------------------------------------------------------------- |
474
- | `--agent <name>` | Selects the coding backend. |
474
+ | `--harness <name>` | Selects the coding harness. |
475
475
  | `--model <model>` | Chooses the runner model; required for `openai-codex` and `gemini`, optional for `github-copilot`. |
476
476
  | `--context <text-or-file>` | Appends extra instructions inline or from a file like `AGENTS.md`. |
477
477
  | `--test <command>` | Runs a verification command after each prompt attempt and feeds failing output back for retries. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ptbk",
3
- "version": "0.112.0-112",
3
+ "version": "0.112.0-113",
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-112"
94
+ "@promptbook/core": "0.112.0-113"
95
95
  },
96
96
  "dependencies": {
97
- "promptbook": "0.112.0-112"
97
+ "promptbook": "0.112.0-113"
98
98
  },
99
99
  "bin": {
100
100
  "ptbk": "bin/promptbook-cli-proxy.js"