← ClaudeAtlas

rememberlisted

Land a lesson as an enforcement asset so the same mistake cannot repeat. Use when the user invokes "$remember", says "remember this", "learn from this", "don't do that again", "배워둬", "기억해둬", "같은 실수 하지마", when a finalize receipt suggests lessons from recorded deviations, or when a painful debugging/rework session just ended and its cause is nameable.
yansfil/sasu · ★ 1 · AI & Automation · score 64
Install: claude install-skill yansfil/sasu
# remember The sasu guy is never told the same thing twice. This skill turns a lesson into a landed asset: a documented fact, a machine-checked invariant, or a regression test. A lesson that only becomes prose is not learned; it must end up somewhere that a machine or a future session is forced to encounter. Match the user's language by default. ## The Landing Model Every lesson gets classified twice, then landed: | Kind | What it is | Landing | Enforced by | | --- | --- | --- | --- | | fact | something agents must know (build quirks, gotchas, commands) | body in `docs/**`, one index line in AGENTS.md | auto-loaded context | | invariant | "when X changes, Y must hold" | `agents/rules/invariants/<ID>.md` via `rules add` | `ship` pre-push gate + implement plan injection | | regression | "a test would have caught this" | a real test in the project's own suite | the project's CI / verification plan | | Route | Where it goes | | --- | --- | | project | the target project, per the table above | | user | the user's shared reference files (`~/.claude/CLAUDE.md`, `~/.codex/AGENTS.md`), only with explicit confirmation | | harness | a proposed diff to the engineering-harness repo (SKILL.md or scripts); never applied without confirmation | ## Inputs - An explicit lesson from the user in conversation. - `rememberSuggestions` from a `finalize` receipt, and the `deviations` array in the latest run's `state.json`. - A just-finished incident: name the cause before it evaporates. ## M