@bastani/atomic 0.9.4-alpha.9 → 0.9.5-alpha.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.
Files changed (96) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/dist/builtin/cursor/CHANGELOG.md +6 -0
  3. package/dist/builtin/cursor/package.json +2 -2
  4. package/dist/builtin/intercom/CHANGELOG.md +6 -0
  5. package/dist/builtin/intercom/package.json +1 -1
  6. package/dist/builtin/mcp/CHANGELOG.md +6 -0
  7. package/dist/builtin/mcp/package.json +1 -1
  8. package/dist/builtin/subagents/CHANGELOG.md +27 -0
  9. package/dist/builtin/subagents/package.json +1 -1
  10. package/dist/builtin/subagents/src/slash/slash-commands.ts +2 -2
  11. package/dist/builtin/subagents/src/tui/render-result-compact.ts +3 -2
  12. package/dist/builtin/subagents/src/tui/render-result.ts +3 -3
  13. package/dist/builtin/subagents/src/tui/render-widget-graph.ts +4 -3
  14. package/dist/builtin/subagents/src/tui/render-widget.ts +10 -4
  15. package/dist/builtin/web-access/CHANGELOG.md +6 -0
  16. package/dist/builtin/web-access/package.json +1 -1
  17. package/dist/builtin/workflows/CHANGELOG.md +34 -0
  18. package/dist/builtin/workflows/README.md +13 -11
  19. package/dist/builtin/workflows/builtin/goal-ledger.ts +3 -0
  20. package/dist/builtin/workflows/builtin/goal-prompts.ts +15 -4
  21. package/dist/builtin/workflows/builtin/goal-reports.ts +23 -0
  22. package/dist/builtin/workflows/builtin/goal-review.ts +29 -4
  23. package/dist/builtin/workflows/builtin/goal-runner.ts +3 -1
  24. package/dist/builtin/workflows/builtin/goal-schemas.ts +22 -0
  25. package/dist/builtin/workflows/builtin/goal-types.ts +17 -0
  26. package/dist/builtin/workflows/builtin/goal.d.ts +3 -0
  27. package/dist/builtin/workflows/builtin/goal.ts +4 -2
  28. package/dist/builtin/workflows/builtin/index.d.ts +6 -0
  29. package/dist/builtin/workflows/builtin/ralph-core.ts +39 -2
  30. package/dist/builtin/workflows/builtin/ralph-review-gate.ts +29 -4
  31. package/dist/builtin/workflows/builtin/ralph-runner.ts +12 -5
  32. package/dist/builtin/workflows/builtin/ralph.d.ts +3 -0
  33. package/dist/builtin/workflows/builtin/ralph.ts +4 -1
  34. package/dist/builtin/workflows/builtin/shared-prompts.ts +15 -1
  35. package/dist/builtin/workflows/package.json +1 -1
  36. package/dist/builtin/workflows/src/tui/keybindings-adapter.ts +4 -0
  37. package/dist/builtin/workflows/src/tui/overlay-adapter.ts +4 -0
  38. package/dist/builtin/workflows/src/tui/stage-chat-view-input.ts +12 -1
  39. package/dist/builtin/workflows/src/tui/stage-chat-view-state.ts +2 -0
  40. package/dist/builtin/workflows/src/tui/stage-chat-view-types.ts +6 -0
  41. package/dist/builtin/workflows/src/tui/stage-chat-view.ts +4 -0
  42. package/dist/builtin/workflows/src/tui/workflow-attach-pane-types.ts +4 -0
  43. package/dist/builtin/workflows/src/tui/workflow-attach-pane.ts +8 -9
  44. package/dist/core/agent-session-events.d.ts.map +1 -1
  45. package/dist/core/agent-session-events.js +2 -0
  46. package/dist/core/agent-session-events.js.map +1 -1
  47. package/dist/core/agent-session-methods.d.ts +4 -1
  48. package/dist/core/agent-session-methods.d.ts.map +1 -1
  49. package/dist/core/agent-session-methods.js.map +1 -1
  50. package/dist/core/agent-session-tool-registry.d.ts.map +1 -1
  51. package/dist/core/agent-session-tool-registry.js +4 -0
  52. package/dist/core/agent-session-tool-registry.js.map +1 -1
  53. package/dist/core/agent-session.d.ts +4 -1
  54. package/dist/core/agent-session.d.ts.map +1 -1
  55. package/dist/core/agent-session.js +4 -0
  56. package/dist/core/agent-session.js.map +1 -1
  57. package/dist/core/async/format.d.ts +3 -0
  58. package/dist/core/async/format.d.ts.map +1 -0
  59. package/dist/core/async/format.js +50 -0
  60. package/dist/core/async/format.js.map +1 -0
  61. package/dist/core/async/job-manager.d.ts +39 -0
  62. package/dist/core/async/job-manager.d.ts.map +1 -0
  63. package/dist/core/async/job-manager.js +254 -0
  64. package/dist/core/async/job-manager.js.map +1 -0
  65. package/dist/core/async/session-manager.d.ts +18 -0
  66. package/dist/core/async/session-manager.d.ts.map +1 -0
  67. package/dist/core/async/session-manager.js +61 -0
  68. package/dist/core/async/session-manager.js.map +1 -0
  69. package/dist/core/async/types.d.ts +23 -0
  70. package/dist/core/async/types.d.ts.map +1 -0
  71. package/dist/core/async/types.js +2 -0
  72. package/dist/core/async/types.js.map +1 -0
  73. package/dist/core/extensions/loader-virtual-modules.d.ts +11 -0
  74. package/dist/core/extensions/loader-virtual-modules.d.ts.map +1 -1
  75. package/dist/core/extensions/loader-virtual-modules.js +20 -5
  76. package/dist/core/extensions/loader-virtual-modules.js.map +1 -1
  77. package/dist/core/tools/bash-async-execution.d.ts +25 -0
  78. package/dist/core/tools/bash-async-execution.d.ts.map +1 -0
  79. package/dist/core/tools/bash-async-execution.js +71 -0
  80. package/dist/core/tools/bash-async-execution.js.map +1 -0
  81. package/dist/core/tools/bash-async-jobs.d.ts +10 -0
  82. package/dist/core/tools/bash-async-jobs.d.ts.map +1 -1
  83. package/dist/core/tools/bash-async-jobs.js +18 -2
  84. package/dist/core/tools/bash-async-jobs.js.map +1 -1
  85. package/dist/core/tools/bash-async-output.d.ts +3 -1
  86. package/dist/core/tools/bash-async-output.d.ts.map +1 -1
  87. package/dist/core/tools/bash-async-output.js +4 -1
  88. package/dist/core/tools/bash-async-output.js.map +1 -1
  89. package/dist/core/tools/bash.d.ts +10 -4
  90. package/dist/core/tools/bash.d.ts.map +1 -1
  91. package/dist/core/tools/bash.js +20 -38
  92. package/dist/core/tools/bash.js.map +1 -1
  93. package/docs/tools.md +4 -2
  94. package/docs/workflows.md +9 -4
  95. package/npm-shrinkwrap.json +23 -23
  96. package/package.json +2 -2
