You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,17 @@ GitHub Releases page; `0.8.0` is the new starting line.
15
15
16
16
## Unreleased
17
17
18
-
- Add a built-in `Workflow` tool that runs a deterministic Python script orchestrating
19
-
multiple subagents via `agent()`, `parallel()`, and `pipeline()`, with live progress,
20
-
structured-schema output, and one-shot approval.
18
+
## 0.54.0 (2026-06-30)
19
+
20
+
-**New `Workflow` tool for deterministic multi-agent orchestration.** The default
21
+
agent can now author and run a JavaScript-like script that fans work out across
22
+
subagents with `agent()`, `parallel()`, and `pipeline()` primitives, then
23
+
synthesizes the results — instead of manually chaining one-off subagent calls.
24
+
Runs stream live progress (phases, per-agent status) to the TUI, support
25
+
structured-schema output per agent call, enforce an optional token budget, and
26
+
require a single up-front approval rather than one per spawned subagent.
27
+
28
+
Upgrade with `pythinker update`, `pip install --upgrade pythinker-code==0.54.0`, or use the native installer for your platform from the [Releases page](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
Copy file name to clipboardExpand all lines: README.md
+20-21Lines changed: 20 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,12 +50,11 @@ It speaks the [**Agent Client Protocol (ACP)**](https://github.com/agentclientpr
50
50
51
51
---
52
52
53
-
## 🆕 What's New in 0.53.0
53
+
## 🆕 What's New in 0.54.0
54
54
55
-
-**GPT/ChatGPT re-auth crash fixed.** A "Could not resolve authentication method" crash when a session token is invalidated mid-session (OAuth refresh rotated on another machine) now routes into the standard `/login` re-authentication path instead of dumping a traceback.
56
-
-**Cleaner `ImplementAndJudge` label in the TUI.** The chain now shows `Implement & Judge — <brief>` instead of the raw `ImplementAndJudge(4 args: …)` argument dump.
55
+
-**New `Workflow` tool for deterministic multi-agent orchestration.** The default agent can author and run a script that fans work out across subagents with `agent()`, `parallel()`, and `pipeline()`, with live progress, structured-schema output, an optional token budget, and a single up-front approval.
57
56
58
-
Upgrade with `pythinker update`, `pip install --upgrade pythinker-code==0.53.0`, or use the native installer for your platform from the [Releases page](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
57
+
Upgrade with `pythinker update`, `pip install --upgrade pythinker-code==0.54.0`, or use the native installer for your platform from the [Releases page](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
59
58
60
59
61
60
---
@@ -145,7 +144,7 @@ matches your OS — no Python, Node, or `uv` prerequisite.
Copy file name to clipboardExpand all lines: docs/en/guides/getting-started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ On Windows, run the PowerShell bootstrap. It downloads the native installer, ver
44
44
irm https://pythinker.com/install.ps1 | iex
45
45
```
46
46
47
-
You can also download `PythinkerSetup-0.53.0.exe` manually from the [latest release](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
47
+
You can also download `PythinkerSetup-0.54.0.exe` manually from the [latest release](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
Copy file name to clipboardExpand all lines: docs/en/release-notes/changelog.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,18 @@ GitHub Releases page; `0.8.0` is the new starting line.
17
17
18
18
## Unreleased
19
19
20
+
## 0.54.0 (2026-06-30)
21
+
22
+
-**New `Workflow` tool for deterministic multi-agent orchestration.** The default
23
+
agent can now author and run a JavaScript-like script that fans work out across
24
+
subagents with `agent()`, `parallel()`, and `pipeline()` primitives, then
25
+
synthesizes the results — instead of manually chaining one-off subagent calls.
26
+
Runs stream live progress (phases, per-agent status) to the TUI, support
27
+
structured-schema output per agent call, enforce an optional token budget, and
28
+
require a single up-front approval rather than one per spawned subagent.
29
+
30
+
Upgrade with `pythinker update`, `pip install --upgrade pythinker-code==0.54.0`, or use the native installer for your platform from the [Releases page](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
31
+
20
32
## 0.53.0 (2026-06-23)
21
33
22
34
-**GPT/ChatGPT session re-authentication crash fixed.** A fatal "Could not
0 commit comments