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:231
forks:5
updated:February 10, 2026 at 23:48
SKILL.md
Commit, push, and open a pull request on GitHub
Verify all outputs exist after creating a new component and fix any issues
Create standardized git commits following Terrae's conventions
Generate or update documentation for Terrae components
Systematically fix issues found by /review or reported by the user
Run linting and type checking across the Terrae codebase
| name | issue |
| description | Read a GitHub issue, summarize it, and create a branch for it |
| allowed-tools | Bash(gh *), Bash(git *) |
Read a GitHub issue by number or URL, summarize it, then create a working branch.
alamenai/terrae — https://github.com/alamenai/terrae/issues
The user provides either:
42)https://github.com/alamenai/terrae/issues/42)If a URL is provided, extract the issue number from it.
Fetch the Issue
gh issue view <number> --repo alamenai/terrae to read the issueSummarize the Issue
Determine Branch Name
bug label or bug description → fix/enhancement or feature label → feat/documentation label → docs/feat/type/issue-number-short-descriptionfeat/42-add-heatmap-componentfix/17-marker-memory-leakdocs/8-update-installation-guideCreate the Branch
main and up to date: git checkout main && git pullgit checkout -b <branch-name>Report