package/docs/workflows.md CHANGED
@@ -217,7 +217,8 @@ Inputs:
217
217
 
218
218
  | Input | Type | Required | Default | Description |
219
219
  |---|---|---|---|---|
220
- | `objective` | text | yes | — | Goal-runner objective. Include the desired end state, expected outcome, testing/validation instructions, and any explicit done criteria. |
220
+ | `objective` | text | yes | — | Goal-runner objective or delta. Include the desired end state, expected outcome, testing/validation instructions, and any explicit done criteria. |
221
+ | `acceptance_criteria` | text | no | objective | Original immutable task contract that the run must remain consistent with. When launching a follow-up `goal` run from review findings, pass the ORIGINAL task text here so reviewer suggestions cannot drift or contradict the literal contract. |
221
222
  | `max_turns` | number | no | `10` | Maximum worker/review turns before human follow-up is needed. |
222
223
  | `base_branch` | string | no | `origin/main` | Branch reviewers and the optional final stage compare the current code delta against. |
223
224
  | `create_pr` | boolean | no | `false` | Safe-by-default PR creation flag. Omitted or `false` skips the final `pull-request` stage and omits `pr_report`; prompt text alone does not opt in, and only strict `true` authorizes the final `pull-request` stage to attempt provider-appropriate PR/MR/review creation after Goal reaches `complete`. |
