minimem 0.0.7 → 0.1.0
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 +7 -4
- package/dist/cli/chunk-BIYUNXYX.js +2689 -0
- package/dist/cli/chunk-BIYUNXYX.js.map +1 -0
- package/dist/cli/index.js +557 -2826
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/minimem-MQXSBGNG.js +8 -0
- package/dist/cli/minimem-MQXSBGNG.js.map +1 -0
- package/dist/index.cjs +381 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +198 -1
- package/dist/index.d.ts +198 -1
- package/dist/index.js +368 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,13 +39,13 @@ Requires Node.js 22+ (uses experimental `node:sqlite`).
|
|
|
39
39
|
### CLI Usage
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
# Initialize a memory directory
|
|
43
|
-
minimem init ~/memories
|
|
44
|
-
|
|
45
42
|
# Set your embedding API key
|
|
46
43
|
export OPENAI_API_KEY=your-key
|
|
47
44
|
# or: export GOOGLE_API_KEY=your-key
|
|
48
45
|
|
|
46
|
+
# Initialize a memory directory (creates files, DB, and indexes in one step)
|
|
47
|
+
minimem init ~/memories
|
|
48
|
+
|
|
49
49
|
# Add some memories
|
|
50
50
|
minimem append "Decided to use PostgreSQL for the main database" --dir ~/memories
|
|
51
51
|
|
|
@@ -88,13 +88,16 @@ mem.close();
|
|
|
88
88
|
|
|
89
89
|
| Command | Description |
|
|
90
90
|
|---------|-------------|
|
|
91
|
-
| `minimem init [dir]` | Initialize a memory directory |
|
|
91
|
+
| `minimem init [dir]` | Initialize a memory directory (creates files, DB, and indexes) |
|
|
92
92
|
| `minimem search <query>` | Semantic search through memories |
|
|
93
93
|
| `minimem sync` | Force re-index memory files |
|
|
94
94
|
| `minimem status` | Show index stats and provider info |
|
|
95
95
|
| `minimem append <text>` | Append to today's daily log |
|
|
96
96
|
| `minimem upsert <file> [content]` | Create or update a memory file |
|
|
97
97
|
| `minimem mcp` | Run as MCP server (stdio) |
|
|
98
|
+
| `minimem store:add <name> <path>` | Register a store in the global manifest |
|
|
99
|
+
| `minimem store:list` | List all registered stores and their links |
|
|
100
|
+
| `minimem store:link <store> <target>` | Link a store to another for cross-store search |
|
|
98
101
|
|
|
99
102
|
### Common Options
|
|
100
103
|
|