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:3
forks:4
updated:May 14, 2026 at 09:31
File Explorer
SKILL.md
| name | memory-backup |
| description | Backup CLAUDE.md, TASKS.md, and memory/ to a private Git repo |
Run the backup script for the current workspace. This command syncs only:
CLAUDE.mdTASKS.mdmemory//memory-backup # push local memory to backup repo
/memory-backup --pull # pull latest backup into this workspace
/memory-backup --sync # pull latest, then push local memory
/memory-backup --dry-run # preview push
Set MEMORY_BACKUP_DIR in your workspace .env file to the local path of a separate Git clone for your private backup repo.
Example:
MEMORY_BACKUP_DIR=/your/path/to/memory-backups/
Requirements for MEMORY_BACKUP_DIR:
Use Bash to run:
bash .claude/skills/memory-backup/backup.sh
Other modes:
bash .claude/skills/memory-backup/backup.sh --pull
bash .claude/skills/memory-backup/backup.sh --sync
bash .claude/skills/memory-backup/backup.sh --dry-run
The script is the only thing that should perform the backup. Do not manually reconstruct the copy, add, commit, or push flow with ad hoc shell commands unless the user explicitly asks to debug the script itself.
MEMORY_BACKUP_DIR from the environment or workspace .envCLAUDE.md, TASKS.md, and memory/ into the backup repo, commits only if changed, then pushesgit pull --ff-only in the backup repo, then copies those files into the workspaceCLAUDE.md, TASKS.md, or memory/TASKS.md or memory/ do not exist, the script skips them cleanly.[HINT] Download the complete skill directory including SKILL.md and all related files