@@ -233,11 +234,13 @@ Run examples:
233
234
  /workflow goal objective="Implement the focused docs fix, run the docs validation command, and open a PR when complete" create_pr=true
234
235
  ```
235
236
 
236
- `goal` uses the raw `objective` exactly as supplied as the operative objective recorded in the ledger; it does not run an initial prompt-refinement stage. It creates an OS-temp `goal-ledger.json` artifact, renders goal-continuation context for each worker turn, writes the latest worker receipt to `worker-receipt.md`, and appends receipts, reviewer decisions, blockers, reducer decisions, and lifecycle events to the ledger. Worker and reviewer prompts (and the model-facing ledger artifact) deliberately omit the current turn/attempt number so the worker focuses on completing the objective rather than pacing itself to the workflow budget. The objective is treated as user-provided data, not higher-priority instructions. By default `goal` does not start the final `pull-request` stage, and `pr_report` is omitted. Prompt text alone does not opt in. Pass `create_pr=true` only when you explicitly want the final stage to inspect provider credentials and attempt provider-appropriate PR/MR/review creation, such as GitHub `gh`, Azure Repos `az repos pr create`, or Sapling/Phabricator tooling, after Goal reaches `complete` within `max_turns`. Goal worker and reviewer prompts explicitly tell intermediate stages to ignore PR-creation requests; only the final `pull-request` stage may attempt that handoff.
237
+ `goal` uses the raw `objective` exactly as supplied as the operative objective recorded in the ledger and stores `acceptance_criteria` as the immutable literal contract (defaulting to the objective when omitted); it does not run an initial prompt-refinement stage. It creates an OS-temp `goal-ledger.json` artifact, renders goal-continuation context for each worker turn, writes the latest worker receipt to `worker-receipt.md`, and appends receipts, reviewer decisions, blockers, reducer decisions, and lifecycle events to the ledger. Worker and reviewer prompts (and the model-facing ledger artifact) deliberately omit the current turn/attempt number so the worker focuses on completing the objective rather than pacing itself to the workflow budget. The objective is treated as user-provided data, not higher-priority instructions. By default `goal` does not start the final `pull-request` stage, and `pr_report` is omitted. Prompt text alone does not opt in. Pass `create_pr=true` only when you explicitly want the final stage to inspect provider credentials and attempt provider-appropriate PR/MR/review creation, such as GitHub `gh`, Azure Repos `az repos pr create`, or Sapling/Phabricator tooling, after Goal reaches `complete` within `max_turns`. Goal worker and reviewer prompts explicitly tell intermediate stages to ignore PR-creation requests; only the final `pull-request` stage may attempt that handoff.
237
238
 
238
239
  Write the `objective` like a compact acceptance spec. Say what should exist when the run is done, how you want testing handled, which command(s) or manual checks matter, and what outcome proves completion. The workflow is intentionally lean: it does not first generate an RFC or migration plan, so the developer-supplied objective is where scope, validation, and completion criteria belong.
239
240
 
240
- The worker may claim readiness, but it cannot finalize completion. Workers and reviewers are prompted to verify user-visible behavior end-to-end when practical, using `playwright-cli`-skilled subagents for web/frontend flows that may depend on backend/API behavior and tmux-skilled subagents for TUI or terminal-app scenarios. Goal reviewers also look for any QA E2E video referenced by the ledger or receipt and must inspect the actual video before treating it as proof. Three reviewers independently inspect the ledger, worker receipt, repository state, and diff against `base_branch`; each returns structured JSON with findings, evidence, verification still remaining, and an optional blocker. A TypeScript reducer marks the goal complete only when reviewer quorum approves, marks blocked only when the same dependency/tool blocker repeats for the blocker threshold, continues when evidence is missing, and returns `needs_human` when `max_turns` is exhausted or worker execution fails.
241
+ Goal worker/reviewer prompts treat the objective and acceptance criteria as the sole literal source of truth: if follow-up deltas, language specs, upstream issues, in-repo comments, or best practices conflict with explicit wording, reviewers surface the conflict instead of silently implementing external knowledge. Reviewer findings carry `objective_alignment` (`required_by_objective`, `consistent_with_objective`, `beyond_objective`, or `contradicts_objective`); `beyond_objective` and `contradicts_objective` findings are reported but do not block completion and must not be promoted into follow-up objectives without reconciling them against the acceptance criteria. Review decisions also include `requirements_traceability`, a clause-by-clause evidence map over every explicit objective/acceptance-criteria requirement. Goal approval requires that map to be non-empty and fully `proven`; passing worker-authored tests or snapshots alone is circular evidence unless tied to independent current-state proof.
242
+
243
+ The worker may claim readiness, but it cannot finalize completion. Workers and reviewers are prompted to verify user-visible behavior end-to-end when practical, using `playwright-cli`-skilled subagents for web/frontend flows that may depend on backend/API behavior and tmux-skilled subagents for TUI or terminal-app scenarios. They must assume credentials/auth/environment access exists until concrete checks plus an actual app/flow launch attempt prove otherwise; skipped E2E is valid only when exact attempted commands and observed failure output are recorded. Goal reviewers also look for any QA E2E video referenced by the ledger or receipt and must inspect the actual video before treating it as proof. Three reviewers independently inspect the ledger, worker receipt, repository state, and diff against `base_branch`; each returns structured JSON with findings, evidence, verification still remaining, and an optional blocker. A TypeScript reducer marks the goal complete only when reviewer quorum approves, marks blocked only when the same dependency/tool blocker repeats for the blocker threshold, continues when evidence is missing, and returns `needs_human` when `max_turns` is exhausted or worker execution fails.
241
244
 
242
245
  Result fields:
243
246
 
@@ -248,6 +251,7 @@ Result fields:
248
251
  | `approved` | Whether the reducer reached `complete`. |
249
252
  | `goal_id` | Per-run goal identifier stored in the ledger. |
250
253
  | `objective` | Raw goal objective used by the run. |
254
+ | `acceptance_criteria` | Immutable acceptance criteria used by the run. |
251
255
  | `ledger_path` | OS-temp path to `goal-ledger.json`, including receipts, reviewer decisions, reducer decisions, blockers, and lifecycle events. |
252
256
  | `turns_completed` | Worker/review turns completed. |
253
257
  | `iterations_completed` | Same value as `turns_completed`, retained for status summaries. |
@@ -264,6 +268,7 @@ Inputs:
264
268
  | Input | Type | Required | Default | Description |
265
269
  |---|---|---|---|---|
266
270
  | `prompt` | text | yes | — | Task, feature request, issue summary, or spec path to research, execute, refine, and review. |
271
+ | `acceptance_criteria` | text | no | prompt | Original immutable task contract that the run must remain consistent with. When launching a follow-up `ralph` run from review findings, pass the ORIGINAL task text here so reviewer suggestions cannot drift or contradict the literal contract. |
267
272
  | `max_loops` | number | no | `10` | Maximum research/orchestrate/review iterations before the workflow completes or, when enabled, proceeds to final handoff without reviewer approval. |
268
273
  | `base_branch` | string | no | `origin/main` | Branch reviewers and the optional final stage compare the current code delta against; also used to create a missing worktree. |
269
274
  | `git_worktree_dir` | string | no | `""` | Optional reusable Git worktree root. Empty runs in the invoking checkout; non-empty values run Ralph stages in the created/reused worktree. |
@@ -277,7 +282,7 @@ Run examples:
277
282
  /workflow ralph prompt="Safely implement the API refactor" git_worktree_dir=../atomic-ralph-api-wt base_branch=main
278
283
  ```
