.claude/skills/skill-builder-generic/examples/calculator-skill/SKILL.md
Simple calculator for basic arithmetic operations (addition, subtraction, multiplication, division). Use when performing calculations, converting units, or working with numbers.
npx skillsauth add adaptationio/skrillz calculatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Perform basic arithmetic calculations with step-by-step computation display.
Addition:
result = 15 + 27
# Result: 42
Subtraction:
result = 100 - 42
# Result: 58
Multiplication:
result = 6 * 7
# Result: 42
Division:
result = 84 / 2
# Result: 42.0
| Operation | Symbol | Example | Result | |-----------|--------|---------|--------| | Addition | + | 10 + 5 | 15 | | Subtraction | - | 10 - 5 | 5 | | Multiplication | * | 10 * 5 | 50 | | Division | / | 10 / 5 | 2.0 | | Modulo | % | 10 % 3 | 1 | | Exponent | ** | 2 ** 8 | 256 |
Calculate multi-step expressions:
# Order of operations (PEMDAS)
result = (10 + 5) * 2 ** 3 / 4
# Step 1: Parentheses: 10 + 5 = 15
# Step 2: Exponent: 2 ** 3 = 8
# Step 3: Multiplication: 15 * 8 = 120
# Step 4: Division: 120 / 4 = 30.0
# Result: 30.0
# Celsius to Fahrenheit
celsius = 25
fahrenheit = (celsius * 9/5) + 32
# Result: 77.0°F
# Fahrenheit to Celsius
fahrenheit = 77
celsius = (fahrenheit - 32) * 5/9
# Result: 25.0°C
# Meters to feet
meters = 10
feet = meters * 3.28084
# Result: 32.8084 feet
# Miles to kilometers
miles = 5
kilometers = miles * 1.60934
# Result: 8.0467 km
// for integer division% for remainder (modulo)Version: 1.0 Last Updated: October 25, 2025 Example Type: Minimal skill (SKILL.md only)
development
Setup secure web-based terminal access to WSL2 from mobile/tablet via ttyd + ngrok/Cloudflare/Tailscale. One-command install, start, stop, status. Use when you need remote terminal access, web terminal, browser-based shell, or mobile access to WSL2 environment.
development
Complete development workflows where Claude writes the code while Gemini and Codex provide research, planning, reviews, and different perspectives. Claude remains the main developer. Use for complex projects requiring expert planning and multi-perspective reviews.
development
Systematic progress tracking for skill development. Manages task states (pending/in_progress/completed), updates in real-time, reports progress, identifies blockers, and maintains momentum. Use when tracking skill development, coordinating work, or reporting progress.
testing
Comprehensive testing workflow orchestrating functional testing, example validation, integration testing, and usability assessment. Sequential workflow for complete skill testing from examples through scenarios to integration validation. Use when conducting thorough testing, pre-deployment validation, ensuring skill functionality, or comprehensive quality checks.