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:5
forks:6
updated:February 13, 2026 at 02:59
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | memory |
| description | Two-layer memory system with grep-based recall. |
| always | true |
memory/MEMORY.md - Long-term facts (preferences, project context, relationships). Always loaded into context.memory/HISTORY.md - Append-only event log. Not loaded into context. Search it with grep.grep -i "keyword" memory/HISTORY.md
Use the exec tool to run grep. Combine patterns:
grep -iE "meeting|deadline" memory/HISTORY.md
Write important facts immediately using edit_file or write_file:
Old conversations are automatically summarized into HISTORY.md when sessions grow large. New long-term facts are extracted to MEMORY.md.