claude-session-continuity-mcp 1.6.1 → 1.6.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/README.md +8 -6
- package/dist/hooks/install.js +10 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# claude-session-continuity-mcp (v1.6.
|
|
1
|
+
# claude-session-continuity-mcp (v1.6.2)
|
|
2
2
|
|
|
3
3
|
> **Zero Re-explanation Session Continuity for Claude Code** — Automatic context capture + semantic search
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/claude-session-continuity-mcp)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
|
-
[]()
|
|
8
8
|
[]()
|
|
9
9
|
|
|
10
10
|
## The Problem
|
|
@@ -62,9 +62,9 @@ npm install claude-session-continuity-mcp
|
|
|
62
62
|
|
|
63
63
|
**That's it!** The postinstall script automatically:
|
|
64
64
|
1. Registers MCP server in `~/.claude.json`
|
|
65
|
-
2. Installs Claude Hooks in `~/.claude/settings.
|
|
65
|
+
2. Installs Claude Hooks in `~/.claude/settings.json`
|
|
66
66
|
|
|
67
|
-
> **v1.6.
|
|
67
|
+
> **v1.6.1:** Fixed critical bug where hooks were installed to wrong settings file. Now correctly installs to `~/.claude/settings.json`. Auto-migrates existing users from `settings.local.json`.
|
|
68
68
|
|
|
69
69
|
### What Gets Installed
|
|
70
70
|
|
|
@@ -80,7 +80,7 @@ npm install claude-session-continuity-mcp
|
|
|
80
80
|
}
|
|
81
81
|
```
|
|
82
82
|
|
|
83
|
-
**Claude Hooks** (in `~/.claude/settings.
|
|
83
|
+
**Claude Hooks** (in `~/.claude/settings.json`):
|
|
84
84
|
```json
|
|
85
85
|
{
|
|
86
86
|
"hooks": {
|
|
@@ -446,11 +446,13 @@ npm run test:coverage
|
|
|
446
446
|
- [x] Semantic search (embeddings)
|
|
447
447
|
- [x] Multilingual pattern detection (KO/EN/JA)
|
|
448
448
|
- [x] Git commit integration
|
|
449
|
-
- [x]
|
|
449
|
+
- [x] 111 tests (6 test suites)
|
|
450
450
|
- [x] GitHub Actions CI/CD
|
|
451
451
|
- [x] Multilingual semantic search (v1.6.0 - multilingual-e5-small)
|
|
452
452
|
- [x] Cross-language search EN↔KR (v1.6.0)
|
|
453
453
|
- [x] Solution semantic search (v1.6.0)
|
|
454
|
+
- [x] Fix hooks settings file path (v1.6.1 - settings.json, not settings.local.json)
|
|
455
|
+
- [x] Auto-migrate legacy hooks (v1.6.1)
|
|
454
456
|
- [ ] sqlite-vec native vector search (v2 - when data > 1000 records)
|
|
455
457
|
- [ ] Web dashboard
|
|
456
458
|
- [ ] Cloud sync option
|
package/dist/hooks/install.js
CHANGED
|
@@ -161,9 +161,16 @@ function install() {
|
|
|
161
161
|
// PostToolUse Hook - 파일 변경 시 자동 기록 (Edit, Write)
|
|
162
162
|
hooks.PostToolUse = [
|
|
163
163
|
{
|
|
164
|
-
matcher:
|
|
165
|
-
|
|
166
|
-
|
|
164
|
+
matcher: 'Edit',
|
|
165
|
+
hooks: [
|
|
166
|
+
{
|
|
167
|
+
type: 'command',
|
|
168
|
+
command: 'npm exec -- claude-hook-post-tool'
|
|
169
|
+
}
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
matcher: 'Write',
|
|
167
174
|
hooks: [
|
|
168
175
|
{
|
|
169
176
|
type: 'command',
|