@oh-my-pi/pi-coding-agent 16.1.0 → 16.1.1
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 +14 -0
- package/dist/cli.js +1847 -1847
- package/dist/types/config/settings-schema.d.ts +27 -36
- package/dist/types/lsp/types.d.ts +5 -3
- package/dist/types/modes/components/cache-invalidation-marker.d.ts +7 -2
- package/package.json +12 -12
- package/src/config/settings-schema.ts +33 -36
- package/src/config/settings.ts +40 -0
- package/src/lsp/client.ts +9 -9
- package/src/lsp/types.ts +6 -3
- package/src/modes/components/cache-invalidation-marker.ts +12 -2
- package/src/modes/components/settings-defs.ts +7 -0
- package/src/session/agent-session.ts +6 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.1.1] - 2026-06-19
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Migrated legacy macOS power settings to a single sleep prevention enum
|
|
10
|
+
- Defaulted `display.cacheMissMarker` setting to `false` to suppress the cache-miss marker by default.
|
|
11
|
+
- Replaced the four separate `power.preventIdleSleep`, `power.preventSystemSleep`, `power.declareUserActive`, and `power.preventDisplaySleep` boolean settings with a single cumulative `power.sleepPrevention` enum (`off` → `idle` → `display` → `system`). Each level adds the caffeinate flags of all lower levels. Existing configs are migrated automatically.
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Cache-miss marker no longer fires on providers with implicit, best-effort prompt caching (Google/Gemini, OpenAI, Fireworks). Those report `cacheWrite: 0` and drop `cacheRead` to zero intermittently as routine propagation noise that self-heals the next turn. Only explicit, prefix-controlled caches (Anthropic/Bedrock `cache_control`), which re-create the prefix on a cold turn as `cacheWrite > 0`, now surface a marker — where a zero `cacheRead` genuinely means the prefix broke.
|
|
16
|
+
- Fixed advisor dependent settings staying visible while `advisor.enabled` is off ([#3027](https://github.com/can1357/oh-my-pi/issues/3027)).
|
|
17
|
+
- Fixed LSP servers that dynamically register capabilities, including Expert, hanging semantic requests after `client/registerCapability` was rejected ([#3029](https://github.com/can1357/oh-my-pi/issues/3029)).
|
|
18
|
+
|
|
5
19
|
## [16.1.0] - 2026-06-19
|
|
6
20
|
|
|
7
21
|
### Added
|