From 758ba6be2cae0bde404644eeb68dbcc45ead80e7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 08:17:07 +0000 Subject: [PATCH] ci: release packages --- .changeset/advisor-runtime.md | 5 ----- .changeset/model-roles.md | 5 ----- .changeset/tool-args-escape-repair.md | 5 ----- .changeset/tool-intent-indicator.md | 5 ----- .changeset/tui-signature-design.md | 5 ----- apps/pythinker-code/CHANGELOG.md | 16 ++++++++++++++++ apps/pythinker-code/package.json | 2 +- 7 files changed, 17 insertions(+), 26 deletions(-) delete mode 100644 .changeset/advisor-runtime.md delete mode 100644 .changeset/model-roles.md delete mode 100644 .changeset/tool-args-escape-repair.md delete mode 100644 .changeset/tool-intent-indicator.md delete mode 100644 .changeset/tui-signature-design.md diff --git a/.changeset/advisor-runtime.md b/.changeset/advisor-runtime.md deleted file mode 100644 index 1da832f5..00000000 --- a/.changeset/advisor-runtime.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pythoughts/pythinker-code": minor ---- - -Add an opt-in advisor: a second model reviews the conversation after a completed user turn unless another review is already running, and its notes appear as an `` block in the agent's next turn; enable with `[advisor] enabled = true` plus an advisor model (the `advisor` model role or `[advisor] model`), and it runs only when the advisor shares the session model's provider. diff --git a/.changeset/model-roles.md b/.changeset/model-roles.md deleted file mode 100644 index f671b21e..00000000 --- a/.changeset/model-roles.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pythoughts/pythinker-code": minor ---- - -Add model roles: lock a model alias to the small, implementer, or advisor slot with `/model `, list assignments with `/model roles`, and reference roles as `@small`, `@implementer`, or `@advisor` wherever a subagent model can be set; an assigned implementer role becomes the default model for subagents. diff --git a/.changeset/tool-args-escape-repair.md b/.changeset/tool-args-escape-repair.md deleted file mode 100644 index cd2f7192..00000000 --- a/.changeset/tool-args-escape-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pythoughts/pythinker-code": patch ---- - -Repair invalid escape sequences and unescaped quotes in model-written tool arguments instead of failing the tool call. diff --git a/.changeset/tool-intent-indicator.md b/.changeset/tool-intent-indicator.md deleted file mode 100644 index a88e693a..00000000 --- a/.changeset/tool-intent-indicator.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pythoughts/pythinker-code": minor ---- - -Show what the agent is doing in the working indicator: eligible tool calls whose input schema accepts the injected field now carry a short model-written intent, streamed live into the spinner label (for example "check failing test…") instead of a rotating placeholder; disable with `PYTHINKER_CODE_EXPERIMENTAL_TOOL_INTENT=0`. diff --git a/.changeset/tui-signature-design.md b/.changeset/tui-signature-design.md deleted file mode 100644 index 45887c6b..00000000 --- a/.changeset/tui-signature-design.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pythoughts/pythinker-code": minor ---- - -Redesign core TUI surfaces: tool cards get state-tinted backgrounds with three new theme tokens, a status bar with a per-session accent color appears between the input box and footer, and the prompt box uses a neutral border while permission mode appears in the status bar. The working-label shimmer uses a calmer constant-velocity sweep with alternating mission-control highlights. diff --git a/apps/pythinker-code/CHANGELOG.md b/apps/pythinker-code/CHANGELOG.md index 0c3b3ebd..4c46a959 100644 --- a/apps/pythinker-code/CHANGELOG.md +++ b/apps/pythinker-code/CHANGELOG.md @@ -1,5 +1,21 @@ # @pythoughts/pythinker-code +## 0.16.0 + +### Minor Changes + +- [#59](https://github.com/Pythoughts-labs/pythinker-code/pull/59) [`6999b68`](https://github.com/Pythoughts-labs/pythinker-code/commit/6999b685ff63fb275a179be61f47e8b5cb727ba5) - Add an opt-in advisor: a second model reviews the conversation after a completed user turn unless another review is already running, and its notes appear as an `` block in the agent's next turn; enable with `[advisor] enabled = true` plus an advisor model (the `advisor` model role or `[advisor] model`), and it runs only when the advisor shares the session model's provider. + +- [#56](https://github.com/Pythoughts-labs/pythinker-code/pull/56) [`b71f094`](https://github.com/Pythoughts-labs/pythinker-code/commit/b71f09460825feb63bdf1dbb029c12a34e140598) - Add model roles: lock a model alias to the small, implementer, or advisor slot with `/model `, list assignments with `/model roles`, and reference roles as `@small`, `@implementer`, or `@advisor` wherever a subagent model can be set; an assigned implementer role becomes the default model for subagents. + +- [#57](https://github.com/Pythoughts-labs/pythinker-code/pull/57) [`99c427c`](https://github.com/Pythoughts-labs/pythinker-code/commit/99c427ce686a2c7dca183cb60235f8ecc3fd393f) - Show what the agent is doing in the working indicator: eligible tool calls whose input schema accepts the injected field now carry a short model-written intent, streamed live into the spinner label (for example "check failing test…") instead of a rotating placeholder; disable with `PYTHINKER_CODE_EXPERIMENTAL_TOOL_INTENT=0`. + +- [#58](https://github.com/Pythoughts-labs/pythinker-code/pull/58) [`065bf2e`](https://github.com/Pythoughts-labs/pythinker-code/commit/065bf2e9b90cfe9f5ec103132996baae73daaf26) - Redesign core TUI surfaces: tool cards get state-tinted backgrounds with three new theme tokens, a status bar with a per-session accent color appears between the input box and footer, and the prompt box uses a neutral border while permission mode appears in the status bar. The working-label shimmer uses a calmer constant-velocity sweep with alternating mission-control highlights. + +### Patch Changes + +- [#62](https://github.com/Pythoughts-labs/pythinker-code/pull/62) [`7fc36fd`](https://github.com/Pythoughts-labs/pythinker-code/commit/7fc36fdc4c5694812fce65c57151cd14c182b8fc) - Repair invalid escape sequences and unescaped quotes in model-written tool arguments instead of failing the tool call. + ## 0.15.0 ### Minor Changes diff --git a/apps/pythinker-code/package.json b/apps/pythinker-code/package.json index fd0b6270..8ffe1bae 100644 --- a/apps/pythinker-code/package.json +++ b/apps/pythinker-code/package.json @@ -1,6 +1,6 @@ { "name": "@pythoughts/pythinker-code", - "version": "0.15.0", + "version": "0.16.0", "description": "The Starting Point for Next-Gen Agents", "license": "MIT", "author": "Pythoughts",