Skip to content

Commit 3e483c8

Browse files
committed
chore(release): prepare 0.45.0
1 parent 14c5c98 commit 3e483c8

8 files changed

Lines changed: 52 additions & 41 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ GitHub Releases page; `0.8.0` is the new starting line.
1515

1616
## Unreleased
1717

18+
## 0.45.0 (2026-06-14)
19+
1820
- **Agent-tracing dashboard.** Added `pythinker dashboard` — a local web UI for inspecting sessions, wire events, context messages, tool statistics, and usage over time. It is also reachable from the interactive shell via the `/reports` slash command (aliased `/dashboard`).
1921
- **Gemini finish_reason is now sticky once truncation is detected.** A second candidate with any non-`MAX_TOKENS` finish reason no longer overwrites a previously captured `"length"` signal at either the streaming or non-streaming path in the Google GenAI provider.
2022
- **Budget-exhausted and stuck-loop messages are now visible in the shell.** Both handoff messages were appended to context but never sent to the wire, so the interactive shell showed no feedback when a spend ceiling or stuck-loop exit fired. Both now emit a `TextPart` wire event so the message appears in the shell.
2123
- **Dark-theme prompt_toolkit border colors now match the TUI token constants.** Six stale slate hex values in `_PROMPT_STYLE_DARK` diverged from the current `border` and `border_muted` token values; they are now in sync and a parity test binds them going forward.
2224
- **Non-review successful agents now show a summary preview in the agent tree.** Completed subagents with a `summary_preview` now display a dim preview line in the RunAgents tree renderer (review runs continue to use the findings table instead).
2325
- **Non-string values in `required_mcp_servers` YAML are silently dropped.** Integers, booleans, and `null` entries were previously coerced to strings (`"1"`, `"False"`, `"None"`), creating permanently unsatisfiable MCP server names. Only actual string entries are now retained.
24-
2526
- **Fixed MiniMax token-plan `/usage` accuracy.** The token-plan response now meters by
2627
percentage (the count fields are 0) and reports reset times in milliseconds; the adapter was
2728
reading the zero counts (showing "0 requests used") and treating milliseconds as seconds
@@ -101,6 +102,8 @@ GitHub Releases page; `0.8.0` is the new starting line.
101102
to `loop_control.max_truncation_recoveries` times per turn (default 3; `0` disables).
102103
pythinker-core now surfaces the provider's truncation signal so the loop can detect it.
103104

