list-learned-actions
Show what’s available to the agent in this project — saved actions, cross-session memories, the UI skeleton, and plugin commands. Pair with /run-action to replay one.
/rn-dev-agent:list-learned-actions [keyword]The optional keyword filters all sections by substring match (case-insensitive).
Examples
Section titled “Examples”/rn-dev-agent:list-learned-actions/rn-dev-agent:list-learned-actions login/rn-dev-agent:list-learned-actions cartWhat it shows
Section titled “What it shows”Four sections, each scoped to the current project:
| Section | What it lists | Source |
|---|---|---|
| A. Memories | Past feedback the agent persisted across sessions | ~/.claude/projects/<encoded-cwd>/memory/feedback_*.md |
| B. Actions | Saved replay-ready flows | .rn-agent/actions/<name>.yaml |
| C. UI skeleton | Semantic-name → testID map | .rn-agent/skeleton.yaml |
| D. Plugin commands | Slash commands the plugin exposes | from the plugin manifest |
When to run
Section titled “When to run”- At the start of a task, before composing manual
device_*walks — reuse what’s there - To find the right action name to pass to
/run-action - When debugging — see what memories the agent has accumulated
- During onboarding — confirms
/setupscaffolded the project successfully
See also
Section titled “See also”/run-action— replay an action by name- Actions — what saved actions are and how the agent uses them
/test-feature— record a new action