@@ -113,7 +113,7 @@ TodoWrite({
113113
1141141 . ** generate_digest_auto.sh 実行**
115115``` bash
116- cd Plugins/EpisodicRAG/ scripts
116+ cd scripts
117117bash generate_digest_auto.sh
118118```
119119
@@ -163,7 +163,7 @@ bash generate_digest_auto.sh
163163 ```
164164 - save_provisional_digest.py実行:
165165 ```bash
166- cd Plugins / EpisodicRAG / scripts
166+ cd scripts
167167 python3 save_provisional_digest.py weekly ' <individual_digests JSON>' -- append
168168 ```
169169 - ** -- append** : 既存Provisionalファイルに追加(複数回/ digestでLoopを追加する場合)
@@ -192,7 +192,7 @@ bash generate_digest_auto.sh
192192
1931931 . ** generate_digest_auto.sh 実行**
194194```bash
195- cd Plugins / EpisodicRAG / scripts
195+ cd scripts
196196bash generate_digest_auto.sh {{type }}
197197```
198198
@@ -258,7 +258,7 @@ bash generate_digest_auto.sh {{type}}
258258 ```
259259 - save_provisional_digest.py実行:
260260 ```bash
261- cd Plugins / EpisodicRAG / scripts
261+ cd scripts
262262 python3 save_provisional_digest.py {{next_level}} ' <individual_digests JSON>'
263263 ```
264264 - ** 注** : 次階層用は新規作成なので -- append なし
@@ -280,7 +280,7 @@ bash generate_digest_auto.sh {{type}}
280280
2812816 . ** finalize_from_shadow.py 実行**
282282```bash
283- cd Plugins / EpisodicRAG / scripts
283+ cd scripts
284284python3 finalize_from_shadow.py {{type }} " 承認されたタイトル"
285285```
286286 このコマンドが実行する処理:
@@ -311,7 +311,7 @@ python3 finalize_from_shadow.py {{type}} "承認されたタイトル"
311311 ```
312312 - save_provisional_digest.py実行:
313313 ```bash
314- cd Plugins / EpisodicRAG / scripts
314+ cd scripts
315315 python3 save_provisional_digest.py < next_level> ' <individual_digests JSON>'
316316 ```
317317 - 次階層Provisionalファイル作成:
@@ -379,9 +379,9 @@ python3 finalize_from_shadow.py {{type}} "承認されたタイトル"
379379## 詳細仕様
380380
381381** 完全な仕様とプロセスフロー** :
382- - ` Plugins/EpisodicRAG/ scripts/generate_digest_auto.sh`
383- - ` Plugins/EpisodicRAG/ agents/digest-analyzer.md`
384- - ` Plugins/EpisodicRAG/ .claude-plugin/config.json`
382+ - ` scripts/generate_digest_auto.sh `
383+ - ` agents/digest-analyzer.md `
384+ - ` .claude-plugin/config.json `
385385
386386** 要件** :
387387- Claude Opus 4.5(Task tool, Subagent機能)
@@ -398,7 +398,7 @@ python3 finalize_from_shadow.py {{type}} "承認されたタイトル"
398398
3993991 . ** Bash tool** : スクリプト実行
400400 ``` python
401- Bash(command = " cd Plugins/EpisodicRAG/ scripts && bash generate_digest_auto.sh" )
401+ Bash(command = " cd scripts && bash generate_digest_auto.sh" )
402402 ```
403403
4044042 . ** Task tool** : DigestAnalyzerエージェント起動
@@ -423,15 +423,15 @@ python3 finalize_from_shadow.py {{type}} "承認されたタイトル"
4234233 . ** Edit tool** : ShadowGrandDigest.txt更新
424424 ``` python
425425 Edit(
426- file_path = " Plugins/EpisodicRAG/ data/Essences/ShadowGrandDigest.txt" ,
426+ file_path = " data/Essences/ShadowGrandDigest.txt" ,
427427 old_string = ' PLACEHOLDER...' ,
428428 new_string = ' {"digest": {...}} '
429429 )
430430 ```
431431
4324324 . ** Read tool** : 結果確認
433433 ``` python
434- Read(file_path = " Plugins/EpisodicRAG/ data/Essences/GrandDigest.txt" )
434+ Read(file_path = " data/Essences/GrandDigest.txt" )
435435 ```
436436
437437### 引数の取得
0 commit comments