Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:644
forks:56
updated:2026년 3월 10일 09:37
SKILL.md
| name | shell-check |
| description | Run shellcheck to lint shell scripts for common issues and best practices |
Use shellcheck to analyze shell scripts for syntax errors, semantic problems, and style issues.
To check a single script:
shellcheck script.sh
To check all shell scripts in the current directory:
shellcheck *.sh
To check scripts recursively:
find . -name '*.sh' -exec shellcheck {} +
-e CODE — exclude a specific warning (e.g. shellcheck -e SC2086 script.sh)-s SHELL — specify the shell dialect (bash, sh, dash, ksh)-f FORMAT — output format (tty, json, gcc, diff)