Available Integrations
ClaudeBench integrates with popular tools: • Git & GitHub — Version control • VS Code — Open files in editor • Figma — Design file access • Notion — Import/export notes • Slack — Send notifications
REST API
ClaudeBench exposes a local REST API for automation: Endpoint: http://localhost:7823/api/v1 All endpoints require authentication via a local token.
Code
// Example API call
curl -X POST http://localhost:7823/api/v1/tasks \
-H "Authorization: Bearer YOUR_LOCAL_TOKEN" \
-H "Content-Type: application/json" \
-d '{"prompt": "Organize my Downloads folder"}'
// Response
{
"id": "task_abc123",
"status": "processing",
"created_at": "2024-01-15T10:30:00Z"
}Webhooks
Configure webhooks to receive notifications when: • A task completes • An error occurs • Files are generated • Manual approval is needed
Automation Scripts
Create automation scripts using: • AppleScript • Shell scripts • Python with claudebench package • Alfred / Raycast workflows
Check out our GitHub repository for example automation scripts.