AI SummaryEnables Claude to persistently store and retrieve project context across coding sessions using atuin's key-value store, automatically detecting the current project and branch. Developers working on long-running projects benefit from automatic context recall without manual documentation.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "atuin-memory" skill in my project. Please run this command in my terminal: # Install skill into the correct directory mkdir -p .claude/skills/claude-atuin-memory-skill && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/claude-atuin-memory-skill/SKILL.md "https://raw.githubusercontent.com/cosgroveb/claude-atuin-memory-skill/main/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Check, store, and retrieve project memories from atuin kv. Use when starting work on a project, recalling previous context, storing plans or specs, or when the user mentions memory, atuin, or project context.
Project Memory with Atuin
Store and retrieve project context using atuin kv to persist across sessions.
Project Detection
Reuse these variables in all commands: `bash PROJECT=$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" 2>/dev/null || basename "$PWD") BRANCH=$(git branch --show-current 2>/dev/null) BRANCH=${BRANCH:-main} `
Before Starting Work
`bash echo "=== $PROJECT ($BRANCH) ==="
Discover what memories exist for this project
atuin kv list --namespace "project-metadata" | grep -F "$PROJECT-" || echo "(no memories found)" ` Then retrieve relevant memories: `bash
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster