@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
|
@@ -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.
|