fix(coding-agent): export package asset path helpers

closes #5415
This commit is contained in:
Mario Zechner
2026-06-07 11:25:15 +02:00
Unverified
parent 8c6c8a4ef3
commit eb43bd4493
3 changed files with 7 additions and 1 deletions
+1
View File
@@ -7,6 +7,7 @@
- Added project trust gating for project-local settings, resources, instructions, and packages ([#5332](https://github.com/earendil-works/pi/pull/5332)).
- Added the latest prompt cache hit rate to the interactive footer.
- Exported RPC extension UI request and response types from the public API ([#5455](https://github.com/earendil-works/pi/issues/5455)).
- Exported coding-agent package asset path helpers from the public API ([#5415](https://github.com/earendil-works/pi/issues/5415)).
### Fixed
+5
View File
@@ -1112,6 +1112,11 @@ createEventBus
// Helpers
defineTool
getAgentDir
getPackageDir
getReadmePath
getDocsPath
getExamplesPath
// Session management
SessionManager
+1 -1
View File
@@ -3,7 +3,7 @@
export { type Args, parseArgs } from "./cli/args.ts";
// Config paths
export { getAgentDir, VERSION } from "./config.ts";
export { getAgentDir, getDocsPath, getExamplesPath, getPackageDir, getReadmePath, VERSION } from "./config.ts";
export {
AgentSession,
type AgentSessionConfig,