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:223
forks:5
updated:February 8, 2026 at 21:04
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | lint |
| description | Run linting and type checking across the Terrae codebase |
| allowed-tools | Bash(npx tsc *), Bash(npm run lint*), Bash(npm run format*) |
Run linting and type checking across the Terrae codebase.
Run Type Checking
npx tsc --noEmit
This checks TypeScript types without emitting files.
Run ESLint
npm run lint
This runs ESLint on the codebase.
Run Prettier Check
npm run format:check
This checks if files are properly formatted.
Report Results
Offer to Fix If issues are found, ask the user if they want to:
npm run lint -- --fixnpm run formatRe-verify After fixes, run the checks again to confirm all issues are resolved.