From aux4-agent-skills
Two-tier memory system — daily notes for logging events and long-term knowledge base for curated insights. Uses aux4 kb commands.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aux4-agent-skills:memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage a two-tier memory system: $ARGUMENTS
Manage a two-tier memory system: $ARGUMENTS
Daily notes (memory/daily/YYYY-MM-DD.md) — Raw log of what happened. Append freely. These are scratch notes, not documentation.
Long-term memory (memory/long-term/ knowledge base) — Curated wisdom: user preferences, recurring patterns, important decisions. Distilled from daily notes during reviews.
| Action | Command |
|---|---|
| Log an event | mkdir -p memory/daily && echo "- <entry>" >> memory/daily/$(date +%Y-%m-%d).md |
| Read today | cat memory/daily/$(date +%Y-%m-%d).md |
| Recent days | for f in $(ls -r memory/daily/ | head -<N>); do echo "=== $f ==="; cat "memory/daily/$f"; done |
| Remember (long-term) | aux4 kb add "<topic>" --content "<text>" --tags "<tags>" --folder memory/long-term |
| Recall | aux4 kb search "<query>" --folder memory/long-term and grep -rl "<query>" memory/daily/ |
| Forget | aux4 kb remove "<topic>" --folder memory/long-term |
| Review | List recent dailies + aux4 kb list --folder memory/long-term |
Log things that might matter later:
Don't log routine operations or things obvious from the codebase.
Promote to long-term when:
Most daily entries are ephemeral — that's fine. Long-term memory should be lean and high-signal.
Use review to read recent daily notes alongside long-term memory:
remembernpx claudepluginhub aux4/agent-skills --plugin aux4-agent-skillsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.