mem0-plugin/skills/switch-project/SKILL.md
Override the automatic project_id detection for the current directory.
The user provides a project name as an argument: /mem0:switch-project <project-name>
If no project name was given, ask: "What project_id should this directory use?"
Write the mapping to ~/.mem0/project_map.json using the Bash tool:
python3 -c "
import json, os
map_file = os.path.expanduser('~/.mem0/project_map.json')
mapping = {}
if os.path.isfile(map_file):
with open(map_file) as f:
mapping = json.load(f)
mapping[os.getcwd()] = '<PROJECT_NAME>'
os.makedirs(os.path.dirname(map_file), exist_ok=True)
with open(map_file, 'w') as f:
json.dump(mapping, f, indent=2)
print(f'Mapped {os.getcwd()} -> <PROJECT_NAME>')
"
(Replace <PROJECT_NAME> with the user's chosen project name.)
Verify by searching for existing memories:
search_memories with query="project", filters={"AND": [{"user_id": "<active_user_id>"}, {"app_id": "<PROJECT_NAME>"}]}, top_k=1Print:
Switched to project <PROJECT_NAME>.
<N> memories found for this project.
Note: This override persists across sessions for this directory.