Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:150
forks:2
updated:1. Mai 2026 um 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
Docker container management
| name | disk-usage |
| description | Analyze disk usage and find large files |
| disable-model-invocation | false |
| permissions | {"tools":{"allow":["exec"]},"egress":{"mode":"deny"},"inference":{"allow":["*"]}} |
Analyze disk space and find what's taking up room.
df -hdu -sh .du -sh */ | sort -rhdu -h --max-depth=2 | sort -rh | head -20find . -type f -exec du -h {} + | sort -rh | head -20find . -size +100M -type f -exec ls -lh {} \;find . -size +1G -type f -exec ls -lh {} \;find /var/log -name "*.gz" -mtime +30 -type ffind / -name "core.*" -type f 2>/dev/nulldocker system df (if Docker is installed)du -sh /var/cache/apt/archives/