279
284
 
280
- Each `ralph` run uses the raw `prompt` exactly as supplied as the operative objective for research, orchestration, and review; it does not run an initial prompt-refinement stage. Each iteration transforms that raw prompt with `/skill:prompt-engineer Transform the following user request into a codebase and online research question which can be thoroughly explored: ...` (`research-prompt-refinement`), researches that transformed question with `/skill:research-codebase ...`, and writes the findings under `research/`. The orchestrator treats that research artifact as its primary implementation context, initializes/updates an OS-temp implementation notes file while generating verifiable evidence for any claims it records in the notes and reviewer artifacts, delegates implementation through sub-agents, and asks three independent reviewers to inspect the patch directly against `base_branch`. The reviewer fan-out runs reviewers on different primary model families (Claude Fable 5, GPT-5.5 Codex, and Gemini 3.1 Pro, with shared fallbacks) so the adversarial review gets cross-model coverage instead of three passes from one model. Ralph's orchestrator and reviewers are prompted to verify user-visible behavior end-to-end when practical, using `playwright-cli`-skilled subagents for web/frontend flows that may depend on backend/API behavior and tmux-skilled subagents for TUI or terminal-app scenarios. For UI-applicable or full-stack changes, the orchestrator runs a `playwright-cli` end-to-end QA pass and records a reviewable proof video (referenced in the implementation notes and surfaced as `qa_video_path`); reviewers receive that path and must inspect the actual video before treating it as proof. When `create_pr=true`, the final `pull-request` stage attaches or links that video to the created PR/MR/review. If reviewers find issues, the next `research-prompt-refinement` and research stages receive the review artifact path so follow-up research can address unresolved findings, and research stages fork from prior research session data when available. The loop stops only when all three reviewers independently approve (each finds no issues) or `max_loops` is reached, so a P0P3 finding from any single reviewer keeps Ralph iterating instead of being out-voted by a majority quorum. By default Ralph does not start the final `pull-request` stage, and `pr_report` is omitted. Prompt text alone does not opt in. Pass `create_pr=true` only when you explicitly want the final `pull-request` stage to inspect provider credentials and attempt provider-appropriate PR/MR/review creation, such as GitHub `gh`, Azure Repos `az repos pr create`, or Sapling/Phabricator tooling; Ralph's own PR-creation instructions live in that final stage.
285
+ Each `ralph` run uses the raw `prompt` exactly as supplied as the operative objective for research, orchestration, and review, and stores `acceptance_criteria` as the immutable literal contract (defaulting to the prompt when omitted). Shared literal-contract prompt language forbids adding behaviors, restrictions, or error conditions beyond the prompt/acceptance criteria and requires surfacing conflicts with external knowledge; Ralph does not run an initial prompt-refinement stage. Each iteration transforms that raw prompt with `/skill:prompt-engineer Transform the following user request into a codebase and online research question which can be thoroughly explored: ...` (`research-prompt-refinement`), researches that transformed question with `/skill:research-codebase ...`, and writes the findings under `research/`. The research, orchestrator, and reviewer prompts carry `acceptance_criteria` next to the literal contract, so orchestrators should pass the ORIGINAL task text when launching follow-up Ralph runs from reviewer findings. The orchestrator treats the research artifact as its primary implementation context, initializes/updates an OS-temp implementation notes file while generating verifiable evidence for any claims it records in the notes and reviewer artifacts, delegates implementation through sub-agents, and asks three independent reviewers to inspect the patch directly against `base_branch`. The reviewer fan-out runs reviewers on different primary model families (Claude Fable 5, GPT-5.5 Codex, and Gemini 3.1 Pro, with shared fallbacks) so the adversarial review gets cross-model coverage instead of three passes from one model. Ralph's orchestrator and reviewers are prompted to verify user-visible behavior end-to-end when practical, using `playwright-cli`-skilled subagents for web/frontend flows that may depend on backend/API behavior and tmux-skilled subagents for TUI or terminal-app scenarios. They must assume credentials/auth/environment access exists until concrete checks plus an actual app/flow launch attempt prove otherwise; skipped E2E is valid only when exact attempted commands and observed failure output are recorded. For UI-applicable or full-stack changes, the orchestrator runs a `playwright-cli` end-to-end QA pass and records a reviewable proof video (referenced in the implementation notes and surfaced as `qa_video_path`); reviewers receive that path and must inspect the actual video before treating it as proof. When `create_pr=true`, the final `pull-request` stage attaches or links that video to the created PR/MR/review. If reviewers find issues, the next `research-prompt-refinement` and research stages receive the review artifact path so follow-up research can address unresolved findings, and research stages fork from prior research session data when available. The loop stops only when all three reviewers independently approve or `max_loops` is reached. Ralph findings include the same `objective_alignment` classification used by Goal: `required_by_objective` and `consistent_with_objective` P0/P1/P2 findings block, P3 remains non-blocking, and `beyond_objective`/`contradicts_objective` findings are surfaced but non-blocking so they are not silently converted into new requirements. Ralph review decisions also include `requirements_traceability`, a clause-by-clause evidence map over every explicit prompt/acceptance-criteria requirement; approval requires that map to be non-empty and fully `proven`, and worker-authored tests or snapshots passing are circular evidence unless tied to independent current-state proof. By default Ralph does not start the final `pull-request` stage, and `pr_report` is omitted. Prompt text alone does not opt in. Pass `create_pr=true` only when you explicitly want the final `pull-request` stage to inspect provider credentials and attempt provider-appropriate PR/MR/review creation, such as GitHub `gh`, Azure Repos `az repos pr create`, or Sapling/Phabricator tooling; Ralph's own PR-creation instructions live in that final stage.
281
286
 
