agent-loop-ext
Crash-resilient external agent loop with state persistence and CI/CD integration
View and manage agent loop reflections and episodic memory
$ npx -y skills add jmagly/aiwg --skill ralph-reflect --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ralph-reflectContext preview
The summary Claude sees to decide when to auto-load this skill.
View and manage agent loop reflections and episodic memory
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.
1. Load reflections from `.aiwg/ralph/reflections/loops/` 2. Display each reflection with:
Show recurring patterns across all loops.
1. Load `.aiwg/ralph/reflections/patterns/` 2. Display patterns by frequency 3. Show success rate for each pattern 4. Highlight patterns applicable to current context
Archive and clear reflection history.
1. Archive current reflections to timestamped directory 2. Reset loops and patterns directories 3. Preserve index.yaml
This 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.jsonlThe 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.
Reusable project context and specialist workflows for the AI tools you already use. Plan software, coordinate specialist reviews, prepare campaigns, investigate incidents, organize research, curate media, and maintain operational knowledge.
Repo: jmagly/aiwg
Crash-resilient external agent loop with state persistence and CI/CD integration
Detect requests for iterative autonomous agent loops and route to the appropriate loop executor
Automatically execute tests when code-generating agents modify source files, enforcing the execute-before-return pattern
Enable agent loops to learn from similar past tasks and share patterns across loops
Query and manage the executable feedback debug memory
Execute tests on generated code and iterate until passing