@hir4ta/memoria 0.12.6 → 0.12.7
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/.claude-plugin/plugin.json +1 -1
- package/README.ja.md +7 -0
- package/README.md +10 -3
- package/dist/public/apple-touch-icon.png +0 -0
- package/dist/public/assets/index-BfYsSo8v.js +270 -0
- package/dist/public/assets/index-D1hp4wl0.css +1 -0
- package/dist/public/assets/{react-force-graph-2d-Bnu0gQdS.js → react-force-graph-2d-CFWHMv9l.js} +1 -1
- package/dist/public/favicon-128-max.png +0 -0
- package/dist/public/favicon-256-max.png +0 -0
- package/dist/public/favicon-32-max.png +0 -0
- package/dist/public/favicon-512-max.png +0 -0
- package/dist/public/favicon-64-max.png +0 -0
- package/dist/public/index.html +4 -3
- package/dist/server.js +7362 -37
- package/hooks/session-end.sh +12 -8
- package/package.json +21 -16
- package/dist/public/assets/index-CGoTNb8I.js +0 -115
- package/dist/public/assets/index-D3cH5mAP.css +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memoria",
|
|
3
3
|
"description": "A plugin that provides long-term memory for Claude Code. It automatically saves context lost during auto-compact, offering features for session restoration, recording technical decisions, and learning developer patterns.",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.7",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "hir4ta"
|
|
7
7
|
},
|
package/README.ja.md
CHANGED
|
@@ -182,6 +182,13 @@ npx @hir4ta/memoria --dashboard --port 8080
|
|
|
182
182
|
- **Sessions**: セッション一覧・詳細・編集・削除
|
|
183
183
|
- **Decisions**: 技術的な判断の一覧・作成・編集・削除
|
|
184
184
|
- **Rules**: 開発ルール・レビュー観点の閲覧・編集
|
|
185
|
+
- **Patterns**: 学習済みパターンの閲覧(グッドパターン、アンチパターン、エラー解決策)
|
|
186
|
+
- **Statistics**: アクティビティチャート・セッション統計の表示
|
|
187
|
+
- **Graph**: タグ共有によるセッション関連性の可視化
|
|
188
|
+
|
|
189
|
+
#### 言語切り替え
|
|
190
|
+
|
|
191
|
+
ダッシュボードは日本語と英語に対応しています。ヘッダーの言語切り替えボタン(EN/JA)をクリックして切り替えできます。設定はlocalStorageに保存されます。
|
|
185
192
|
|
|
186
193
|
## 仕組み
|
|
187
194
|
|
package/README.md
CHANGED
|
@@ -116,9 +116,9 @@ At session start, recent 3 sessions are shown:
|
|
|
116
116
|
|
|
117
117
|
```
|
|
118
118
|
**Recent sessions:**
|
|
119
|
-
1. [abc123] JWT
|
|
120
|
-
2. [def456]
|
|
121
|
-
3. [ghi789]
|
|
119
|
+
1. [abc123] JWT authentication implementation (2026-01-27, main)
|
|
120
|
+
2. [def456] Dashboard UI improvements (2026-01-26, main)
|
|
121
|
+
3. [ghi789] Bug fixes (2026-01-25, main)
|
|
122
122
|
|
|
123
123
|
Continue from a previous session? Use `/memoria:resume <id>`
|
|
124
124
|
```
|
|
@@ -182,6 +182,13 @@ npx @hir4ta/memoria --dashboard --port 8080
|
|
|
182
182
|
- **Sessions**: List, view, edit, delete sessions
|
|
183
183
|
- **Decisions**: List, create, edit, delete technical decisions
|
|
184
184
|
- **Rules**: View and edit dev rules and review guidelines
|
|
185
|
+
- **Patterns**: View learned patterns (good patterns, anti-patterns, error solutions)
|
|
186
|
+
- **Statistics**: View activity charts and session statistics
|
|
187
|
+
- **Graph**: Visualize session connections by shared tags
|
|
188
|
+
|
|
189
|
+
#### Language Switching
|
|
190
|
+
|
|
191
|
+
The dashboard supports English and Japanese. Click the language toggle (EN/JA) in the header to switch. The preference is saved to localStorage.
|
|
185
192
|
|
|
186
193
|
## How It Works
|
|
187
194
|
|
|
Binary file
|