@bastani/atomic 0.8.0-0 → 0.8.1-0
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.8.1-0] - 2026-05-15
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed the published `@bastani/atomic` package manifest so Bun can install it outside the monorepo without resolving private workspace-only bundled packages.
|
|
10
|
+
|
|
11
|
+
## [0.8.0] - 2026-05-15
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added Together AI to built-in provider setup, `/login` API-key auth, and default model resolution ([#3624](https://github.com/earendil-works/pi-mono/pull/3624) by [@Nutlope](https://github.com/Nutlope)).
|
|
16
|
+
- Added Windows ARM64 standalone binary release artifacts ([#4458](https://github.com/earendil-works/pi/pull/4458) by [@brianmichel](https://github.com/brianmichel)).
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Fixed interactive error messages to render with trailing spacing so reload errors do not run into resource listings ([#4510](https://github.com/earendil-works/pi/issues/4510)).
|
|
21
|
+
- Fixed nested code fences in the Termux setup documentation so the example AGENTS.md renders correctly ([#4503](https://github.com/earendil-works/pi/issues/4503)).
|
|
22
|
+
- Fixed tool output expansion while extension confirmation dialogs are focused ([#4429](https://github.com/earendil-works/pi/issues/4429)).
|
|
23
|
+
- Fixed auto-retry for Anthropic streams that end before `message_stop` ([#4433](https://github.com/earendil-works/pi/issues/4433)).
|
|
24
|
+
- Fixed theme sharing across package scopes so extensions do not crash with `Theme not initialized` ([#4333](https://github.com/earendil-works/pi/issues/4333)).
|
|
25
|
+
- Fixed keybinding hints to show Option instead of Alt on macOS ([#4289](https://github.com/earendil-works/pi/issues/4289)).
|
|
26
|
+
- Fixed the interactive update notification to render the changelog as an OSC 8 hyperlink when the terminal supports hyperlinks ([#4280](https://github.com/earendil-works/pi/issues/4280)).
|
|
27
|
+
|
|
5
28
|
## [0.8.0-0] - 2026-05-15
|
|
6
29
|
|
|
7
30
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/atomic",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1-0",
|
|
4
4
|
"description": "Atomic coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"piConfig": {
|
|
@@ -45,6 +45,9 @@
|
|
|
45
45
|
"@earendil-works/pi-agent-core": "^0.74.0",
|
|
46
46
|
"@earendil-works/pi-ai": "^0.74.0",
|
|
47
47
|
"@earendil-works/pi-tui": "^0.74.0",
|
|
48
|
+
"@modelcontextprotocol/ext-apps": "^1.2.2",
|
|
49
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
50
|
+
"@mozilla/readability": "^0.5.0",
|
|
48
51
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
49
52
|
"chalk": "^5.5.0",
|
|
50
53
|
"diff": "^8.0.2",
|
|
@@ -53,16 +56,17 @@
|
|
|
53
56
|
"hosted-git-info": "^9.0.2",
|
|
54
57
|
"ignore": "^7.0.5",
|
|
55
58
|
"jiti": "^2.7.0",
|
|
59
|
+
"linkedom": "^0.16.0",
|
|
56
60
|
"minimatch": "^10.2.3",
|
|
61
|
+
"open": "^10.2.0",
|
|
62
|
+
"p-limit": "^6.1.0",
|
|
57
63
|
"proper-lockfile": "^4.1.2",
|
|
64
|
+
"turndown": "^7.2.0",
|
|
58
65
|
"typebox": "^1.1.24",
|
|
59
66
|
"undici": "^7.19.1",
|
|
67
|
+
"unpdf": "^1.6.2",
|
|
60
68
|
"yaml": "^2.8.2",
|
|
61
|
-
"
|
|
62
|
-
"@bastani/mcp": "workspace:*",
|
|
63
|
-
"@bastani/web-access": "workspace:*",
|
|
64
|
-
"@bastani/intercom": "workspace:*",
|
|
65
|
-
"@bastani/workflows": "workspace:*"
|
|
69
|
+
"zod": "^3.25.0 || ^4.0.0"
|
|
66
70
|
},
|
|
67
71
|
"overrides": {
|
|
68
72
|
"rimraf": "6.1.2",
|