npx claudepluginhub bizuayeu/plugins-weave --plugin EpisodicRAGThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
EpisodicRAG プラグインの設定を対話的に変更するスキルです。 このスキルは自律的には起動しません(ユーザーの明示的な呼び出しが必要)。
📖 パス用語(plugin_root / base_dir / paths)・ID桁数・命名規則は 用語集 を参照
UIメッセージ出力時は必ずコードブロックで囲むこと! VSCode拡張では単一改行が空白に変換されるため、 対話型メッセージは三連バッククォートで囲む必要があります。
📖 共通の実装ガイドライン(パス検証、閾値検証、バリデーション、エラーハンドリング)は _implementation-notes.md を参照してください。
⚠️ 重要: 以下のTodoリストをTodoWriteで作成し、順番に実行すること
TodoWrite items:
1. 現在設定取得 - digest_config showを実行
2. 変更項目確認 - ユーザーに変更内容を質問
3. 変更内容確認 - 変更前後を表示してユーザーに確認
4. 設定更新 - digest_config setを実行
5. 結果報告 - 更新結果をユーザーに報告
| Step | 実行内容 | 使用スクリプト/処理 |
|---|---|---|
| 1 | 現在の設定取得 | python -m interfaces.digest_config show |
| 2 | 変更項目を質問 | Claude がユーザーに質問 |
| 3 | 変更内容確認 | Claude がユーザーに確認 |
| 4 | 設定更新 | python -m interfaces.digest_config set --key "..." --value ... |
| 5 | 結果報告 | Claude がユーザーに報告 |
配置先: scripts/interfaces/digest_config.py
@digest-config weekly threshold を 7 に変更
Claudeの動作:
show で現在の設定を確認set --key "levels.weekly_threshold" --value 7 を実行@digest-config 外部のデータディレクトリを使いたい
Claudeの動作:
trusted-paths add "~/DEV/production" でパスを許可set --key "base_dir" --value "~/DEV/production/EpisodicRAG" で変更@digest-config 設定を確認
Claudeの動作:
show を実行{
"status": "ok",
"config": {
"base_dir": "~/.claude/plugins/.episodicrag",
"trusted_external_paths": ["~/.claude/plugins/.episodicrag"],
"paths": {
"loops_dir": "data/Loops",
"digests_dir": "data/Digests",
"essences_dir": "data/Essences",
"identity_file_path": null
},
"levels": {
"weekly_threshold": 5,
"monthly_threshold": 5,
...
}
},
"resolved_paths": {
"plugin_root": "/path/to/plugin",
"base_dir": "/home/user/.claude/plugins/.episodicrag",
"loops_path": "/home/user/.claude/plugins/.episodicrag/data/Loops",
"digests_path": "/home/user/.claude/plugins/.episodicrag/data/Digests",
"essences_path": "/home/user/.claude/plugins/.episodicrag/data/Essences"
}
}
{
"status": "ok",
"message": "Updated levels.weekly_threshold",
"old_value": 5,
"new_value": 7
}
{
"status": "ok",
"trusted_external_paths": ["~/DEV/production"],
"count": 1
}
EpisodicRAG by Weave | GitHub