From exomemory
Initialize the exomemory directory structure. Run this once to set up the memory system.
How this skill is triggered — by the user, by Claude, or both
Slash command
/exomemory:memory-setupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Initialize the external memory system at `~/.local/share/exomemory/`.
Initialize the external memory system at ~/.local/share/exomemory/.
if [ -d "$HOME/.local/share/exomemory" ]; then
echo "EXISTS"
else
echo "NOT_FOUND"
fi
If EXISTS, ask the user whether to reset or abort. Do NOT overwrite without confirmation.
If proceeding with setup:
mkdir -p "$HOME/.local/share"
cp -r "${CLAUDE_PLUGIN_ROOT}/templates" "$HOME/.local/share/exomemory"
List the created files to confirm:
find "$HOME/.local/share/exomemory" -type f
Tell the user:
~/.local/share/exomemory//exomemory:memory-maintenance monthly to clean up stale entriesProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
npx claudepluginhub hananana/exomemory --plugin exomemory