(...parts: string[])
| 41 | |
| 42 | /** Path under `data/` — user-produced state. */ |
| 43 | export function dataPath(...parts: string[]): string { |
| 44 | return resolve(USER_DATA_HOME, 'data', ...parts) |
| 45 | } |
| 46 | |
| 47 | /** Path under `default/` — shipped templates (persona, heartbeat, skills). */ |
| 48 | export function defaultPath(...parts: string[]): string { |
no outgoing calls
no test coverage detected