AcqualyticsAcqualytics
Workspace

Integrations

Connect your sources. GitHub powers engineering intelligence today; AI and project connectors normalize into the same metrics.

2 of 5 connected
GitHub Connected

Install the Acqualytics GitHub App to sync commits, pull requests, reviews and CI into engineering intelligence — continuously, via webhooks.

This is the public demo (fixture data). Sign in to your real tenant to connect GitHub.

connectedSign in
Ingestion API

AI job/loop events from the dev pipeline.

connected
Claude Code telemetry

Token usage & agent loops per session.

planned
Anthropic usage API

Org-level tokens and $ by day/model.

planned
Linear

Issues, cycles, throughput, rework.

planned
Ingestion API

Post AI job & loop events

Your dev pipeline (or Claude Code hook) posts jobs and their loops to a per-tenant endpoint. This is how token usage, loops and AI-authored share populate before a formal Claude connector.

curl -X POST https://app.acqualytics.com/api/ingest \
  -H "Authorization: Bearer $ACQ_INGEST_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "ai_job",
    "job": {
      "title": "Form A grid migration",
      "model": "claude-opus-4",
      "linkedPr": "nwg-quotefix#812",
      "loops": [
        { "tokensIn": 620000, "tokensOut": 160000, "filesChanged": 14, "testsAdded": 6, "result": "partial" },
        { "tokensIn": 320000, "tokensOut": 90000,  "filesChanged": 4,  "testsAdded": 5, "result": "pass" }
      ]
    }
  }'