# Send PinchBench to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pinchbench",
    "name": "PinchBench",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/olearycrew/pinchbench",
    "canonicalUrl": "https://clawhub.ai/olearycrew/pinchbench",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pinchbench",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pinchbench",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "assets/ai_blog.txt",
      "assets/quarterly_sales.csv",
      "crab.txt",
      "pyproject.toml"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pinchbench",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T03:12:40.720Z",
      "expiresAt": "2026-05-14T03:12:40.720Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pinchbench",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pinchbench",
        "contentDisposition": "attachment; filename=\"pinchbench-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pinchbench"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/pinchbench"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/pinchbench",
    "downloadUrl": "https://openagent3.xyz/downloads/pinchbench",
    "agentUrl": "https://openagent3.xyz/skills/pinchbench/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pinchbench/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pinchbench/agent.md"
  }
}
```
## Documentation

### PinchBench Benchmark Skill

PinchBench measures how well LLM models perform as the brain of an OpenClaw agent. Results are collected on a public leaderboard at pinchbench.com.

### Prerequisites

Python 3.10+
uv package manager
OpenClaw instance (this agent)

### Quick Start

cd <skill_directory>

# Run benchmark with a specific model
uv run benchmark.py --model anthropic/claude-sonnet-4

# Run only automated tasks (faster)
uv run benchmark.py --model anthropic/claude-sonnet-4 --suite automated-only

# Run specific tasks
uv run benchmark.py --model anthropic/claude-sonnet-4 --suite task_01_calendar,task_02_stock

# Skip uploading results
uv run benchmark.py --model anthropic/claude-sonnet-4 --no-upload

### Available Tasks (23)

TaskCategoryDescriptiontask_00_sanityBasicVerify agent workstask_01_calendarProductivityCalendar event creationtask_02_stockResearchStock price lookuptask_03_blogWritingBlog post creationtask_04_weatherCodingWeather scripttask_05_summaryAnalysisDocument summarizationtask_06_eventsResearchConference researchtask_07_emailWritingEmail draftingtask_08_memoryMemoryContext retrievaltask_09_filesFilesFile structure creationtask_10_workflowIntegrationMulti-step API workflowtask_11_clawdhubSkillsClawHub interactiontask_12_skill_searchSkillsSkill discoverytask_13_image_genCreativeImage generationtask_14_humanizerWritingText humanizationtask_15_daily_summaryProductivityDaily digesttask_16_email_triageEmailInbox triagetask_17_email_searchEmailEmail searchtask_18_market_researchResearchMarket analysistask_19_spreadsheet_summaryAnalysisSpreadsheet analysistask_20_eli5_pdf_summaryAnalysisPDF simplificationtask_21_openclaw_comprehensionKnowledgeOpenClaw docs comprehensiontask_22_second_brainMemoryKnowledge management

### Command Line Options

OptionDescription--modelModel identifier (e.g., anthropic/claude-sonnet-4)--suiteall, automated-only, or comma-separated task IDs--output-dirResults directory (default: results/)--timeout-multiplierScale task timeouts for slower models--runsNumber of runs per task for averaging--no-uploadSkip uploading to leaderboard--registerRequest new API token for submissions--upload FILEUpload previous results JSON

### Token Registration

To submit results to the leaderboard:

# Register for an API token (one-time)
uv run benchmark.py --register

# Run benchmark (auto-uploads with token)
uv run benchmark.py --model anthropic/claude-sonnet-4

### Results

Results are saved as JSON in the output directory:

# View task scores
jq '.tasks[] | {task_id, score: .grading.mean}' results/0001_anthropic-claude-sonnet-4.json

# Show failed tasks
jq '.tasks[] | select(.grading.mean < 0.5)' results/*.json

# Calculate overall score
jq '{average: ([.tasks[].grading.mean] | add / length)}' results/*.json

### Adding Custom Tasks

Create a markdown file in tasks/ following TASK_TEMPLATE.md. Each task needs:

YAML frontmatter (id, name, category, grading_type, timeout)
Prompt section
Expected behavior
Grading criteria
Automated checks (Python grading function)

### Leaderboard

View results at pinchbench.com. The leaderboard shows:

Model rankings by overall score
Per-task breakdowns
Historical performance trends
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: olearycrew
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-07T03:12:40.720Z
- Expires at: 2026-05-14T03:12:40.720Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pinchbench)
- [Send to Agent page](https://openagent3.xyz/skills/pinchbench/agent)
- [JSON manifest](https://openagent3.xyz/skills/pinchbench/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pinchbench/agent.md)
- [Download page](https://openagent3.xyz/downloads/pinchbench)