mit einem Klick
calculator
Math calculations and unit conversions
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Math calculations and unit conversions
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
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.
Parse and analyze CSV data
Analyze disk usage and find large files
Docker container management
| name | calculator |
| description | Math calculations and unit conversions |
| disable-model-invocation | false |
| permissions | {"tools":{"allow":["exec"]},"egress":{"mode":"deny"},"inference":{"allow":["*"]}} |
Perform calculations using shell tools.
echo "scale=4; 355/113" | bc -lecho "scale=2; 847 * 0.15" | bc -lecho "2^32" | bcecho "scale=4; sqrt(2)" | bc -lFor complex math: python3 -c "import math; print(math.log2(1024))"
numfmt --to=iec 1073741824 (gives 1.0G)numfmt --from=iec 4G (gives 4294967296)python3 -c "c=37; print(f'{c}C = {c*9/5+32}F')"echo $(( ($(date -d 2025-12-31 +%s) - $(date +%s)) / 86400 )) daysdate -d "+30 days" +%Y-%m-%ddate -d @1700000000