@strvmarv/total-recall 0.7.1 → 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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "total-recall",
3
3
  "description": "Multi-tiered memory and knowledge base with semantic search, auto-compaction, and built-in evaluation. Works across Claude Code, Copilot CLI, OpenCode, Cline, and Cursor.",
4
- "version": "0.7.1",
4
+ "version": "0.7.2",
5
5
  "author": {
6
6
  "name": "strvmarv"
7
7
  },
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "total-recall",
3
3
  "description": "Multi-tiered memory and knowledge base for TUI coding assistants",
4
- "version": "0.1.0",
4
+ "version": "0.7.2",
5
5
  "skills": "./skills/",
6
6
  "mcpServers": {
7
7
  "total-recall": {
8
- "command": "npx",
9
- "args": ["-y", "@strvmarv/total-recall"]
8
+ "command": "total-recall"
10
9
  }
11
10
  }
12
11
  }
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "total-recall",
3
3
  "description": "Multi-tiered memory and knowledge base for TUI coding assistants",
4
- "version": "0.1.0",
4
+ "version": "0.7.2",
5
5
  "skills": "./skills/",
6
6
  "hooks": "./hooks/hooks-cursor.json",
7
7
  "mcpServers": {
8
8
  "total-recall": {
9
- "command": "npx",
10
- "args": ["-y", "@strvmarv/total-recall"]
9
+ "command": "total-recall"
11
10
  }
12
11
  }
13
12
  }
@@ -2,12 +2,11 @@
2
2
  "hooks": {
3
3
  "SessionStart": [
4
4
  {
5
- "matcher": "startup|clear|compact",
5
+ "matcher": "startup|resume|clear|compact",
6
6
  "hooks": [
7
7
  {
8
8
  "type": "command",
9
- "command": "bash \"$CURSOR_PLUGIN_ROOT/hooks/session-start/run.sh\"",
10
- "async": false
9
+ "command": "bash \"$CURSOR_PLUGIN_ROOT/hooks/session-start/run.sh\""
11
10
  }
12
11
  ]
13
12
  }
package/hooks/hooks.json CHANGED
@@ -2,12 +2,11 @@
2
2
  "hooks": {
3
3
  "SessionStart": [
4
4
  {
5
- "matcher": "startup|clear|compact",
5
+ "matcher": "startup|resume|clear|compact",
6
6
  "hooks": [
7
7
  {
8
8
  "type": "command",
9
- "command": "bash \"$CLAUDE_PLUGIN_ROOT/hooks/session-start/run.sh\"",
10
- "async": false
9
+ "command": "bash \"$CLAUDE_PLUGIN_ROOT/hooks/session-start/run.sh\""
11
10
  }
12
11
  ]
13
12
  }
@@ -18,8 +17,7 @@
18
17
  "hooks": [
19
18
  {
20
19
  "type": "command",
21
- "command": "bash \"$CLAUDE_PLUGIN_ROOT/hooks/session-end/run.sh\"",
22
- "async": false
20
+ "command": "bash \"$CLAUDE_PLUGIN_ROOT/hooks/session-end/run.sh\""
23
21
  }
24
22
  ]
25
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strvmarv/total-recall",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Multi-tiered memory and knowledge base plugin for TUI coding assistants",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",