@bastani/atomic 0.9.11-alpha.11 → 0.9.11-alpha.12
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 +7 -0
- package/dist/builtin/intercom/package.json +1 -1
- package/dist/builtin/mcp/package.json +1 -1
- package/dist/builtin/subagents/package.json +1 -1
- package/dist/builtin/web-access/CHANGELOG.md +7 -0
- package/dist/builtin/web-access/package.json +2 -2
- package/dist/builtin/workflows/package.json +1 -1
- package/npm-shrinkwrap.json +33 -33
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.9.11-alpha.12] - 2026-08-03
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed PDF extraction dropping text and streaming `TypeError: Math.sumPrecise is not a function` warnings on Node runtimes that do not implement `Math.sumPrecise`. The `unpdf` dependency was declared as the floating range `^1.6.2`, which resolves to 1.8.0 in a published or global install; that release's bundled PDF.js v6.1 dropped the guarded fallback and calls the builtin unconditionally, so extraction threw per glyph, emitted font-substitution warnings, and silently returned fewer text items. `unpdf` is now exact-pinned to `1.7.0`, the newest release that still ships the fallback, so no install can float to 1.8.0 ([#2141](https://github.com/bastani-inc/atomic/issues/2141)).
|
|
10
|
+
- Upgraded the pinned `unpdf` from 1.6.2 to 1.7.0, which adds `cMapUrl` CJK font support under Node, destroys internally created document proxies and canvas resources, and preserves line breaks in `extractText` with `mergePages`.
|
|
11
|
+
|
|
5
12
|
## [0.9.11-alpha.11] - 2026-08-03
|
|
6
13
|
|
|
7
14
|
### Breaking Changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/intercom",
|
|
3
|
-
"version": "0.9.11-alpha.
|
|
3
|
+
"version": "0.9.11-alpha.12",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Atomic extension providing a private coordination channel between parent and child agent sessions. Fork of: https://github.com/nicobailon/pi-intercom",
|
|
6
6
|
"contributors": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/mcp",
|
|
3
|
-
"version": "0.9.11-alpha.
|
|
3
|
+
"version": "0.9.11-alpha.12",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Atomic extension that adapts MCP (Model Context Protocol) servers into the coding agent. Fork of: https://github.com/nicobailon/pi-mcp-adapter",
|
|
6
6
|
"contributors": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/subagents",
|
|
3
|
-
"version": "0.9.11-alpha.
|
|
3
|
+
"version": "0.9.11-alpha.12",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Atomic extension for delegating tasks to subagents with chains, parallel execution, and background runs. Fork of: https://github.com/nicobailon/pi-subagents",
|
|
6
6
|
"contributors": [
|
|
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.9.11-alpha.12] - 2026-08-03
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Fixed PDF extraction dropping text and streaming `TypeError: Math.sumPrecise is not a function` warnings on Node runtimes that do not implement `Math.sumPrecise`. The `unpdf` dependency was declared as the floating range `^1.6.2`, which resolves to 1.8.0 in a published or global install; that release's bundled PDF.js v6.1 dropped the guarded fallback and calls the builtin unconditionally, so extraction threw per glyph, emitted font-substitution warnings, and silently returned fewer text items. On the reported 17-page arXiv PDF this cost 69 text items and 221 characters. `unpdf` is now exact-pinned to `1.7.0`, the newest release that still ships the fallback, so no install can float to 1.8.0 ([#2141](https://github.com/bastani-inc/atomic/issues/2141)).
|
|
12
|
+
- Upgraded the pinned `unpdf` from 1.6.2 to 1.7.0, which adds `cMapUrl` CJK font support under Node, destroys internally created document proxies and canvas resources, and preserves line breaks in `extractText` with `mergePages`.
|
|
13
|
+
|
|
7
14
|
## [0.9.11-alpha.11] - 2026-08-03
|
|
8
15
|
|
|
9
16
|
### Fixed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/web-access",
|
|
3
|
-
"version": "0.9.11-alpha.
|
|
3
|
+
"version": "0.9.11-alpha.12",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Atomic extension for web search, URL fetching, GitHub repo cloning, PDF/video extraction. Fork of: https://github.com/nicobailon/pi-web-access",
|
|
6
6
|
"contributors": [
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
"linkedom": "^0.18.13",
|
|
47
47
|
"p-limit": "^7.3.0",
|
|
48
48
|
"turndown": "^7.2.0",
|
|
49
|
-
"unpdf": "
|
|
49
|
+
"unpdf": "1.7.0"
|
|
50
50
|
}
|
|
51
51
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/atomic",
|
|
3
|
-
"version": "0.9.11-alpha.
|
|
3
|
+
"version": "0.9.11-alpha.12",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@bastani/atomic",
|
|
9
|
-
"version": "0.9.11-alpha.
|
|
9
|
+
"version": "0.9.11-alpha.12",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@bastani/atomic-natives": "0.9.11-alpha.
|
|
12
|
+
"@bastani/atomic-natives": "0.9.11-alpha.12",
|
|
13
13
|
"@dbos-inc/dbos-sdk": "4.24.16",
|
|
14
14
|
"@earendil-works/pi-agent-core": "^0.83.0",
|
|
15
15
|
"@earendil-works/pi-ai": "^0.83.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"turndown": "^7.2.0",
|
|
40
40
|
"typebox": "1.3.7",
|
|
41
41
|
"undici": "8.5.0",
|
|
42
|
-
"unpdf": "
|
|
42
|
+
"unpdf": "1.7.0",
|
|
43
43
|
"yaml": "2.9.0",
|
|
44
44
|
"zod": "^3.25.0 || ^4.0.0"
|
|
45
45
|
},
|
|
@@ -515,18 +515,18 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"node_modules/@bastani/atomic-natives": {
|
|
518
|
-
"version": "0.9.11-alpha.
|
|
519
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives/-/atomic-natives-0.9.11-alpha.
|
|
518
|
+
"version": "0.9.11-alpha.12",
|
|
519
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives/-/atomic-natives-0.9.11-alpha.12.tgz",
|
|
520
520
|
"license": "MIT",
|
|
521
521
|
"optionalDependencies": {
|
|
522
|
-
"@bastani/atomic-natives-darwin-arm64": "0.9.11-alpha.
|
|
523
|
-
"@bastani/atomic-natives-darwin-x64": "0.9.11-alpha.
|
|
524
|
-
"@bastani/atomic-natives-linux-arm64-gnu": "0.9.11-alpha.
|
|
525
|
-
"@bastani/atomic-natives-linux-arm64-musl": "0.9.11-alpha.
|
|
526
|
-
"@bastani/atomic-natives-linux-x64-gnu": "0.9.11-alpha.
|
|
527
|
-
"@bastani/atomic-natives-linux-x64-musl": "0.9.11-alpha.
|
|
528
|
-
"@bastani/atomic-natives-win32-arm64-msvc": "0.9.11-alpha.
|
|
529
|
-
"@bastani/atomic-natives-win32-x64-msvc": "0.9.11-alpha.
|
|
522
|
+
"@bastani/atomic-natives-darwin-arm64": "0.9.11-alpha.12",
|
|
523
|
+
"@bastani/atomic-natives-darwin-x64": "0.9.11-alpha.12",
|
|
524
|
+
"@bastani/atomic-natives-linux-arm64-gnu": "0.9.11-alpha.12",
|
|
525
|
+
"@bastani/atomic-natives-linux-arm64-musl": "0.9.11-alpha.12",
|
|
526
|
+
"@bastani/atomic-natives-linux-x64-gnu": "0.9.11-alpha.12",
|
|
527
|
+
"@bastani/atomic-natives-linux-x64-musl": "0.9.11-alpha.12",
|
|
528
|
+
"@bastani/atomic-natives-win32-arm64-msvc": "0.9.11-alpha.12",
|
|
529
|
+
"@bastani/atomic-natives-win32-x64-msvc": "0.9.11-alpha.12"
|
|
530
530
|
},
|
|
531
531
|
"engines": {
|
|
532
532
|
"bun": ">=1.3.14",
|
|
@@ -534,8 +534,8 @@
|
|
|
534
534
|
}
|
|
535
535
|
},
|
|
536
536
|
"node_modules/@bastani/atomic-natives-darwin-arm64": {
|
|
537
|
-
"version": "0.9.11-alpha.
|
|
538
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-arm64/-/atomic-natives-darwin-arm64-0.9.11-alpha.
|
|
537
|
+
"version": "0.9.11-alpha.12",
|
|
538
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-arm64/-/atomic-natives-darwin-arm64-0.9.11-alpha.12.tgz",
|
|
539
539
|
"license": "MIT",
|
|
540
540
|
"os": [
|
|
541
541
|
"darwin"
|
|
@@ -546,8 +546,8 @@
|
|
|
546
546
|
"optional": true
|
|
547
547
|
},
|
|
548
548
|
"node_modules/@bastani/atomic-natives-darwin-x64": {
|
|
549
|
-
"version": "0.9.11-alpha.
|
|
550
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-x64/-/atomic-natives-darwin-x64-0.9.11-alpha.
|
|
549
|
+
"version": "0.9.11-alpha.12",
|
|
550
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-darwin-x64/-/atomic-natives-darwin-x64-0.9.11-alpha.12.tgz",
|
|
551
551
|
"license": "MIT",
|
|
552
552
|
"os": [
|
|
553
553
|
"darwin"
|
|
@@ -558,8 +558,8 @@
|
|
|
558
558
|
"optional": true
|
|
559
559
|
},
|
|
560
560
|
"node_modules/@bastani/atomic-natives-linux-arm64-gnu": {
|
|
561
|
-
"version": "0.9.11-alpha.
|
|
562
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-gnu/-/atomic-natives-linux-arm64-gnu-0.9.11-alpha.
|
|
561
|
+
"version": "0.9.11-alpha.12",
|
|
562
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-gnu/-/atomic-natives-linux-arm64-gnu-0.9.11-alpha.12.tgz",
|
|
563
563
|
"license": "MIT",
|
|
564
564
|
"os": [
|
|
565
565
|
"linux"
|
|
@@ -573,8 +573,8 @@
|
|
|
573
573
|
"optional": true
|
|
574
574
|
},
|
|
575
575
|
"node_modules/@bastani/atomic-natives-linux-arm64-musl": {
|
|
576
|
-
"version": "0.9.11-alpha.
|
|
577
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-musl/-/atomic-natives-linux-arm64-musl-0.9.11-alpha.
|
|
576
|
+
"version": "0.9.11-alpha.12",
|
|
577
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-arm64-musl/-/atomic-natives-linux-arm64-musl-0.9.11-alpha.12.tgz",
|
|
578
578
|
"license": "MIT",
|
|
579
579
|
"os": [
|
|
580
580
|
"linux"
|
|
@@ -588,8 +588,8 @@
|
|
|
588
588
|
"optional": true
|
|
589
589
|
},
|
|
590
590
|
"node_modules/@bastani/atomic-natives-linux-x64-gnu": {
|
|
591
|
-
"version": "0.9.11-alpha.
|
|
592
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-gnu/-/atomic-natives-linux-x64-gnu-0.9.11-alpha.
|
|
591
|
+
"version": "0.9.11-alpha.12",
|
|
592
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-gnu/-/atomic-natives-linux-x64-gnu-0.9.11-alpha.12.tgz",
|
|
593
593
|
"license": "MIT",
|
|
594
594
|
"os": [
|
|
595
595
|
"linux"
|
|
@@ -603,8 +603,8 @@
|
|
|
603
603
|
"optional": true
|
|
604
604
|
},
|
|
605
605
|
"node_modules/@bastani/atomic-natives-linux-x64-musl": {
|
|
606
|
-
"version": "0.9.11-alpha.
|
|
607
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-musl/-/atomic-natives-linux-x64-musl-0.9.11-alpha.
|
|
606
|
+
"version": "0.9.11-alpha.12",
|
|
607
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-linux-x64-musl/-/atomic-natives-linux-x64-musl-0.9.11-alpha.12.tgz",
|
|
608
608
|
"license": "MIT",
|
|
609
609
|
"os": [
|
|
610
610
|
"linux"
|
|
@@ -618,8 +618,8 @@
|
|
|
618
618
|
"optional": true
|
|
619
619
|
},
|
|
620
620
|
"node_modules/@bastani/atomic-natives-win32-arm64-msvc": {
|
|
621
|
-
"version": "0.9.11-alpha.
|
|
622
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-arm64-msvc/-/atomic-natives-win32-arm64-msvc-0.9.11-alpha.
|
|
621
|
+
"version": "0.9.11-alpha.12",
|
|
622
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-arm64-msvc/-/atomic-natives-win32-arm64-msvc-0.9.11-alpha.12.tgz",
|
|
623
623
|
"license": "MIT",
|
|
624
624
|
"os": [
|
|
625
625
|
"win32"
|
|
@@ -630,8 +630,8 @@
|
|
|
630
630
|
"optional": true
|
|
631
631
|
},
|
|
632
632
|
"node_modules/@bastani/atomic-natives-win32-x64-msvc": {
|
|
633
|
-
"version": "0.9.11-alpha.
|
|
634
|
-
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-x64-msvc/-/atomic-natives-win32-x64-msvc-0.9.11-alpha.
|
|
633
|
+
"version": "0.9.11-alpha.12",
|
|
634
|
+
"resolved": "https://registry.npmjs.org/@bastani/atomic-natives-win32-x64-msvc/-/atomic-natives-win32-x64-msvc-0.9.11-alpha.12.tgz",
|
|
635
635
|
"license": "MIT",
|
|
636
636
|
"os": [
|
|
637
637
|
"win32"
|
|
@@ -4827,9 +4827,9 @@
|
|
|
4827
4827
|
"license": "MIT"
|
|
4828
4828
|
},
|
|
4829
4829
|
"node_modules/unpdf": {
|
|
4830
|
-
"version": "1.
|
|
4831
|
-
"resolved": "https://registry.npmjs.org/unpdf/-/unpdf-1.
|
|
4832
|
-
"integrity": "sha512-
|
|
4830
|
+
"version": "1.7.0",
|
|
4831
|
+
"resolved": "https://registry.npmjs.org/unpdf/-/unpdf-1.7.0.tgz",
|
|
4832
|
+
"integrity": "sha512-MiDhbougTETOvbw/x3hnNr18jzFFrlSitevfO/BHInvtUx68R3Fke9A36GLQfN1LpG1NiJZaV4oPvjioPk9vKQ==",
|
|
4833
4833
|
"license": "MIT",
|
|
4834
4834
|
"peerDependencies": {
|
|
4835
4835
|
"@napi-rs/canvas": "^0.1.69"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/atomic",
|
|
3
|
-
"version": "0.9.11-alpha.
|
|
3
|
+
"version": "0.9.11-alpha.12",
|
|
4
4
|
"description": "Atomic coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"atomicConfig": {
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"prepublishOnly": "bun run clean && bun run build && bun run shrinkwrap"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@bastani/atomic-natives": "0.9.11-alpha.
|
|
81
|
+
"@bastani/atomic-natives": "0.9.11-alpha.12",
|
|
82
82
|
"@dbos-inc/dbos-sdk": "4.24.16",
|
|
83
83
|
"@earendil-works/pi-agent-core": "^0.83.0",
|
|
84
84
|
"@earendil-works/pi-ai": "^0.83.0",
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"turndown": "^7.2.0",
|
|
109
109
|
"typebox": "1.3.7",
|
|
110
110
|
"undici": "8.5.0",
|
|
111
|
-
"unpdf": "
|
|
111
|
+
"unpdf": "1.7.0",
|
|
112
112
|
"yaml": "2.9.0",
|
|
113
113
|
"zod": "^3.25.0 || ^4.0.0"
|
|
114
114
|
},
|