@oh-my-pi/pi-coding-agent 16.0.3 → 16.0.4
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 +377 -97
- package/dist/types/cli/args.d.ts +1 -0
- package/dist/types/commands/launch.d.ts +3 -0
- package/dist/types/config/settings-schema.d.ts +1 -1
- package/dist/types/edit/file-snapshot-store.d.ts +2 -0
- package/package.json +12 -12
- package/src/cli/args.ts +3 -0
- package/src/cli/flag-tables.ts +1 -0
- package/src/commands/launch.ts +3 -0
- package/src/config/settings-schema.ts +1 -1
- package/src/edit/file-snapshot-store.ts +12 -3
- package/src/internal-urls/docs-index.generated.ts +81 -81
- package/src/main.ts +6 -4
- package/src/modes/components/tips.txt +2 -1
- package/src/prompts/system/system-prompt.md +2 -0
- package/src/session/agent-session.ts +7 -4
- package/src/tools/read.ts +26 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.0.4] - 2026-06-17
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed RPC/ACP startup forcing todo settings back to host defaults, so project-level `todo.enabled`, `todo.reminders`, and `todo.eager` opt-outs now suppress protocol-mode todo prompt injection; enabled todo reminders are now persisted to the JSONL transcript so the log matches the model-visible context ([#2824](https://github.com/can1357/oh-my-pi/issues/2824)).
|
|
10
|
+
- Fixed default prompts to instruct the agent to read applicable `skill://<name>` content before starting work, so discovered skills influence broad task requests like frontend generation ([#2829](https://github.com/can1357/oh-my-pi/issues/2829)).
|
|
11
|
+
- Fixed hashline visible-line validation for ACP editor reads so `INS.POST` anchors displayed by bridge-backed range and multi-range `read` output are merged into the session snapshot before `edit` validates them ([#2773](https://github.com/can1357/oh-my-pi/issues/2773)).
|
|
12
|
+
|
|
5
13
|
## [16.0.3] - 2026-06-16
|
|
6
14
|
|
|
7
15
|
### Added
|