ptbk 0.112.0-126 → 0.112.0-128

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 +5 -5
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -398,7 +398,7 @@ Prompts marked with `[-]` are not ready yet, prompts containing `@@@` are treate
398
398
  - **Multi-runner execution:** `openai-codex`, `github-copilot`, `cline`, `claude-code`, `opencode`, `gemini`
399
399
  - **Context injection:** `--agent agents/coding/developer.book --context AGENTS.md` or inline extra instructions
400
400
  - **Reasoning control:** `--thinking-level low|medium|high|xhigh` for supported runners
401
- - **Interactive or unattended runs:** default wait mode, or `--no-wait` for batch execution
401
+ - **Unattended or interactive runs:** default auto mode, or `--no-auto` to wait for user confirmation before each prompt
402
402
  - **Git safety:** clean working tree check by default, optional `--ignore-git-changes`
403
403
  - **Opt-in remote pushes:** commits stay local unless you explicitly pass `--auto-push`
404
404
  - **Prompt triage:** `--priority` to process only more important tasks first
@@ -420,7 +420,7 @@ npx ts-node ./src/cli/test/ptbk.ts coder run --harness github-copilot --model gp
420
420
 
421
421
  npx ts-node ./src/cli/test/ptbk.ts coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --agent agents/coding/developer.book --context AGENTS.md --auto-push
422
422
 
423
- npx ts-node ./src/cli/test/ptbk.ts coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --agent agents/coding/developer.book --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 --agent agents/coding/developer.book --context AGENTS.md --ignore-git-changes
424
424
 
425
425
  npx ts-node ./src/cli/test/ptbk.ts coder find-refactor-candidates
426
426
 
@@ -446,7 +446,7 @@ ptbk coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh -
446
446
 
447
447
  ptbk coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --agent agents/coding/developer.book --context AGENTS.md --auto-push
448
448
 
449
- ptbk coder run --harness github-copilot --model gpt-5.4 --thinking-level xhigh --agent agents/coding/developer.book --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 --agent agents/coding/developer.book --context AGENTS.md --test npm run test --ignore-git-changes
450
450
 
451
451
  ptbk coder find-refactor-candidates
452
452
 
@@ -476,7 +476,7 @@ ptbk coder verify
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. |
478
478
  | `--thinking-level <level>` | Sets reasoning effort for supported runners. |
479
- | `--no-wait` | Skips interactive pauses between prompts for unattended execution. |
479
+ | `--no-auto` | Waits for user confirmation before each prompt instead of running automatically through the queue. |
480
480
  | `--ignore-git-changes` | Disables the clean-working-tree guard. |
481
481
  | `--priority <n>` | Runs only prompts at or above the given priority. |
482
482
  | `--dry-run` | Prints which prompts are ready instead of executing them. |
@@ -489,7 +489,7 @@ ptbk coder verify
489
489
  1. Initialize once with `ptbk coder init`.
490
490
  2. Customize `prompts/templates/*.md` if needed, then create or write prompt files in `prompts/`.
491
491
  3. Customize the starter `AGENTS.md` with repository-specific instructions, then pass `--agent agents/coding/developer.book --context AGENTS.md`.
492
- 4. Run one prompt at a time interactively, or use `--no-wait` for unattended batches.
492
+ 4. Run unattended batches by default, or pass `--no-auto` to confirm each prompt interactively.
493
493
  5. Finish with `ptbk coder verify` so resolved prompts are archived and broken ones get explicit repair follow-ups.
494
494
 
495
495
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ptbk",
3
- "version": "0.112.0-126",
3
+ "version": "0.112.0-128",
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-126"
94
+ "@promptbook/core": "0.112.0-128"
95
95
  },
96
96
  "dependencies": {
97
- "promptbook": "0.112.0-126"
97
+ "promptbook": "0.112.0-128"
98
98
  },
99
99
  "bin": {
100
100
  "ptbk": "bin/promptbook-cli-proxy.js"