Install
openclaw skills install @bing0109/bingo-calculatorCalculate addition, subtraction, multiplication and division of two integers via a Python script.
openclaw skills install @bing0109/bingo-calculatorThis skill calculates the addition, subtraction, multiplication or division of two integers by calling a local Python script.
When the user asks to perform arithmetic on two integers, run the following command:
python3 scripts/calculator.py
| Parameter | Type | Required | Description |
|---|---|---|---|
| num1 | int | Yes | First integer |
| num2 | int | Yes | Second integer |
| operation | string | Yes | add, sub, mul, div |
Addition:
python3 scripts/calculator.py 3 5 add
# Output: 8
Subtraction:
python3 scripts/calculator.py 10 4 sub
# Output: 6
Multiplication:
python3 scripts/calculator.py 3 5 mul
# Output: 15
Division:
python3 scripts/calculator.py 10 4 div
# Output: 2.5
add, sub, mul, div.