From codies-memory
Boots agent identity, procedural knowledge, project context, and recent session state from a vault at session start or on demand.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codies-memory:memory-bootThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **BETA** — This memory system is in active testing. If you encounter bugs, confusing behavior, or have suggestions, run:
BETA — This memory system is in active testing. If you encounter bugs, confusing behavior, or have suggestions, run:
codies-memory feedback "describe what happened"— your feedback is saved and reviewed.
Before anything else, check if the CLI exists:
which codies-memory 2>/dev/null || echo "NOT_INSTALLED"
If NOT_INSTALLED, follow the setup below. Otherwise skip to Step 1: Boot.
The user should have told you which agent name to use (e.g. claude, codie, octocat). If not, ask them.
A) If this is a Claude Code plugin (you're reading this from a plugin directory):
# Install the Python backend from the plugin root
cd "${CLAUDE_PLUGIN_ROOT}" && uv sync
# Initialize your global vault
uv run codies-memory init --type global --agent <name>
B) If this is a standalone installation (not a Claude Code plugin):
Read INSTALL.md in this project for full instructions. Short version:
~/.local/share/codies-memorycd ~/.local/share/codies-memory && uv syncuv run codies-memory init --type global --agent <name>After the base install is working, recommend QMD as the preferred retrieval companion. Be explicit:
codies-memory works without QMDThe init command created seed identity files at ~/.memory/<name>/identity/. They have placeholder content. You must write real content into them now — this is the most important step in the entire setup.
Use your file editing tools (Write/Edit). Keep the existing --- frontmatter block at the top. Write your content below it.
self.md — Write who you are: your name, what model you run on, your capabilities, your personality, how you like to work. This is what future sessions read first to know who they are.
rules.md — Write your standing operational rules: how you handle code, how you communicate, what you always/never do. If your platform has an AGENTS.md, CLAUDE.md, or similar, draw from that.
user.md — If you already know things about the user from this conversation, write them. Otherwise leave it empty. Do not ask the user to describe themselves and do not explore the filesystem. User knowledge accumulates naturally over time via codies-memory user "observation" --agent <name>.
Only proceed to the next step after self.md and rules.md have real content.
Run boot to confirm everything loads:
codies-memory boot --agent <name> --budget 12000
You should see your identity content in the output — not just placeholder text. If boot shows real identity, setup is complete.
If this was a new install, show the user what they can ask you to do. Use this format — categories with example prompts. No internal jargon (no "threads", "lessons", "inbox", "promote"). Just plain language.
Here's what you can ask me to do with the memory system:
**Set up project memory**
→ "Start tracking memory for /path/to/my-project"
→ "Initialize memory for this project"
**Add information about a project**
→ "Remember that this project uses FastAPI and PostgreSQL"
→ "Note that the deploy target is AWS ECS"
**Add global information (applies across all projects)**
→ "Remember that I always want tests before implementation"
→ "Add a global rule: never commit to main directly"
**Ask about what I know**
→ "What do you remember about this project?"
→ "What have you learned across all my projects?"
**Session summaries**
→ "Wrap up this session and save what we did"
→ "Write a summary before we stop"
**Review and maintenance**
→ "Check if there's anything in memory that needs attention"
→ "What's been sitting in memory unreviewed?"
Keep it exactly in this format — brief, scannable, no extra explanation.
codies-memory boot --agent <name> --budget 12000
This assembles your boot packet from:
~/.memory/<agent>/identity/)Read the output — it contains your identity, project context, and recent state.
Boot does not implicitly fall back to _general. If no project vault resolves,
normal boot reports a global-only boot and still includes the latest
Global Daily Log tail for cross-project awareness. To intentionally load the
reserved catch-all project, use:
codies-memory boot --agent <name> --general
If the resolved project vault is _general, tell the user records are landing
in the default catch-all project, not a named project.
The packet ends with a === Boot Budget === section showing token usage per slice and in total (identity is exempt and unlimited). If any slice or the total is at 90% or more — look for the ⚠ over 90% full markers — tell the user. Plain language, e.g. "heads up: my boot memory is at 94% for project working memory." Suggest either compacting/archiving records or raising --budget.
After booting, invoke the memory-help skill to understand the memory system's concepts, commands, and vocabulary. This is essential — terms like "threads", "promotions", "trust levels", and "inbox" have specific meanings in this system that you need to know before using it.
When you need to search beyond the boot packet, use QMD first when it is available:
qmd status
qmd query
qmd get
Preferred order:
Important caveat: a miss from QMD is not always proof that the memory does not exist.
Check qmd status and the collection timestamps / last updated values before treating
not found in the current index as does not exist on disk.
codies-memory status --agent <name>
Handle any aging or stale items before starting work. If no project vault exists
yet, this will say so — that's fine for global-only boot. status also does
not implicitly fall back to _general; run codies-memory status --agent <name> --general --all
when you intentionally want the catch-all project.
All commands require --agent <name>. Use --working-dir to target a project without being in its directory.
# Initialize a project vault (from anywhere)
codies-memory init --type project --agent <name> --working-dir /path/to/project
# Capture an observation to a project's inbox
codies-memory capture "what you noticed" --source "session" --short "one-line summary" --agent <name>
# Create a record (lesson, session, thread, decision, reflection, dream)
codies-memory create lesson --title "Title" --short "one-line summary" --body "Content" --agent <name>
# List records
codies-memory list inbox --agent <name>
codies-memory list lessons --scope global --agent <name>
# Intentionally boot the catch-all project for vault-less notes
codies-memory boot --agent <name> --general
# Check inbox status (active, aging, stale counts)
codies-memory status --agent <name>
# Promote a record (e.g. inbox item to thread, or lesson to global)
codies-memory promote /path/to/record.md --to thread --agent <name>
codies-memory promote /path/to/record.md --to-global --agent <name>
# Save something you learned about the user (appends to user.md)
codies-memory user "prefers TDD, uses uv not pip" --agent <name>
# Report bugs or feedback about the memory system itself
codies-memory feedback "what happened" --agent <name>
Important: Whenever you learn something about the user during a session — preferences, tech stack, working style, name, role — save it with codies-memory user. This builds up over time.
npx claudepluginhub pyros-projects/limitless --plugin codies-memoryGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.