@oh-my-pi/pi-coding-agent 16.4.0 → 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 +19 -0
- package/dist/cli.js +3495 -3383
- 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 +19 -8
- package/src/prompts/advisor/system.md +9 -1
- 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,25 @@
|
|
|
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
|
+
|
|
13
|
+
## [16.4.1] - 2026-07-10
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Reduced agent bias against large diffs and refactors in advisor prompts
|
|
18
|
+
- Updated advisor blocker criteria to prioritize explicit user instructions over plan size
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Fixed MCP OAuth dynamic client registration omitting discovered scopes on the RFC 7591 registration body. Providers such as Clerk bind DCR-created clients to only the scopes declared at registration, then reject the subsequent authorize request when it asks for `openid` (from `scopes_supported`). Registration now includes `config.scopes` when present, matching Claude Code and the scopes already sent on authorize.
|
|
23
|
+
|
|
5
24
|
## [16.4.0] - 2026-07-10
|
|
6
25
|
|
|
7
26
|
### Breaking Changes
|