TasksMind API v0.1.0

The AI Engineer,
on call via API.

Trigger code reviews, CI fixes, bug analysis, and repo summaries with a single HTTP request. Runs execute asynchronously — poll for results or integrate with your pipeline.

Endpoints
POST /v1/runs Start a run
GET /v1/runs/{id} Get run status & output
GET /v1/runs List runs
GET /health Health check
Quick start
python
import tasksmind

client = tasksmind.TasksMind(api_key="tm_...")

run = client.runs.create(
    repo_url="https://github.com/your-org/your-repo",
    payload={"intent": "review_pr", "target": {"pr_number": 42}}
)

result = client.runs.wait(run.id)
print(result.summary)