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:10
forks:4
updated:May 6, 2026 at 09:01
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | validation |
| description | lint, 타입 체크, 테스트를 실행합니다. 오류는 최대 3회 시도까지 자동으로 수정합니다. |
| disable-model-invocation | true |
| allowed-tools | Bash(pnpm *) |
전체 유효성 검사를 실행하고 오류가 있으면 자동으로 수정하세요.
pnpm run lint && tsc --noEmit && pnpm run test
| 타입 | 예시 |
|---|---|
| 누락된 import | 'useState' is not defined |
| 타입 불일치 | Type 'string' not assignable to 'number' |
| 미사용 변수 | 'foo' declared but never used |
| 누락된 return | Function lacks ending return statement |
통과:
✅ 유효성 검사 통과
- lint: ✓
- tsc: ✓
- test: ✓
실패 (자동 수정 중):
❌ 유효성 검사 실패 (시도 1/3)
오류: src/features/user/ui/UserList.tsx:15 - 'useState' is not defined
수정 중...
실패 (수동 처리 필요):
❌ 유효성 검사 실패 (3회 시도 후)
미해결 오류: [상세 내용]
수동 처리가 필요합니다.