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:2
updated:May 6, 2026 at 07:27
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | gh-fetch |
| description | Read files from a GitHub repo via bash. web_fetch on GitHub will fail. |
URLs may be user-provided, found via web search, or inferred from a project name.
# github.com/{owner}/{repo}/blob/{branch}/{path}
# → cdn.jsdelivr.net/gh/{owner}/{repo}@{branch}/{path}
curl -s "https://cdn.jsdelivr.net/gh/{owner}/{repo}@{branch}/{path}"
# Call 1 — fetch (npx download + clone can be slow; split for visibility)
npx degit {owner}/{repo}/{path} /tmp/{name} --force
# Call 2 — verify
find /tmp/{name} -type f | sort
git clone --depth 1 https://github.com/{owner}/{repo}.git /tmp/{repo}