@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpsdev-ai/flair",
3
- "version": "0.44.8",
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",
@@ -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
  }