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
Consolidate memories — merge duplicates, resolve contradictions, prune stale
Export project memories to a portable Markdown file
Delete memories by search or ID — confirms before deleting
Diagnose mem0 connection, API key, and memory read/write
Import memories from an export file into this project
List all projects that have stored memories
| name | context-loader |
| description | Pre-load relevant memories for current task |
Pre-fetches relevant memories to prime context before working on a task.
on_session_start.sh for onboarded projects)Extract topics from current message/task. Identify: file paths, module names, feature areas, error patterns.
Run 2-4 parallel search_memories calls with different angles:
| Query angle | Filter | Purpose |
|---|---|---|
| Feature/module name | {"metadata": {"type": "decision"}} | Architecture decisions |
| File paths mentioned | {"metadata": {"type": "convention"}} | Coding patterns |
| Error keywords (if any) | {"metadata": {"type": "anti_pattern"}} | Known pitfalls |
| Broad project context | no metadata filter | Catch-all |
All calls must include user_id and app_id filters.
Deduplicate results by memory ID across all search responses.
Output compact context block (max 10 memories):
context-loader: loaded <N> memories for "<task summary>"
- [decision] <content> [mem0:<short_id>]
- [convention] <content> [mem0:<short_id>]
- [anti_pattern] <content> [mem0:<short_id>]