Skip to content

Commit 84be849

Browse files
ci: release packages
1 parent 45be822 commit 84be849

11 files changed

Lines changed: 38 additions & 32 deletions

.changeset/managed-provider-kimi-code.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/session-free-skill-listing.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/shared-catalog-provider-import.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/tui-render-gate.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/vscode-chat-logo-and-slash-insert.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/pythinker-code/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @pythoughts/pythinker-code
22

3+
## 0.9.0
4+
5+
### Minor Changes
6+
7+
- [#22](https://github.com/Pythoughts-labs/pythinker-code/pull/22) [`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32) - Name the managed OAuth provider after the platform that serves it. It is reached over `auth.kimi.com` and `api.kimi.com`, but it was registered as `managed:pythinker-code`, which read as a first-party service in a client that talks to several providers. The provider id is now `managed:kimi-code`, its models are aliased `kimi-code/*`, and its credentials are stored under `oauth/kimi-code`.
8+
9+
This is a breaking change for an existing config: the previous entries are not rewritten, so run `pythinker login` once to provision the managed provider under its current name, then remove the stale `managed:pythinker-code` entry.
10+
11+
- [#22](https://github.com/Pythoughts-labs/pythinker-code/pull/22) [`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32) - Resolve a workspace's skills without opening a session, so an editor panel can list them before its first message.
12+
13+
### Patch Changes
14+
15+
- [#22](https://github.com/Pythoughts-labs/pythinker-code/pull/22) [`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32) - Add an SDK routine that imports a catalog provider and its models into the persisted config, and use it for the CLI provider import so both entry points preserve existing defaults the same way.
16+
17+
- [#22](https://github.com/Pythoughts-labs/pythinker-code/pull/22) [`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32) - Stop the fixed-layout TUI anchoring its first frames to the shell cursor, which pushed the panel border into scrollback.
18+
319
## 0.8.1
420

521
### Patch Changes

apps/pythinker-code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythoughts/pythinker-code",
3-
"version": "0.8.1",
3+
"version": "0.9.0",
44
"description": "The Starting Point for Next-Gen Agents",
55
"license": "MIT",
66
"author": "Pythoughts",

apps/vscode/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.8.4
4+
5+
### Patch Changes
6+
7+
- [#22](https://github.com/Pythoughts-labs/pythinker-code/pull/22) [`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32) - Show the assistant logo beside replies without breaking the step timeline, complete a picked slash command in the input instead of sending it on its own, ship a decodable Marketplace icon, and retry transient registry failures when publishing.
8+
9+
- Updated dependencies [[`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32), [`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32)]:
10+
- @pythoughts/pythinker-code-sdk@0.11.0
11+
312
## 0.6.7
413

514
### Patch Changes

apps/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "pythoughts",
44
"displayName": "Pythinker Code",
55
"description": "Pythinker Code extension for VS Code",
6-
"version": "0.8.3",
6+
"version": "0.8.4",
77
"private": true,
88
"license": "Apache-2.0",
99
"type": "module",

packages/node-sdk/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @pythoughts/pythinker-code-sdk
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- [#22](https://github.com/Pythoughts-labs/pythinker-code/pull/22) [`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32) - Name the managed OAuth provider after the platform that serves it. It is reached over `auth.kimi.com` and `api.kimi.com`, but it was registered as `managed:pythinker-code`, which read as a first-party service in a client that talks to several providers. The provider id is now `managed:kimi-code`, its models are aliased `kimi-code/*`, and its credentials are stored under `oauth/kimi-code`.
8+
9+
This is a breaking change for an existing config: the previous entries are not rewritten, so run `pythinker login` once to provision the managed provider under its current name, then remove the stale `managed:pythinker-code` entry.
10+
11+
- [#22](https://github.com/Pythoughts-labs/pythinker-code/pull/22) [`45be822`](https://github.com/Pythoughts-labs/pythinker-code/commit/45be8227077847f760fa7b6b09333cf5a8127f32) - Add an SDK routine that imports a catalog provider and its models into the persisted config, and use it for the CLI provider import so both entry points preserve existing defaults the same way.
12+
313
## 0.10.0
414

515
### Minor Changes

0 commit comments

Comments
 (0)