← ClaudeAtlas

memory-editlisted

Fetch a memory by ID or title and edit its content or tags. Pass the ID or title in the argument.
oxHive/hivemind · ★ 2 · AI & Automation · score 63
Install: claude install-skill oxHive/hivemind
Edit an existing memory in HiveMind. Input from $ARGUMENTS: a memory ID or title to look up. ## Process ### 1. Fetch the memory - If $ARGUMENTS looks like a memory ID (starts with "mem_"), call `memory_recall` with `id`. - Otherwise call `memory_recall` with `title`. - If not found, say so and suggest using `/memory-search` to find the right ID. ### 2. Show current content Display the current title, content, and tags clearly so the user can see what exists. ### 3. Ask what to change Ask the user what they want to update: content, tags, or both. Wait for their response. ### 4. Apply the update Call `memory_update` with the ID and the new values the user provided. ### 5. Confirm Report: "Updated: [title]". Show the changed fields. ## Rules - Never overwrite a memory without showing the user the current content first. - Do not change fields the user did not explicitly mention.