superlocalmemory 2.3.2 → 2.3.3
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/bin/slm +15 -1
- package/package.json +1 -1
package/bin/slm
CHANGED
|
@@ -61,6 +61,15 @@ case "$1" in
|
|
|
61
61
|
"$SLM_DIR/bin/superlocalmemoryv2:reset" "$@"
|
|
62
62
|
;;
|
|
63
63
|
|
|
64
|
+
ui|dashboard)
|
|
65
|
+
PORT="${2:-8765}"
|
|
66
|
+
echo "Starting SuperLocalMemory Web Dashboard..."
|
|
67
|
+
echo "URL: http://localhost:$PORT"
|
|
68
|
+
echo "API Docs: http://localhost:$PORT/api/docs"
|
|
69
|
+
echo ""
|
|
70
|
+
python3 "$SLM_DIR/ui_server.py" --port "$PORT"
|
|
71
|
+
;;
|
|
72
|
+
|
|
64
73
|
serve|server)
|
|
65
74
|
PORT="${2:-8417}"
|
|
66
75
|
echo "Starting SuperLocalMemory MCP HTTP server..."
|
|
@@ -146,7 +155,11 @@ PATTERN LEARNING:
|
|
|
146
155
|
slm patterns list [threshold] List learned patterns
|
|
147
156
|
slm patterns context [threshold] Get coding identity context
|
|
148
157
|
|
|
149
|
-
|
|
158
|
+
WEB DASHBOARD:
|
|
159
|
+
slm ui [PORT] Start web dashboard (default port 8765)
|
|
160
|
+
Opens at http://localhost:PORT
|
|
161
|
+
|
|
162
|
+
HTTP SERVER (MCP):
|
|
150
163
|
slm serve [PORT] Start MCP HTTP server (default port 8417)
|
|
151
164
|
For ChatGPT/remote: ngrok http PORT
|
|
152
165
|
|
|
@@ -195,6 +208,7 @@ EOF
|
|
|
195
208
|
echo " list - List recent memories"
|
|
196
209
|
echo " status - System status"
|
|
197
210
|
echo " context - Project context"
|
|
211
|
+
echo " ui - Start web dashboard"
|
|
198
212
|
echo " serve - Start MCP HTTP server"
|
|
199
213
|
echo " profile - Manage profiles"
|
|
200
214
|
echo " graph - Knowledge graph operations"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superlocalmemory",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"description": "Your AI Finally Remembers You - Local-first intelligent memory system for AI assistants. Works with Claude, Cursor, Windsurf, VS Code/Copilot, Codex, and 16+ AI tools. 100% local, zero cloud dependencies.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-memory",
|