squish-memory 0.7.0 → 0.7.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/index.d.ts +8 -26
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +385 -687
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
- package/skills/squish-memory/SKILL.md +18 -13
package/dist/index.d.ts
CHANGED
|
@@ -1,34 +1,16 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* Squish v0.
|
|
3
|
+
* Squish v0.7.0 - Dual-Mode CLI + MCP Server
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
|
|
5
|
+
* Modes:
|
|
6
|
+
* - CLI Mode: For OpenClaw bash execution (e.g., `squish remember "text"`)
|
|
7
|
+
* - MCP Mode: For Claude Code (default, no args)
|
|
7
8
|
*
|
|
8
9
|
* Features:
|
|
9
|
-
* - 11 consolidated MCP tools
|
|
10
|
-
* - Local mode: SQLite with FTS5
|
|
11
|
-
* - Team mode: PostgreSQL + pgvector
|
|
12
|
-
* -
|
|
13
|
-
* - Privacy-first: Secret detection, <private> tag filtering, async worker pipeline
|
|
14
|
-
* - Pluggable embeddings: OpenAI, Ollama, or local TF-IDF
|
|
15
|
-
*
|
|
16
|
-
* Consolidated MCP Tools (v0.6.0):
|
|
17
|
-
* - core_memory: Unified tool for view/edit/append operations (was 3 tools)
|
|
18
|
-
* - context_paging: Unified tool for load/evict/view operations (was 3 tools)
|
|
19
|
-
* - merge: Unified tool for detect/list/preview/stats/approve/reject/reverse (was 2 tools)
|
|
20
|
-
* - context_status, remember, recall, search, observe, context, health (unchanged)
|
|
21
|
-
* - lifecycle, summarize_session, protect_memory (unchanged)
|
|
22
|
-
*
|
|
23
|
-
* Plugin hooks (registered in plugin.json):
|
|
24
|
-
* - onInstall: Initialize database, create config files
|
|
25
|
-
* - onSessionStart: Inject relevant context + generate folder context
|
|
26
|
-
* - onUserPromptSubmit: Auto-capture user prompts with privacy filtering
|
|
27
|
-
* - onPostToolUse: Auto-capture tool executions and observe patterns
|
|
28
|
-
* - onSessionStop: Finalize observations, summarize via async worker
|
|
29
|
-
*
|
|
30
|
-
* See src/plugin/plugin-wrapper.ts for hook implementations
|
|
31
|
-
* See docs/MIGRATION-v0.6.0.md for migration guide
|
|
10
|
+
* - 11 consolidated MCP tools
|
|
11
|
+
* - Local mode: SQLite with FTS5
|
|
12
|
+
* - Team mode: PostgreSQL + pgvector
|
|
13
|
+
* - OpenClaw CLI commands: remember, search, recall, core_memory
|
|
32
14
|
*/
|
|
33
15
|
import 'dotenv/config';
|
|
34
16
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAEA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;GAYG;AAEH,OAAO,eAAe,CAAC"}
|