@tpsdev-ai/flair 0.51.0 → 0.51.2
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/build-info.json +3 -3
- package/dist/cli.js +443 -133
- package/dist/lib/daemon-liveness.js +207 -0
- package/dist/lib/upgrade-migrations.js +181 -0
- package/dist/resources/MemoryArchive.js +94 -0
- package/dist/resources/MemoryBootstrap.js +3 -1
- package/dist/resources/SemanticSearch.js +7 -2
- package/dist/resources/mcp-tools.js +106 -1
- package/dist/resources/record-types.js +3 -1
- package/package.json +8 -4
|
@@ -361,8 +361,10 @@ export const RECORD_TYPES = {
|
|
|
361
361
|
// bootstrap — Soul + Memory + predicted-context composite (BootstrapMemories)
|
|
362
362
|
// attention — cross-table aggregate query (AttentionQuery.ts), not a table verb
|
|
363
363
|
// record_usage — usage-signal resource (RecordUsage.ts), not a table verb
|
|
364
|
+
// memory_basement — archive action (flair#1472), not a table verb
|
|
365
|
+
// memory_restore — un-archive action (flair#1472), not a table verb
|
|
364
366
|
//
|
|
365
|
-
export const COMPOSITE_MCP_TOOLS = ["bootstrap", "attention", "record_usage"];
|
|
367
|
+
export const COMPOSITE_MCP_TOOLS = ["bootstrap", "attention", "record_usage", "memory_basement", "memory_restore"];
|
|
366
368
|
// ─── Runtime immutability ───────────────────────────────────────────────────
|
|
367
369
|
// Belt-and-suspenders backstop for the "static, compiled" invariant (see
|
|
368
370
|
// header doc). TypeScript's `as const satisfies` already gives compile-time
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tpsdev-ai/flair",
|
|
3
|
-
"version": "0.51.
|
|
3
|
+
"version": "0.51.2",
|
|
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",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"@harperfast/oauth": "2.5.0",
|
|
66
66
|
"@types/js-yaml": "4.0.9",
|
|
67
67
|
"commander": "14.0.3",
|
|
68
|
-
"harper": "5.2.
|
|
68
|
+
"harper": "5.2.8",
|
|
69
69
|
"harper-fabric-embeddings": "^0.5.0",
|
|
70
70
|
"jose": "6.2.2",
|
|
71
71
|
"js-yaml": "^4.3.1",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"react-native-fs": "npm:empty-npm-package@1.0.0",
|
|
77
77
|
"brace-expansion": "^5.0.9",
|
|
78
78
|
"undici": "^8.9.0",
|
|
79
|
-
"fast-uri": "^4.1.
|
|
79
|
+
"fast-uri": "^4.1.3",
|
|
80
80
|
"hono": "^4.12.34",
|
|
81
81
|
"js-yaml": "^4.3.1",
|
|
82
82
|
"adm-zip": "^0.6.0",
|
|
@@ -84,7 +84,11 @@
|
|
|
84
84
|
"uuid": "^11.1.1",
|
|
85
85
|
"tar": "^7.5.22",
|
|
86
86
|
"@tootallnate/once": "^2.0.1",
|
|
87
|
-
"form-data": "^4.0.6"
|
|
87
|
+
"form-data": "^4.0.6",
|
|
88
|
+
"mysql2": "^3.22.0",
|
|
89
|
+
"mariadb": "~3.4.7",
|
|
90
|
+
"qs": "^6.16.0",
|
|
91
|
+
"fastify": "^5.12.1"
|
|
88
92
|
},
|
|
89
93
|
"devDependencies": {
|
|
90
94
|
"@playwright/test": "1.59.1",
|