用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jmagly/aiwg --skill ralph-reflect命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| namespace | aiwg |
| name | ralph-reflect |
| platforms | ["all"] |
| description | View and manage agent loop reflections and episodic memory |
| commandHint | {"category":"ralph"} |
View, search, and manage reflections from agent loop iterations.
Manage the Reflexion episodic memory stored in .aiwg/ralph/reflections/:
Display reflections for a specific loop or the most recent loop.
.aiwg/ralph/reflections/loops/Show recurring patterns across all loops.
.aiwg/ralph/reflections/patterns/Archive and clear reflection history.
show [loop-id] - Show reflections for loop (default: latest)patterns - Show learned patternsclear - Archive and clear reflections--format [yaml|markdown|summary] - Output format (default: markdown)--last [n] - Show only last n reflections--loop [id] - Filter by loop IDThis skill's persistence flows through resolveStorage('reflections'). On the default fs backend reflections live at .aiwg/reflections/. To redirect into Obsidian, Logseq, Fortemi, or another backend without changing this skill, configure roots.reflections or backends.reflections in .aiwg/storage.config (#934).
When this skill needs to read/write reflections from a Bash step, prefer the storage-routed CLI:
aiwg reflections list --prefix sessions/
aiwg reflections get sessions/2026-04-28.md
echo "# reflection" | aiwg reflections put sessions/2026-04-28.md
echo '{"event":"reflect","summary":"..."}' | aiwg reflections append-log sessions/log.jsonl
The legacy direct-fs paths continue to work on the default fs backend — byte-identical to what the adapter writes — but only the adapter route honors storage.config redirection.