@lorekit/cli 1.52.2 → 1.52.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lorekit/cli",
3
- "version": "1.52.2",
3
+ "version": "1.52.3",
4
4
  "description": "Install the LoreKit shared-memory skill and run health checks for the LoreKit MCP server.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -62,4 +62,8 @@ Wildcards work **only** in `memory.search` — not in `memory.list`,
62
62
  2. `repo::` must include a `/` (owner/repo); `repo::mthines` → 400.
63
63
  3. `branch::` must have exactly two `::` separators.
64
64
  4. Only `global`, `project`, `repo`, `branch` prefixes are valid.
65
- 5. Segments are trimmed and lowercased on ingest.
65
+ 5. Segments are trimmed and lowercased on ingest by the MCP tools (`memory.write`
66
+ validates through the normalising `validateScope`). The REST write path
67
+ (`POST /memories`) stores the scope EXACTLY as sent, so `memories.scope` can
68
+ hold mixed case — which is why a `?scope=` filter on the `/memories` routes is
69
+ validated but never lowercased and matches the stored string exactly.