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 CHANGED
@@ -1,10 +1,10 @@
1
- # claude-session-continuity-mcp (v1.6.0)
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
  [![npm version](https://img.shields.io/npm/v/claude-session-continuity-mcp.svg)](https://www.npmjs.com/package/claude-session-continuity-mcp)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
- [![Tests](https://img.shields.io/badge/tests-51%20passed-brightgreen.svg)]()
7
+ [![Tests](https://img.shields.io/badge/tests-111%20passed-brightgreen.svg)]()
8
8
  [![Node](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)]()
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.local.json`
65
+ 2. Installs Claude Hooks in `~/.claude/settings.json`
66
66
 
67
- > **v1.6.0:** Multilingual semantic search (94+ languages), cross-language search (EN↔KR), solution semantic search. Full lifecycle hooks with 5 auto-hooks.
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.local.json`):
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] 51 tests (32 feature + 19 continuity)
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
@@ -161,9 +161,16 @@ function install() {
161
161
  // PostToolUse Hook - 파일 변경 시 자동 기록 (Edit, Write)
162
162
  hooks.PostToolUse = [
163
163
  {
164
- matcher: {
165
- tool_name: 'Edit|Write'
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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-session-continuity-mcp",
3
- "version": "1.6.1",
3
+ "version": "1.6.3",
4
4
  "description": "Session Continuity for Claude Code - Never re-explain your project again",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",