Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Integrate with the Acme API for file management operations. Use when uploading, downloading, listing, or managing files via the Acme platform. Triggers on: acme, file upload, file management, acme API.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -35% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -17% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -45% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 24% | 0% |
Auth: Bearer token from ACME_TOKEN env var. Base URL: https://api.acme.example.com/v2 Rate limit: 60 requests/minute
| Action | Method | Endpoint | |--------|--------|----------| | List files | GET | /files?directory_id={id} | | Upload | POST | /upload?directory_id={id} (multipart) | | Download | GET | /files/{id}/download | | Create dir | POST | /files/{parent_id}/directory | | Delete | DELETE | /files/{id} |
bashsource ~/.credentials/acme.env curl -s -H "Authorization: Bearer $ACME_TOKEN" "$ACME_BASE/files?directory_id=1"
bashcurl -s -X POST "$ACME_BASE/upload?directory_id=$DIR_ID" \ -H "Authorization: Bearer $ACME_TOKEN" \ -F "file=@/path/to/file"
{"result": "success", "data": ...}jq .datareferences/api-schema.mdOther measured skills in the registry, with their headline benchmark lift.