@oh-my-pi/pi-coding-agent 16.4.1 → 16.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/cli.js +3390 -3288
- package/dist/types/mcp/manager.d.ts +1 -1
- package/dist/types/mcp/oauth-flow.d.ts +1 -0
- package/dist/types/system-prompt.d.ts +8 -2
- package/dist/types/task/prompt-policy.d.ts +2 -0
- package/package.json +13 -13
- package/src/mcp/manager.ts +67 -64
- package/src/mcp/oauth-flow.ts +2 -0
- package/src/prompts/system/system-prompt.md +18 -5
- package/src/prompts/tools/task.md +2 -7
- package/src/sdk.ts +5 -1
- package/src/session/agent-session.ts +6 -7
- package/src/session/session-manager.ts +2 -1
- package/src/system-prompt.ts +17 -3
- package/src/task/index.ts +1 -5
- package/src/task/prompt-policy.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.4.2] - 2026-07-10
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed an issue where BigInt values in tool arguments failed to serialize during session compaction.
|
|
10
|
+
- Resolved an issue where GPT-5.6 over-delegated tasks by refining task fan-out and concurrency policies in the system prompt.
|
|
11
|
+
- Fixed a race condition in concurrent MCP OAuth token refreshes across processes, ensuring rotating refresh tokens are only refreshed once and preventing stale token errors from clearing valid credentials.
|
|
12
|
+
|
|
5
13
|
## [16.4.1] - 2026-07-10
|
|
6
14
|
|
|
7
15
|
### Changed
|