Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:56,522
forks:6,443
updated:May 23, 2026 at 11:50
SKILL.md
| name | switch-project |
| description | Override the auto-detected project scope |
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": "<id>"}, {"app_id": "<PROJECT_NAME>"}]}, limit=1Print:
Switched to project <PROJECT_NAME>.
<N> memories found for this project.
Note: This override persists across sessions for this directory.