Exécutez n'importe quel Skill dans Manus
en un clic
en un clic
Exécutez n'importe quel Skill dans Manus en un clic
Commencer$pwd:
$ git log --oneline --stat
stars:150
forks:2
updated:1 mai 2026 à 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
Analyze disk usage and find large files
Docker container management
| name | csv-tools |
| description | Parse and analyze CSV data |
| disable-model-invocation | false |
| permissions | {"tools":{"allow":["exec"]},"egress":{"mode":"deny"},"inference":{"allow":["*"]}} |
Work with CSV files using standard shell tools.
head -5 data.csvhead -1 data.csvwc -l data.csvcut -d',' -f1,3 data.csvawk -F',' '$3 > 100' data.csvsort -t',' -k2 -n data.csvcut -d',' -f2 data.csv | sort -ucut -d',' -f2 data.csv | sort | uniq -c | sort -rntail -n +2 data.csvnl -ba data.csvsed 's/,/\t/g' data.csv (CSV to TSV)python3 -c "
import csv, sys
reader = csv.DictReader(open('data.csv'))
for row in reader:
print(row)
" | head -10