Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:150
forks:2
updated:2026년 5월 1일 19:45
SKILL.md
Security assessment of a codebase — minimal mode for runner validation
Daily fetch from a fixed public allowlist; score against the user's interests file; cluster into themes; push the digest to the configured channel
Read-only retrieval over the daily-digest kept set. Slash-invoke with `/librarian <question>`; returns items verbatim with citations.
Math calculations and unit conversions
Parse and analyze CSV data
Analyze disk usage and find large files
| name | file-search |
| description | Find files and search content across directories |
| disable-model-invocation | false |
| permissions | {"tools":{"allow":["exec"]},"egress":{"mode":"deny"},"inference":{"allow":["*"]}} |
Find files and search content across directories.
find . -name "*.py" -type ffind . -iname "*.txt" -type ffind . -name "*.rs" -mtime -1 -type ffind . -size +10M -type fgrep -rn "pattern" .grep -rni "pattern" .grep -rn -C 3 "pattern" .grep -rn --include="*.py" "pattern" .rg "pattern" or rg -t py "pattern"tree -L 2du -sh */ | sort -rh | head -20find . -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn | head -15find . -type f -mtime -1 | head -20