105+
Upgrade with `pythinker update`, `pip install --upgrade pythinker-code==0.45.0`, or use the native installer for your platform from the [Releases page](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
106+
104107
## 0.44.0 (2026-06-13)
105108

106109
- **Toggle auto-update from the CLI.** Running `/update` now opens a menu — *Check for updates now* (the default, so a bare `/update` + Enter still checks immediately) or *Auto-update on startup* with its current state — so the toggle is discoverable without knowing a subcommand. `/update auto on|off` still sets it directly, and `/update auto` with no value opens an interactive On/Off picker (cursor defaulted to the current setting). The same toggle appears in the interactive `/settings` panel, and `pythinker info` reports the auto-update status. All surfaces show the *effective* state — an external override (`PYTHINKER_CLI_NO_AUTO_UPDATE` or a source checkout) is surfaced as the reason, renders the `/settings` row read-only, and makes `/update auto` report the read-only state rather than popping a no-op picker, so the toggle is never a silent no-op.

README.md

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,14 @@ It speaks the [**Agent Client Protocol (ACP)**](https://github.com/agentclientpr
5050
5151
---
5252

53-
## 🆕 What's New in 0.44.0
53+
## 🆕 What's New in 0.45.0
5454

55-
- **Toggle auto-update from the CLI.** `/update` now opens a menu — *Check for updates now* (the default, so a bare `/update` still checks immediately) or *Auto-update on startup* with its current state. `/update auto on|off` sets it directly, the same toggle appears in `/settings`, and `pythinker info` reports the status. Every surface shows the *effective* state, so an external override (`PYTHINKER_CLI_NO_AUTO_UPDATE` or a source checkout) is surfaced as the reason instead of silently no-opping.
56-
- **No more spurious "could not close the program" error on Windows updates.** The native installer now waits for the launching `pythinker.exe` to fully exit (its PID is passed via `/PID`) before its Restart Manager scan runs, so the scan no longer races the launcher's teardown into a false "close the program and retry" dialog. The update already succeeded in that case; now it completes cleanly.
57-
- **Simpler Windows update path.** With every shipped Windows install updating through the native installer, the Windows-only detached-spawn upgrade helper is gone; the remaining pip/uv/pipx path runs the upgrade inline and surfaces real command output and errors instead of a fire-and-forget process.
55+
- **Agent-tracing dashboard.** `pythinker dashboard` opens a local web UI for inspecting sessions, wire events, context messages, tool statistics, and usage over time — also reachable from the shell via `/reports` or `/dashboard`.
56+
- **Project instructions immune to compaction.** `AGENTS.md` is now delivered as a fresh `<system-reminder>` on every request instead of being baked into the system prompt, so compaction can never summarize it away and the token budget can never truncate it. `pythinker system-prompt` shows the assembled prompt with the reminder below a labeled divider.
57+
- **Accept-edits mode.** `/accept-edits` auto-approves reversible in-workspace file edits while still prompting for shell, destructive, config, and sensitive host-file writes (`.git/hooks`, `.zshrc`, `.ssh`, etc.) — never swept into the auto-approve tier.
58+
- **Recover from output-token truncation.** When a turn is cut off by the output-token limit, the model is nudged to continue from where it stopped (up to `loop_control.max_truncation_recoveries` times, default 3) instead of treating a half-finished answer as complete.
5859

59-
Upgrade with `pythinker update`, `pip install --upgrade pythinker-code==0.44.0`, or use the native installer for your platform from the [Releases page](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
60+
Upgrade with `pythinker update`, `pip install --upgrade pythinker-code==0.45.0`, or use the native installer for your platform from the [Releases page](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
6061

6162

6263
---
@@ -146,7 +147,7 @@ matches your OS — no Python, Node, or `uv` prerequisite.
146147

147148
| Platform | Recommended install | Artifact source |
148149
|---|---|---|
149-
| **🪟 Windows** | `irm https://pythinker.com/install.ps1 \| iex` | `PythinkerSetup-0.44.0.exe` from [Releases](https://github.com/Pythoughts-labs/pythinker-code/releases/latest) |
150+
| **🪟 Windows** | `irm https://pythinker.com/install.ps1 \| iex` | `PythinkerSetup-0.45.0.exe` from [Releases](https://github.com/Pythoughts-labs/pythinker-code/releases/latest) |
150151
| **<img src="https://img.shields.io/badge/-macOS-000000?style=flat-square&logo=apple&logoColor=white" alt="macOS"> / <img src="https://img.shields.io/badge/-Linux-FCC624?style=flat-square&logo=linux&logoColor=black" alt="Linux">** | `curl -fsSL https://pythinker.com/install.sh \| bash` | native tarball from [Releases](https://github.com/Pythoughts-labs/pythinker-code/releases/latest) |
151152
| **<img src="https://img.shields.io/badge/-macOS-000000?style=flat-square&logo=apple&logoColor=white" alt="macOS"> — Homebrew** | `brew install Pythoughts-labs/pythinker/pythinker-code` | auto-published Homebrew tap |
152153
| **🐳 Docker** | `docker run --rm -it ghcr.io/pythoughts-labs/pythinker-code` | GHCR multi-arch image |
@@ -174,7 +175,7 @@ pythinker # start the interactive TUI
174175

175176
### 🪟 Windows — native installer
176177

177-
`PythinkerSetup-0.44.0.exe` is a signed* Inno Setup wizard. Installs per-user
178+
`PythinkerSetup-0.45.0.exe` is a signed* Inno Setup wizard. Installs per-user
178179
into `%LOCALAPPDATA%\Programs\Pythinker`, registers `pythinker` on your user
179180
PATH (`HKCU\Environment`), broadcasts `WM_SETTINGCHANGE` so new shells see
180181
the change. **No UAC prompt.**
@@ -185,13 +186,13 @@ irm https://pythinker.com/install.ps1 | iex
185186
186187
# Or manually download the installer + checksum from the Releases page,
187188
# verify with Get-FileHash, then run:
188-
.\PythinkerSetup-0.44.0.exe
189+
.\PythinkerSetup-0.45.0.exe
189190
190191
# Open a fresh PowerShell
191192
pythinker --version
192193
```
193194

194-
**Per-machine install** (IT-managed boxes): `.\PythinkerSetup-0.44.0.exe /ALLUSERS`
195+
**Per-machine install** (IT-managed boxes): `.\PythinkerSetup-0.45.0.exe /ALLUSERS`
195196
installs to `%ProgramFiles%\Pythinker` and writes PATH to HKLM (requires admin).
196197

197198
**Upgrade:** `pythinker update` from inside the running app — it downloads
@@ -249,26 +250,26 @@ attached to every GitHub Release.
249250

250251
```sh
251252
# Debian / Ubuntu (x86_64)
252-
sudo dpkg -i pythinker-code_0.44.0_amd64.deb
253+
sudo dpkg -i pythinker-code_0.45.0_amd64.deb
253254
sudo apt-get install -f # only if dpkg reports missing deps
254255

255256
# Debian / Ubuntu (ARM64)
256-
sudo dpkg -i pythinker-code_0.44.0_arm64.deb
257+
sudo dpkg -i pythinker-code_0.45.0_arm64.deb
257258

258259
# Fedora / RHEL / openSUSE (x86_64)
259-
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.44.0/pythinker-code-0.44.0.x86_64.rpm
260-
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.44.0/pythinker-code-0.44.0.x86_64.rpm.sha256
261-
sha256sum -c pythinker-code-0.44.0.x86_64.rpm.sha256
260+
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.45.0/pythinker-code-0.45.0.x86_64.rpm
261+
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.45.0/pythinker-code-0.45.0.x86_64.rpm.sha256
262+
sha256sum -c pythinker-code-0.45.0.x86_64.rpm.sha256
262263
# Fedora / RHEL:
263-
sudo dnf install ./pythinker-code-0.44.0.x86_64.rpm
264+
sudo dnf install ./pythinker-code-0.45.0.x86_64.rpm
264265
# openSUSE:
265-
sudo zypper install ./pythinker-code-0.44.0.x86_64.rpm
266+
sudo zypper install ./pythinker-code-0.45.0.x86_64.rpm
266267

267268
# Fedora / RHEL (aarch64)
268-
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.44.0/pythinker-code-0.44.0.aarch64.rpm
269-
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.44.0/pythinker-code-0.44.0.aarch64.rpm.sha256
270-
sha256sum -c pythinker-code-0.44.0.aarch64.rpm.sha256
271-
sudo dnf install ./pythinker-code-0.44.0.aarch64.rpm
269+
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.45.0/pythinker-code-0.45.0.aarch64.rpm
270+
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.45.0/pythinker-code-0.45.0.aarch64.rpm.sha256
271+
sha256sum -c pythinker-code-0.45.0.aarch64.rpm.sha256
272+
sudo dnf install ./pythinker-code-0.45.0.aarch64.rpm
272273
```
273274

274275
Both packages drop a small `/usr/bin/pythinker` launcher that execs the real
@@ -277,8 +278,8 @@ binary under `/usr/lib/pythinker/`, so your `$PATH` stays tidy.
277278
**Verify before install:**
278279

279280
```sh
280-
sha256sum -c pythinker-code_0.44.0_amd64.deb.sha256 # Debian/Ubuntu
281-
sha256sum -c pythinker-code-0.44.0.x86_64.rpm.sha256 # Fedora/RHEL
281+
sha256sum -c pythinker-code_0.45.0_amd64.deb.sha256 # Debian/Ubuntu
282+
sha256sum -c pythinker-code-0.45.0.x86_64.rpm.sha256 # Fedora/RHEL
282283
```
283284

284285
**Upgrade:** download the new `.deb`/`.rpm` from Releases and `dpkg -i` /

docs/en/guides/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Run the native installation script to complete the installation. The canonical e
3131
curl -fsSL https://pythinker.com/install.sh | bash
3232

3333
# Pin a specific version
34-
curl -fsSL https://pythinker.com/install.sh | bash -s -- --version 0.44.0
34+
curl -fsSL https://pythinker.com/install.sh | bash -s -- --version 0.45.0
3535

3636
# Custom prefix (defaults to $HOME/.local)
3737
curl -fsSL https://pythinker.com/install.sh | bash -s -- --prefix /opt/pythinker
@@ -44,7 +44,7 @@ On Windows, run the PowerShell bootstrap. It downloads the native installer, ver
4444
irm https://pythinker.com/install.ps1 | iex
4545
```
4646

47-
You can also download `PythinkerSetup-0.44.0.exe` manually from the [latest release](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
47+
You can also download `PythinkerSetup-0.45.0.exe` manually from the [latest release](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
4848

4949
Verify the installation:
5050

docs/en/release-notes/breaking-changes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This page documents breaking changes in Pythinker Code releases and provides mig
44

55
## Unreleased
66

7+
## 0.45.0 (2026-06-14)
8+
9+
No breaking changes. This release is compatible with 0.44.0 user configuration, native installs, and session data.
10+
711
## 0.44.0 (2026-06-13)
812

913
No configuration or session-data breaking changes. The Windows in-app updater fix and the new auto-update toggle are backward compatible — existing config keys, the `pythinker update` command, and persisted session data are unaffected.

docs/en/release-notes/changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ GitHub Releases page; `0.8.0` is the new starting line.
1717

1818
## Unreleased
1919

20+
## 0.45.0 (2026-06-14)
21+
2022
- **Agent-tracing dashboard.** Added `pythinker dashboard` — a local web UI for inspecting sessions, wire events, context messages, tool statistics, and usage over time. It is also reachable from the interactive shell via the `/reports` slash command (aliased `/dashboard`).
2123
- **Gemini finish_reason is now sticky once truncation is detected.** A second candidate with any non-`MAX_TOKENS` finish reason no longer overwrites a previously captured `"length"` signal at either the streaming or non-streaming path in the Google GenAI provider.
2224
- **Budget-exhausted and stuck-loop messages are now visible in the shell.** Both handoff messages were appended to context but never sent to the wire, so the interactive shell showed no feedback when a spend ceiling or stuck-loop exit fired. Both now emit a `TextPart` wire event so the message appears in the shell.
2325
- **Dark-theme prompt_toolkit border colors now match the TUI token constants.** Six stale slate hex values in `_PROMPT_STYLE_DARK` diverged from the current `border` and `border_muted` token values; they are now in sync and a parity test binds them going forward.
2426
- **Non-review successful agents now show a summary preview in the agent tree.** Completed subagents with a `summary_preview` now display a dim preview line in the RunAgents tree renderer (review runs continue to use the findings table instead).
2527
- **Non-string values in `required_mcp_servers` YAML are silently dropped.** Integers, booleans, and `null` entries were previously coerced to strings (`"1"`, `"False"`, `"None"`), creating permanently unsatisfiable MCP server names. Only actual string entries are now retained.
26-
2728
- **Fixed MiniMax token-plan `/usage` accuracy.** The token-plan response now meters by
2829
percentage (the count fields are 0) and reports reset times in milliseconds; the adapter was
2930
reading the zero counts (showing "0 requests used") and treating milliseconds as seconds
@@ -103,6 +104,8 @@ GitHub Releases page; `0.8.0` is the new starting line.
103104
to `loop_control.max_truncation_recoveries` times per turn (default 3; `0` disables).
104105
pythinker-core now surfaces the provider's truncation signal so the loop can detect it.
105106

107+
Upgrade with `pythinker update`, `pip install --upgrade pythinker-code==0.45.0`, or use the native installer for your platform from the [Releases page](https://github.com/Pythoughts-labs/pythinker-code/releases/latest).
108+
106109
## 0.44.0 (2026-06-13)
107110

108111
- **Toggle auto-update from the CLI.** Running `/update` now opens a menu — *Check for updates now* (the default, so a bare `/update` + Enter still checks immediately) or *Auto-update on startup* with its current state — so the toggle is discoverable without knowing a subcommand. `/update auto on|off` still sets it directly, and `/update auto` with no value opens an interactive On/Off picker (cursor defaulted to the current setting). The same toggle appears in the interactive `/settings` panel, and `pythinker info` reports the auto-update status. All surfaces show the *effective* state — an external override (`PYTHINKER_CLI_NO_AUTO_UPDATE` or a source checkout) is surfaced as the reason, renders the `/settings` row read-only, and makes `/update auto` report the read-only state rather than popping a no-op picker, so the toggle is never a silent no-op.

packages/linux-installer/README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ End-user install from the current GitHub Release:
88

99
```sh
1010
# Debian / Ubuntu
11-
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.44.0/pythinker-code_0.44.0_amd64.deb
12-
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.44.0/pythinker-code_0.44.0_amd64.deb.sha256
13-
sha256sum -c pythinker-code_0.44.0_amd64.deb.sha256
14-
sudo dpkg -i pythinker-code_0.44.0_amd64.deb
11+
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.45.0/pythinker-code_0.45.0_amd64.deb
12+
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.45.0/pythinker-code_0.45.0_amd64.deb.sha256
13+
sha256sum -c pythinker-code_0.45.0_amd64.deb.sha256
14+
sudo dpkg -i pythinker-code_0.45.0_amd64.deb
1515
sudo apt-get install -f # only needed if dependencies fail to resolve
1616

1717
# Fedora / RHEL / openSUSE
18-
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.44.0/pythinker-code-0.44.0.x86_64.rpm
19-
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.44.0/pythinker-code-0.44.0.x86_64.rpm.sha256
20-
sha256sum -c pythinker-code-0.44.0.x86_64.rpm.sha256
21-
sudo dnf install ./pythinker-code-0.44.0.x86_64.rpm
18+
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.45.0/pythinker-code-0.45.0.x86_64.rpm
19+
curl -LO https://github.com/Pythoughts-labs/pythinker-code/releases/download/v0.45.0/pythinker-code-0.45.0.x86_64.rpm.sha256
20+
sha256sum -c pythinker-code-0.45.0.x86_64.rpm.sha256
21+
sudo dnf install ./pythinker-code-0.45.0.x86_64.rpm
2222
# or, on openSUSE:
23-
sudo zypper install ./pythinker-code-0.44.0.x86_64.rpm
23+
sudo zypper install ./pythinker-code-0.45.0.x86_64.rpm
2424
```
2525

2626
The package drops a single executable at `/usr/bin/pythinker` and a license
@@ -36,17 +36,17 @@ file at `/usr/share/doc/pythinker-code/LICENSE`.
3636
## Build
3737

3838
```sh
39-
bash packages/linux-installer/build.sh 0.44.0
39+
bash packages/linux-installer/build.sh 0.45.0
4040
```
4141

4242
Outputs to `dist/`:
4343

44-
- `pythinker-code_0.44.0_amd64.deb`
45-
- `pythinker-code-0.44.0.x86_64.rpm`
44+
- `pythinker-code_0.45.0_amd64.deb`
45+
- `pythinker-code-0.45.0.x86_64.rpm`
4646

4747
The portable tarball used by `scripts/install-native.sh` is published by
4848
the existing `release-pythinker-cli.yml` workflow under the cargo-dist
49-
target-triple naming (e.g. `pythinker-0.44.0-x86_64-unknown-linux-gnu.tar.gz`).
49+
target-triple naming (e.g. `pythinker-0.45.0-x86_64-unknown-linux-gnu.tar.gz`).
5050

5151
## CI
5252

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pythinker-code"
3-
version = "0.44.0"
3+
version = "0.45.0"
44
description = "Pythinker — an agentic CLI developed by Pythoughts-labs."
55
readme = "README.md"
66
requires-python = ">=3.12"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)