socialistic connector

Connector API

Overview

Import and run Socialistic skills from your own systems. Base URL: https://connector.socialistic.ai. Requests and responses are JSON unless noted; the run event stream is server-sent events. Pick a section on the left.

Quick start

# 1. mint a key in Settings → API Keys, then:
export KEY=sk_live_xxxxxxxxxxxxxxxxxxxxxxxx

# 2. import a skill
curl -X POST https://connector.socialistic.ai/v1/skills/import \
  -H "Authorization: Bearer $KEY" -H "Content-Type: application/json" \
  -d '{ "github_url": "https://github.com/<org>/<repo>" }'

# 3. run it (see “Run a skill”)