rc-memorylisted
Install: claude install-skill rodolfochicone/rc-project
# Memory
The one place for what RC should remember about *this project* across turns and sessions. It is
project-scoped only — never copy memory or learnings to another project or a global location. It
holds three kinds of durable knowledge as plain markdown — no database, no binary, and this skill
never edits source code:
1. **Facts** — curated decisions, conventions, gotchas, glossary, and context (`.rc/memory/`).
2. **Learnings** — recurring corrections/workflows distilled into confidence-scored `trigger → action`
rules (`.rc/memory/`, the continuous-learning loop fed by the `observe` hook).
3. **Golden paths** — a proven multi-step operational route, harvested into a project-local skill,
because a route does not survive being compressed into one line.
It is separate from `rc-workflow-memory` (ephemeral, per-workflow notes under `.rc/tasks/<slug>/`)
and from `lesson-learned` (on-demand reflection on a diff, not a store).
## Routing
The shape of the knowledge decides where it goes; the first match wins:
| The knowledge is… | Goes to |
| --- | --- |
| a standalone statement — a decision, convention, gotcha, term | **A — Facts** |
| a `trigger → action` reflex that fits one line | **B — Learnings** |
| a multi-step route with commands, a required order, and dead-ends | **C — Golden paths** |
| specific to one task's execution | `rc-workflow-memory`, not here |
| a one-off unlikely to recur | nowhere — drop it |
## Store layout
```
.rc/memory/
INDEX.md