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:7,160
forks:318
updated:December 20, 2025 at 11:42
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | fastmod |
| description | Use fastmod to make mass code updates to avoid many repetitive changes. |
You can occasionally use fastmod or sed to make mass updates to the codebase and avoid wasting tokens changing each case one at a time.
Before making many repetitive changes to the codebase, consider using fastmod --accept-all.
THINK HARD about how best to use fastmod as it can dramatically improve your productivity.
Example of switching the py_type function to use impl ResourceTracker instead of T: ResourceTracker:
fastmod --accept-all 'fn py_type<T: ResourceTracker>(\(.+?)<T>' 'fn py_type$1<impl ResourceTracker>'