feat(skills): add remember bundled skill#156
Merged
emal-avala merged 3 commits intomainfrom Apr 22, 2026
Merged
Conversation
Gives users a one-liner to save insights with the two-step write discipline (file + MEMORY.md index), without having to explain the memory format every time. The prompt enforces: - pick the right memory type (user / feedback / project / reference) - kebab-case filename, required frontmatter fields - one-line index entry under the 150-char limit - no duplicates, no content derivable from the codebase
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
3 tasks
# Conflicts: # crates/lib/src/skills/mod.rs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the `remember` bundled skill — a one-liner for users to save insights to memory with the correct two-step write discipline (file + MEMORY.md index) baked in.
Before: "remember that I prefer X" requires the agent to re-derive the memory write protocol from scratch each time, and the user hopes it got the index format right.
After: `/remember` triggers a skill prompt that enforces the right type classification, filename, frontmatter, and index line format.
Why
The memory system already has strict write discipline (see `crates/lib/src/memory/writer.rs`). But invoking it consistently from free-form user input is error-prone — the agent sometimes writes straight into MEMORY.md, picks the wrong type, or duplicates an existing memory. This skill codifies the correct flow.
Complements `/btw` (which writes a free-form note without asking the model) — `/remember` asks the model to classify, name, and dedupe, which is more appropriate when the insight is structured or nuanced.
Test plan