@bastani/atomic 0.8.28-alpha.3 → 0.8.28-alpha.4
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 +6 -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/package.json +1 -1
- package/dist/builtin/workflows/CHANGELOG.md +6 -0
- package/dist/builtin/workflows/builtin/deep-research-codebase.ts +2 -1
- package/dist/builtin/workflows/builtin/goal.ts +2 -1
- package/dist/builtin/workflows/builtin/open-claude-design.ts +2 -1
- package/dist/builtin/workflows/builtin/ralph.ts +4 -2
- package/dist/builtin/workflows/package.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.8.28-alpha.4] - 2026-06-11
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Changed the bundled builtin `deep-research-codebase`, `goal`, `ralph`, and `open-claude-design` workflows to use `anthropic/claude-fable-5:xhigh` as the primary planner/reviewer/design model, demoting each previous primary (`openai-codex/gpt-5.5:xhigh` or `github-copilot/claude-opus-4.8:xhigh`) to the head of the fallback chain ([#1345](https://github.com/bastani-inc/atomic/pull/1345)).
|
|
10
|
+
|
|
5
11
|
## [0.8.28-alpha.3] - 2026-06-11
|
|
6
12
|
|
|
7
13
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/intercom",
|
|
3
|
-
"version": "0.8.28-alpha.
|
|
3
|
+
"version": "0.8.28-alpha.4",
|
|
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.8.28-alpha.
|
|
3
|
+
"version": "0.8.28-alpha.4",
|
|
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.8.28-alpha.
|
|
3
|
+
"version": "0.8.28-alpha.4",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Atomic extension for delegating tasks to subagents with chains, parallel execution, and TUI clarification. Fork of: https://github.com/nicobailon/pi-subagents",
|
|
6
6
|
"contributors": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bastani/web-access",
|
|
3
|
-
"version": "0.8.28-alpha.
|
|
3
|
+
"version": "0.8.28-alpha.4",
|
|
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": [
|
|
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.8.28-alpha.4] - 2026-06-11
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Changed the builtin `deep-research-codebase`, `goal`, `ralph`, and `open-claude-design` workflows to use `anthropic/claude-fable-5:xhigh` as the primary planner/reviewer/design model, demoting each previous primary (`openai-codex/gpt-5.5:xhigh` or `github-copilot/claude-opus-4.8:xhigh`) to the head of the fallback chain ([#1345](https://github.com/bastani-inc/atomic/pull/1345)).
|
|
14
|
+
|
|
9
15
|
## [0.8.28-alpha.3] - 2026-06-11
|
|
10
16
|
|
|
11
17
|
### Added
|
|
@@ -415,8 +415,9 @@ export default defineWorkflow("deep-research-codebase")
|
|
|
415
415
|
);
|
|
416
416
|
|
|
417
417
|
const plannerModelConfig = {
|
|
418
|
-
model: "
|
|
418
|
+
model: "anthropic/claude-fable-5:xhigh",
|
|
419
419
|
fallbackModels: [
|
|
420
|
+
"openai-codex/gpt-5.5:xhigh",
|
|
420
421
|
"github-copilot/gpt-5.5:xhigh",
|
|
421
422
|
"openai/gpt-5.5:xhigh",
|
|
422
423
|
"github-copilot/claude-opus-4.8:xhigh",
|
|
@@ -1072,8 +1072,9 @@ export default defineWorkflow("goal")
|
|
|
1072
1072
|
};
|
|
1073
1073
|
|
|
1074
1074
|
const reviewerModelConfig = {
|
|
1075
|
-
model: "
|
|
1075
|
+
model: "anthropic/claude-fable-5:xhigh",
|
|
1076
1076
|
fallbackModels: [
|
|
1077
|
+
"openai-codex/gpt-5.5:xhigh",
|
|
1077
1078
|
"github-copilot/gpt-5.5:xhigh",
|
|
1078
1079
|
"openai/gpt-5.5:xhigh",
|
|
1079
1080
|
"github-copilot/claude-opus-4.8:xhigh",
|
|
@@ -471,8 +471,9 @@ export default defineWorkflow("open-claude-design")
|
|
|
471
471
|
const specFileUrl = `file://${specPath}`;
|
|
472
472
|
|
|
473
473
|
const designModelConfig = {
|
|
474
|
-
model: "
|
|
474
|
+
model: "anthropic/claude-fable-5:xhigh",
|
|
475
475
|
fallbackModels: [
|
|
476
|
+
"github-copilot/claude-opus-4.8:xhigh",
|
|
476
477
|
"anthropic/claude-opus-4-8:xhigh",
|
|
477
478
|
"github-copilot/claude-sonnet-4.6:high",
|
|
478
479
|
"anthropic/claude-sonnet-4-6:high",
|
|
@@ -717,8 +717,9 @@ async function runRalphWorkflow(
|
|
|
717
717
|
let previousOrchestratorSessionFile: string | undefined;
|
|
718
718
|
|
|
719
719
|
const plannerModelConfig = {
|
|
720
|
-
model: "
|
|
720
|
+
model: "anthropic/claude-fable-5:xhigh",
|
|
721
721
|
fallbackModels: [
|
|
722
|
+
"openai-codex/gpt-5.5:xhigh",
|
|
722
723
|
"github-copilot/gpt-5.5:xhigh",
|
|
723
724
|
"openai/gpt-5.5:xhigh",
|
|
724
725
|
"github-copilot/claude-opus-4.8:xhigh",
|
|
@@ -739,8 +740,9 @@ async function runRalphWorkflow(
|
|
|
739
740
|
};
|
|
740
741
|
|
|
741
742
|
const reviewerModelConfig = {
|
|
742
|
-
model: "
|
|
743
|
+
model: "anthropic/claude-fable-5:xhigh",
|
|
743
744
|
fallbackModels: [
|
|
745
|
+
"openai-codex/gpt-5.5:xhigh",
|
|
744
746
|
"github-copilot/gpt-5.5:xhigh",
|
|
745
747
|
"openai/gpt-5.5:xhigh",
|
|
746
748
|
"github-copilot/claude-opus-4.8:xhigh",
|