fix: update README for marketplace installation and improve hooks_cli file encoding

This commit is contained in:
Tal Muskal
2026-04-08 19:33:16 +03:00
parent 4de5229f10
commit 34c8f8c1b8
2 changed files with 3 additions and 8 deletions
+2 -7
View File
@@ -11,13 +11,8 @@ A Claude Code plugin that gives your AI a persistent memory system. Mine project
### Claude Code Marketplace
```bash
claude plugin add mempalace
```
### Git
```bash
claude plugin add --git https://github.com/milla-jovovich/mempalace
claude plugin marketplace add milla-jovovich/mempalace
claude plugin install --scope user mempalace
```
### Local Clone
+1 -1
View File
@@ -46,7 +46,7 @@ def _count_human_messages(transcript_path: str) -> int:
return 0
count = 0
try:
with open(path) as f:
with open(path, encoding="utf-8", errors="replace") as f:
for line in f:
try:
entry = json.loads(line)