@tpsdev-ai/flair 0.44.8 → 0.44.10
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/dist/cli.js +292 -28
- package/dist/doctor-client.js +55 -1
- package/dist/install/clients.js +50 -2
- package/dist/rem/runner.js +167 -23
- package/dist/resources/MemoryBootstrap.js +267 -65
- package/dist/resources/MemoryReflect.js +15 -13
- package/dist/resources/mcp-tools.js +243 -20
- package/dist/resources/memory-bootstrap-lib.js +58 -0
- package/dist/resources/memory-reflect-lib.js +70 -0
- package/dist/resources/token-estimate.js +25 -0
- package/dist/resources/trust-block.js +16 -7
- package/docs/integrations.md +3 -0
- package/docs/rem.md +6 -0
- package/package.json +1 -1
- package/schemas/memory.graphql +9 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tpsdev-ai/flair",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.10",
|
|
4
4
|
"packageManager": "bun@1.3.10",
|
|
5
5
|
"description": "Identity, memory, and soul for AI agents. Cryptographic identity (Ed25519), semantic memory with local embeddings, and persistent personality — all in a single process.",
|
|
6
6
|
"type": "module",
|
package/schemas/memory.graphql
CHANGED
|
@@ -210,4 +210,13 @@ type MemoryCandidate @table(database: "flair") @export {
|
|
|
210
210
|
reviewRationale: String # required on promote/reject (no rubber-stamp)
|
|
211
211
|
decidedAt: String
|
|
212
212
|
supersedes: String @indexed # previous rejected candidate this replaces
|
|
213
|
+
scopeTag: String # #1205b-1: the authoritative scope:"tagged" tag this candidate was
|
|
214
|
+
# distilled under (e.g. adk:<app>:<user>). Stamped at distillation time by
|
|
215
|
+
# resources/MemoryReflect.ts when scope="tagged", so promotion can consume
|
|
216
|
+
# the per-user scope tag DIRECTLY (src/cli.ts derivePromotedTags' stamped-tag
|
|
217
|
+
# override) instead of re-reading source memories — closing the #1205a seam
|
|
218
|
+
# where an ADK-sourced candidate with all-unreadable sources yields no adk:
|
|
219
|
+
# evidence and would promote tagless (a cross-user leak). Nullable/additive —
|
|
220
|
+
# pre-#1205b candidates and non-tagged (scope:"recent"/"all") distillations
|
|
221
|
+
# read null, unchanged behavior (clean-upgrade-path gate).
|
|
213
222
|
}
|