282
287
  Set `git_worktree_dir` when you want Ralph's worker stages isolated in a reusable Git worktree. Relative paths resolve from the invoking repository root, existing same-repository worktree roots are reused, and missing paths are created from `base_branch`. Ralph preserves the invoking repo-relative cwd inside the worktree, so launching from `repo/packages/api` with `git_worktree_dir=../repo-wt` runs stages from `../repo-wt/packages/api`.
283
288
 
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@bastani/atomic",
3
- "version": "0.9.4-alpha.9",
3
+ "version": "0.9.5-alpha.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@bastani/atomic",
9
- "version": "0.9.4-alpha.9",
9
+ "version": "0.9.5-alpha.1",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "@bastani/atomic-natives": "0.9.4-alpha.9",
12
+ "@bastani/atomic-natives": "0.9.5-alpha.1",
13
13
  "@bufbuild/protobuf": "^2.12.1",
14
14
  "@earendil-works/pi-agent-core": "^0.80.3",
15
15
  "@earendil-works/pi-ai": "^0.80.3",
@@ -514,16 +514,16 @@
514
514
  }
515
515
  },
516
516
  "node_modules/@bastani/atomic-natives": {
517
- "version": "0.9.4-alpha.9",
518
- "resolved": "https://registry.npmjs.org/@bastani/atomic-natives/-/atomic-natives-0.9.4-alpha.9.tgz",
517
+ "version": "0.9.5-alpha.1",
518
+ "resolved": "https://registry.npmjs.org/@bastani/atomic-natives/-/atomic-natives-0.9.5-alpha.1.tgz",
519
519
  "license": "MIT",
520
520
  "optionalDependencies": {
521
- "@bastani/atomic-natives-darwin-arm64": "0.9.4-alpha.9",
522
- "@bastani/atomic-natives-darwin-x64": "0.9.4-alpha.9",
523
- "@bastani/atomic-natives-linux-arm64-gnu": "0.9.4-alpha.9",
524
- "@bastani/atomic-natives-linux-x64-gnu": "0.9.4-alpha.9",
525
- "@bastani/atomic-natives-win32-arm64-msvc": "0.9.4-alpha.9",
526
- "@bastani/atomic-natives-win32-x64-msvc": "0.9.4-alpha.9"
521
+ "@bastani/atomic-natives-darwin-arm64": "0.9.5-alpha.1",
522
+ "@bastani/atomic-natives-darwin-x64": "0.9.5-alpha.1",
523
+ "@bastani/atomic-natives-linux-arm64-gnu": "0.9.5-alpha.1",
524
+ "@bastani/atomic-natives-linux-x64-gnu": "0.9.5-alpha.1",
525
+ "@bastani/atomic-natives-win32-arm64-msvc": "0.9.5-alpha.1",
526
+ "@bastani/atomic-natives-win32-x64-msvc": "0.9.5-alpha.1"
527
527
  },
528
528
  "engines": {
529
529
  "bun": ">=1.3.14",
@@ -531,8 +531,8 @@
531
531
  }
532
532
  },
