@hasna/mementos 0.14.45 → 0.14.47
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/README.md +17 -0
- package/dist/cli/commands/agent.d.ts.map +1 -1
- package/dist/cli/commands/entity.d.ts.map +1 -1
- package/dist/cli/commands/info-history.d.ts.map +1 -1
- package/dist/cli/commands/info-stale.d.ts.map +1 -1
- package/dist/cli/commands/memory-cmd-list.d.ts.map +1 -1
- package/dist/cli/commands/memory-cmd-search.d.ts.map +1 -1
- package/dist/cli/commands/project.d.ts.map +1 -1
- package/dist/cli/commands/relation.d.ts.map +1 -1
- package/dist/cli/commands/system-hooks.d.ts.map +1 -1
- package/dist/cli/commands/system-sessions.d.ts.map +1 -1
- package/dist/cli/commands/system-synthesis.d.ts.map +1 -1
- package/dist/cli/commands/system-tools.d.ts.map +1 -1
- package/dist/cli/helpers.d.ts +18 -1
- package/dist/cli/helpers.d.ts.map +1 -1
- package/dist/cli/index.js +57267 -65903
- package/dist/db/database.d.ts.map +1 -1
- package/dist/index.js +13739 -22808
- package/dist/mcp/index.js +2364 -5747
- package/dist/mcp/tools/agent-tools.d.ts.map +1 -1
- package/dist/mcp/tools/graph-entity-tools.d.ts.map +1 -1
- package/dist/mcp/tools/graph-relation-tools.d.ts.map +1 -1
- package/dist/mcp/tools/hook-tools.d.ts.map +1 -1
- package/dist/mcp/tools/lock-tools.d.ts.map +1 -1
- package/dist/mcp/tools/memory-audit.d.ts.map +1 -1
- package/dist/mcp/tools/memory-crud.d.ts.map +1 -1
- package/dist/mcp/tools/memory-search.d.ts.map +1 -1
- package/dist/mcp/tools/memory-utils.d.ts +13 -0
- package/dist/mcp/tools/memory-utils.d.ts.map +1 -1
- package/dist/mcp/tools/project-tools.d.ts.map +1 -1
- package/dist/mcp/tools/session-tools.d.ts.map +1 -1
- package/dist/mcp/tools/synthesis-tools.d.ts.map +1 -1
- package/dist/mcp/tools/system-tools-memory-admin.d.ts.map +1 -1
- package/dist/server/index.js +2088 -5688
- package/dist/storage.d.ts +24 -1
- package/dist/storage.d.ts.map +1 -1
- package/dist/storage.js +63 -4897
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/mementos",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.47",
|
|
4
4
|
"description": "Universal memory system for AI agents - CLI + MCP server + library API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
],
|
|
33
33
|
"scripts": {
|
|
34
34
|
"clean": "rm -rf dist",
|
|
35
|
-
"build": "bun run clean && bun build src/cli/index.tsx --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk && bun build src/server/index.ts --outdir dist/server --target bun && bun build src/index.ts src/storage.ts --outdir dist --target bun && bun build src/sdk/index.ts --outdir dist/sdk --target bun && tsc --emitDeclarationOnly --outDir dist",
|
|
35
|
+
"build": "bun run clean && bun build src/cli/index.tsx --outdir dist/cli --target bun --external ink --external react --external chalk --external @modelcontextprotocol/sdk --external @hasna/contracts --external @hasna/contracts/schemas --external pg && bun build src/mcp/index.ts --outdir dist/mcp --target bun --external @modelcontextprotocol/sdk --external @hasna/contracts --external @hasna/contracts/schemas --external pg && bun build src/server/index.ts --outdir dist/server --target bun --external @hasna/contracts --external @hasna/contracts/schemas --external pg && bun build src/index.ts src/storage.ts --outdir dist --target bun --external @hasna/contracts --external @hasna/contracts/schemas --external pg && bun build src/sdk/index.ts --outdir dist/sdk --target bun && tsc --emitDeclarationOnly --outDir dist",
|
|
36
36
|
"prepare": "bun run build",
|
|
37
37
|
"prepublishOnly": "bun run typecheck && bun run test",
|
|
38
38
|
"typecheck": "tsc --noEmit",
|