TopRank Skills

Home / Claw Skills / Others / math-evaluate
Official OpenClaw rules 15%

math-evaluate

Evaluate math expressions, compute statistics, and calculate percentages.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 math-evaluate 技能。 若已安装,则直接安装 math-evaluate 技能。

Overview

Skill Key
cutthemustard/math-evaluate
Author
cutthemustard
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/cutthemustard/math-evaluate
Latest Commit SHA
5f1a94da78b19f23d0c16959eec2778834cbb22c

Extracted Content

SKILL.md excerpt

# math-evaluate

Safe math expression evaluation with variables, descriptive statistics (mean, median, mode, stddev, percentiles), and percentage calculations.

## Data Handling

This skill sends expressions to an external API for evaluation. The service does not store or log input data beyond the immediate response.

## Endpoints

### Evaluate Expression

```bash
curl -X POST https://math.agentutil.net/v1/evaluate \
  -H "Content-Type: application/json" \
  -d '{"expression": "2 * x + y", "variables": {"x": 20, "y": 2}}'
```

### Statistics

```bash
curl -X POST https://math.agentutil.net/v1/statistics \
  -H "Content-Type: application/json" \
  -d '{"values": [10, 20, 30, 40, 50]}'
```

Returns: count, sum, mean, median, mode, min, max, range, variance, stddev.

### Percentage

```bash
curl -X POST https://math.agentutil.net/v1/percentage \
  -H "Content-Type: application/json" \
  -d '{"operation": "change", "a": 100, "b": 125}'
```

Operations: `of` (a% of b), `change` (% change from a to b), `is_what_percent` (a is what % of b).

## Response Format

```json
{
  "result": 42,
  "expression": "2 * x + y",
  "variables_used": {"x": 20, "y": 2},
  "request_id": "abc-123",
  "service": "https://math.agentutil.net"
}
```

## Pricing

- Free tier: 10 queries/day, no authentication required
- Paid tier: $0.001/query via x402 protocol (USDC on Base)

## Privacy

No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.

Related Claw Skills