@oh-my-pi/pi-utils 15.13.3 → 16.0.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 CHANGED
@@ -14,16 +14,24 @@
14
14
 
15
15
  - Added profile-aware directory helpers and isolated profile state roots, while keeping the install ID shared across profiles.
16
16
  - Added a named-profile API to the `dirs` module — `setProfile()`, `getActiveProfile()`, `getProfileRootDir()`, and `normalizeProfileName()` — plus `resolveProfileEnv()`, which selects the active profile from `OMP_PROFILE` (canonical; takes precedence) then `PI_PROFILE` (legacy fallback, consulted only when `OMP_PROFILE` is unset).
17
+ - Added the side-effect-free `@oh-my-pi/pi-utils/worker-host` module (`declareWorkerHostEntry()` / `workerHostEntry()`), extracted from `env` (still re-exported there) so worker spawn sites can resolve the self-dispatching CLI host entry without importing `env`'s side-effecting module graph.
18
+
19
+ ### Fixed
20
+
21
+ - Fixed profile directory isolation when a profile's agent `.env` customizes directory roots: directory-affecting keys (`XDG_DATA_HOME`/`XDG_STATE_HOME`/`XDG_CACHE_HOME`, and a default-mode `PI_CODING_AGENT_DIR`) are now honored. The `env` loader rebuilds the `dirs` resolver after applying `.env` files (`refreshDirsFromEnv()`), so a profile `.env` that points XDG roots elsewhere no longer leaks state into the home-based config dir.
22
+ - Fixed `installRuntimeModuleResolver()` to keep bare requests from runtime-cache modules inside that registered runtime before falling back to host/workspace packages.
23
+
24
+ ## [15.13.1] - 2026-06-15
25
+
26
+ ### Added
27
+
17
28
  - Added support for a runtime `overrides` map in `RuntimeInstallSpec`, which is now written into generated runtime `package.json` manifests to force dependency pins (including transitive ones) across the runtime tree
18
29
  - Added a lightweight loop-phase breadcrumb stack (`pushLoopPhase`/`popLoopPhase`/`currentLoopPhase`, plus `takeRecentLoopPhase` which returns the live phase or the most recently popped one and clears it) so the TUI event-loop watchdog can attribute a main-thread block to the phase that caused it — including a synchronous phase already popped before the watchdog's delayed tick runs ([#2485](https://github.com/can1357/oh-my-pi/issues/2485))
19
30
  - Added `FetchWithRetryOptions.timeout` (forwarded to the underlying `fetch` call). `false` disables Bun's native ~300s pre-response timeout; a positive number overrides the ceiling. Bare browser/Node fetch ignores it ([#2422](https://github.com/can1357/oh-my-pi/issues/2422))
20
- - Added the side-effect-free `@oh-my-pi/pi-utils/worker-host` module (`declareWorkerHostEntry()` / `workerHostEntry()`), extracted from `env` (still re-exported there) so worker spawn sites can resolve the self-dispatching CLI host entry without importing `env`'s side-effecting module graph.
21
31
 
22
32
  ### Fixed
23
33
 
24
- - Fixed profile directory isolation when a profile's agent `.env` customizes directory roots: directory-affecting keys (`XDG_DATA_HOME`/`XDG_STATE_HOME`/`XDG_CACHE_HOME`, and a default-mode `PI_CODING_AGENT_DIR`) are now honored. The `env` loader rebuilds the `dirs` resolver after applying `.env` files (`refreshDirsFromEnv()`), so a profile `.env` that points XDG roots elsewhere no longer leaks state into the home-based config dir.
25
34
  - Made `TempDir` cleanup retry transient Windows `EBUSY`/`EPERM`/`ENOTEMPTY` removal failures so tests are less likely to fail when deleting just-used temp directories.
26
- - Fixed `installRuntimeModuleResolver()` to keep bare requests from runtime-cache modules inside that registered runtime before falling back to host/workspace packages.
27
35
 
28
36
  ## [15.12.4] - 2026-06-13
29
37
 
@@ -119,6 +119,10 @@ export declare function getPythonEnvDir(): string;
119
119
  export declare function getPythonGatewayDir(): string;
120
120
  /** Get the puppeteer sandbox directory (~/.omp/puppeteer). */
121
121
  export declare function getPuppeteerDir(): string;
122
+ /** Get DOCS_RS cache directory () */
123
+ export declare function getDocsRsCacheDir(): string;
124
+ /**Get AutoQa db directory */
125
+ export declare function getAutoQaDbDir(): string;
122
126
  /**
123
127
  * Stable 7-character hex digest of an absolute filesystem path.
124
128
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@oh-my-pi/pi-utils",
4
- "version": "15.13.3",
4
+ "version": "16.0.1",
5
5
  "description": "Shared utilities for pi packages",
6
6
  "homepage": "https://omp.sh",
7
7
  "author": "Can Boluk",
@@ -31,7 +31,7 @@
31
31
  "fmt": "biome format --write ."
32
32
  },
33
33
  "dependencies": {
34
- "@oh-my-pi/pi-natives": "15.13.3",
34
+ "@oh-my-pi/pi-natives": "16.0.1",
35
35
  "beautiful-mermaid": "^1.1.3",
36
36
  "handlebars": "^4.7.9",
37
37
  "winston": "^3.19.0",
package/src/dirs.ts CHANGED
@@ -556,6 +556,15 @@ export function getPuppeteerDir(): string {
556
556
  return dirs.rootSubdir("puppeteer", "cache");
557
557
  }
558
558
 
559
+ /** Get DOCS_RS cache directory () */
560
+ export function getDocsRsCacheDir(): string {
561
+ return dirs.rootSubdir("webcache", "cache");
562
+ }
563
+
564
+ /**Get AutoQa db directory */
565
+ export function getAutoQaDbDir(): string {
566
+ return dirs.rootSubdir("autoqa.db", "data");
567
+ }
559
568
  /**
560
569
  * Stable 7-character hex digest of an absolute filesystem path.
561
570
  *