533
533
  "node_modules/@bastani/atomic-natives-darwin-arm64": {
534
- "version": "0.9.4-alpha.9",
535
- "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-arm64/-/atomic-natives-darwin-arm64-0.9.4-alpha.9.tgz",
534
+ "version": "0.9.5-alpha.1",
535
+ "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-arm64/-/atomic-natives-darwin-arm64-0.9.5-alpha.1.tgz",
536
536
  "license": "MIT",
537
537
  "os": [
538
538
  "darwin"
@@ -543,8 +543,8 @@
543
543
  "optional": true
544
544
  },
545
545
  "node_modules/@bastani/atomic-natives-darwin-x64": {
546
- "version": "0.9.4-alpha.9",
547
- "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-x64/-/atomic-natives-darwin-x64-0.9.4-alpha.9.tgz",
546
+ "version": "0.9.5-alpha.1",
547
+ "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-x64/-/atomic-natives-darwin-x64-0.9.5-alpha.1.tgz",
548
548
  "license": "MIT",
549
549
  "os": [
550
550
  "darwin"
@@ -555,8 +555,8 @@
555
555
  "optional": true
556
556
  },
557
557
  "node_modules/@bastani/atomic-natives-linux-arm64-gnu": {
558
- "version": "0.9.4-alpha.9",
559
- "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-gnu/-/atomic-natives-linux-arm64-gnu-0.9.4-alpha.9.tgz",
558
+ "version": "0.9.5-alpha.1",
559
+ "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-gnu/-/atomic-natives-linux-arm64-gnu-0.9.5-alpha.1.tgz",
560
560
  "license": "MIT",
561
561
  "os": [
562
562
  "linux"
@@ -570,8 +570,8 @@
570
570
  "optional": true
571
571
  },
572
572
  "node_modules/@bastani/atomic-natives-linux-x64-gnu": {
573
- "version": "0.9.4-alpha.9",
574
- "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-gnu/-/atomic-natives-linux-x64-gnu-0.9.4-alpha.9.tgz",
573
+ "version": "0.9.5-alpha.1",
574
+ "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-gnu/-/atomic-natives-linux-x64-gnu-0.9.5-alpha.1.tgz",
575
575
  "license": "MIT",
576
576
  "os": [
577
577
  "linux"
@@ -585,8 +585,8 @@
585
585
  "optional": true
586
586
  },
587
587
  "node_modules/@bastani/atomic-natives-win32-arm64-msvc": {
588
- "version": "0.9.4-alpha.9",
589
- "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-arm64-msvc/-/atomic-natives-win32-arm64-msvc-0.9.4-alpha.9.tgz",
588
+ "version": "0.9.5-alpha.1",
589
+ "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-arm64-msvc/-/atomic-natives-win32-arm64-msvc-0.9.5-alpha.1.tgz",
590
590
  "license": "MIT",
591
591
  "os": [
592
592
  "win32"
@@ -597,8 +597,8 @@
597
597
  "optional": true
598
598
  },
599
599
  "node_modules/@bastani/atomic-natives-win32-x64-msvc": {
600
- "version": "0.9.4-alpha.9",
601
- "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-x64-msvc/-/atomic-natives-win32-x64-msvc-0.9.4-alpha.9.tgz",
600
+ "version": "0.9.5-alpha.1",
601
+ "resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-x64-msvc/-/atomic-natives-win32-x64-msvc-0.9.5-alpha.1.tgz",
602
602
  "license": "MIT",
603
603
  "os": [
604
604
  "win32"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bastani/atomic",
3
- "version": "0.9.4-alpha.9",
3
+ "version": "0.9.5-alpha.1",
4
4
  "description": "Atomic coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "atomicConfig": {
@@ -77,7 +77,7 @@
77
77
  "prepublishOnly": "bun run clean && bun run build && bun run shrinkwrap"
78
78
  },
79
79
  "dependencies": {
80
- "@bastani/atomic-natives": "0.9.4-alpha.9",
80
+ "@bastani/atomic-natives": "0.9.5-alpha.1",
81
81
  "@bufbuild/protobuf": "^2.12.1",
82
82
  "@earendil-works/pi-agent-core": "^0.80.3",
83
83
  "@earendil-works/pi-ai": "^0.80.3",