@hir4ta/memoria 0.3.2 → 0.3.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/.claude-plugin/plugin.json +1 -1
- package/README.md +3 -3
- package/dist/public/assets/{index-_hbs7Kn1.js → index-BpBWarmo.js} +6 -6
- package/dist/public/index.html +1 -1
- package/hooks/session-end.sh +101 -0
- package/hooks/session-start.sh +24 -0
- package/package.json +1 -1
- package/skills/decision/skill.md +49 -2
- package/skills/using-memoria/skill.md +32 -3
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Claude Codeの長期記憶を実現するプラグイン。
|
|
|
8
8
|
|
|
9
9
|
- **セッション自動保存**: SessionEnd/PreCompact時に会話履歴を自動保存
|
|
10
10
|
- **セッション再開**: `/memoria:resume` で過去のセッションを再開
|
|
11
|
-
-
|
|
11
|
+
- **設計決定の自動検出**: セッション終了時に設計決定を自動検出・保存(手動記録も可能)
|
|
12
12
|
- **開発者パターン**: good/badパターンを収集・学習
|
|
13
13
|
- **コーディングルール**: プロジェクト固有のルールを管理
|
|
14
14
|
- **Webダッシュボード**: セッション・決定・パターン・ルールの閲覧・編集
|
|
@@ -52,8 +52,8 @@ winget install jqlang.jq
|
|
|
52
52
|
|
|
53
53
|
| Hook | タイミング | 動作 |
|
|
54
54
|
|------|-----------|------|
|
|
55
|
-
| session-start | セッション開始時 |
|
|
56
|
-
| session-end | セッション終了時 |
|
|
55
|
+
| session-start | セッション開始時 | 関連セッションの提案、未レビュー決定の通知 |
|
|
56
|
+
| session-end | セッション終了時 | 会話履歴を保存、設計決定を自動検出 |
|
|
57
57
|
| pre-compact | 圧縮前 | 進行中のセッションを保存 |
|
|
58
58
|
|
|
59
59
|
### Skills(コマンド)
|