@hasna/instructions 0.5.3 → 0.5.5
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/README.md +8 -3
- package/dist/cli/index.js +540 -340
- package/dist/index.js +365 -266
- package/dist/lib/app-home.d.ts +54 -0
- package/dist/lib/app-home.d.ts.map +1 -0
- package/dist/lib/app-home.test.d.ts +2 -0
- package/dist/lib/app-home.test.d.ts.map +1 -0
- package/dist/lib/raw-store-root.d.ts +12 -8
- package/dist/lib/raw-store-root.d.ts.map +1 -1
- package/dist/lib/station-profile.d.ts.map +1 -1
- package/dist/mcp/index.js +187 -73
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/server/index.js +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -169,9 +169,14 @@ concern (`instructions-serve`), selected by `HASNA_INSTRUCTIONS_DATABASE_URL`.
|
|
|
169
169
|
|
|
170
170
|
## Data Directory
|
|
171
171
|
|
|
172
|
-
Local data (the SQLite store and backups) lives under the
|
|
173
|
-
`~/.hasna/instructions/`
|
|
174
|
-
override
|
|
172
|
+
Local data (the SQLite store and backups) lives under the configs store home,
|
|
173
|
+
resolved through `@hasna/paths`. The legacy `~/.hasna/instructions/` default
|
|
174
|
+
(with the `HASNA_CONFIGS_HOME` exact-app override) stays the effective store
|
|
175
|
+
home until the store has actually been migrated to the XDG config home
|
|
176
|
+
(`~/.config/hasna/configs` on Linux; `~/Library/Application
|
|
177
|
+
Support/Hasna/configs` on macOS) or the operator sets the config-kind override
|
|
178
|
+
`HASNA_CONFIG_HOME` — an existing local store never becomes invisible on
|
|
179
|
+
upgrade.
|
|
175
180
|
|
|
176
181
|
## Session Instruction Rendering
|
|
177
182
|
|