Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
"engines": {
"node": ">=22.8.0"
},
"version": "0.8.0",
"version": "0.8.1",
"dependencies": {
"@earendil-works/pi-coding-agent": "^0.8.0",
"@earendil-works/pi-coding-agent": "^0.8.1",
"get-east-asian-width": "^1.6.0"
},
"overrides": {
Expand Down
4 changes: 2 additions & 2 deletions packages/agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-agent-core",
"version": "0.8.0",
"version": "0.8.1",
"description": "General-purpose agent with transport abstraction, state management, and attachment support",
"type": "module",
"main": "./dist/index.js",
Expand All @@ -17,7 +17,7 @@
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.8.0",
"@earendil-works/pi-ai": "^0.8.1",
"typebox": "^1.3.9"
},
"keywords": [
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion packages/ai/.changes/model-catalog-regen.md

This file was deleted.

1 change: 0 additions & 1 deletion packages/ai/.changes/regenerate-model-catalog.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.8.1] - 2026-08-26

- Refreshed the generated model catalog from live provider catalogs: added GLM 5.3 (OpenRouter, Prime Inference), DeepSeek V4 Flash Vision Exp, and Inkling free routes; followed the Vercel AI Gateway `xai/` to `spacexai/` grok rename; picked up repricing for gpt-5.6-sol, Gemini 3.6 Flash, and others.
- Fixed OpenAI-compatible Chat Completions replay dropping opaque `reasoning_details` between turns.
- Refreshed the generated model catalog from live provider catalogs: models.dev rescoped `cloudflare-ai-gateway` to proxied third-party models (the `workers-ai/@cf/...` mirrors and legacy OpenAI ids are gone; Cloudflare-hosted models remain under `cloudflare-workers-ai`); added devstral-2512 and MiniMax M2.7/M3 free routes; picked up repricing for gpt-5.6/gpt-5.6-sol (5/30 -> 4/20), kimi-k2.6, glm-5.1/5.2, and deepseek-v4-pro.

## [0.8.0] - 2026-08-21

- Added endpoint binding to MCP OAuth credentials: tokens record the URL they were issued for, and refreshes carry the original binding forward without ever inferring one for unbound legacy credentials.
Expand Down
2 changes: 1 addition & 1 deletion packages/ai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-ai",
"version": "0.8.0",
"version": "0.8.1",
"description": "Unified LLM API with automatic model discovery and provider configuration",
"type": "module",
"main": "./dist/index.js",
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion packages/coding-agent/.changes/model-catalog-regen.md

This file was deleted.

This file was deleted.

8 changes: 8 additions & 0 deletions packages/coding-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.8.1] - 2026-08-26

- Fixed syntax highlighting in the expanded python tool-call view: triple-quoted strings spanning multiple lines now keep their string color instead of only the first line.
- Changed the default RLM maximum recursion depth for new sessions from 1 to 2.
- Changed ACP prompt requests to resolve only after all causally admitted subagent and parent work has settled.
- Changed the Cloudflare AI Gateway default model to claude-sonnet-4.5 after the catalog dropped the gateway's workers-ai mirror ids.
- Fixed ACP assistant chunks to identify message boundaries across autonomous turns.

## [0.8.0] - 2026-08-21

- Fixed an OAuth login that finishes after its server was retargeted arming the old-endpoint token against the new URL: credentials are endpoint-bound at issuance, and the host and kernel only use a token bound to the configured endpoint. **Breaking**: generic MCP OAuth credentials stored before this release lack the binding and require one `/mcp login <server>`.
Expand Down
8 changes: 4 additions & 4 deletions packages/coding-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-coding-agent",
"version": "0.8.0",
"version": "0.8.1",
"description": "Coding agent CLI with IPython-backed tools and session management",
"type": "module",
"piConfig": {
Expand Down Expand Up @@ -48,9 +48,9 @@
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.3.0",
"@earendil-works/pi-agent-core": "^0.8.0",
"@earendil-works/pi-ai": "^0.8.0",
"@earendil-works/pi-tui": "^0.8.0",
"@earendil-works/pi-agent-core": "^0.8.1",
"@earendil-works/pi-ai": "^0.8.1",
"@earendil-works/pi-tui": "^0.8.1",
"@silvia-odwyer/photon-node": "^0.3.4",
"chalk": "^5.5.0",
"cli-highlight": "^2.1.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/tui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@earendil-works/pi-tui",
"version": "0.8.0",
"version": "0.8.1",
"description": "Terminal User Interface library with differential rendering for efficient text-based applications",
"type": "module",
"main": "dist/index.js",
Expand Down
Loading