Integrations

Every tool your team already uses.

Replixa hooks in at the code host level — no CI pipeline changes required. Install the GitHub App or configure the webhook, and inline reviews fire on every PR open and ready for review event from that point forward.

Read integration docs
All Integrations

Works with your entire stack.

GitHub Native GitHub App. Installs in under 2 minutes. Supports GitHub Enterprise Server.
GitLab GitLab.com and self-managed. Posts suggestions as native MR comments.
Bitbucket Bitbucket Cloud PR suggestion API. Inline patch support in review interface.
GitHub Actions Trigger Replixa as a workflow step. Works alongside your existing CI checks.
GitLab CI .gitlab-ci.yml job trigger. Supports merge_request pipelines natively.
Jenkins Replixa CLI in your Jenkinsfile. Post-checkout stage trigger with PR context.
CircleCI Orb-based integration. One config block to add Replixa to any CircleCI pipeline.
Jira Link Replixa findings to Jira issues. Optional ticket creation for escalated patterns.
Linear Attach review sessions to Linear issues. Status updates on PR approval.
Slack Review summary notifications to your engineering channels. Configurable per team.
PagerDuty Escalate high-severity security findings to on-call rotations automatically.
Azure DevOps Azure Repos PR integration. Pipeline task available in Azure DevOps marketplace.
REST API

Build your own integration with the Replixa API.

The Replixa REST API exposes every action available through the dashboard. Trigger reviews, retrieve style graph data, manage team configurations — all programmatically.

Authentication via Bearer token with scoped permissions. Rate limits documented; enterprise customers get higher quotas.

API Reference
# Trigger a review via API
curl -X POST \
  https://api.replicen.com/v1/reviews \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{
    "repository": "org/repo",
    "pr_number": 4821,
    "threshold_profile": "platform-infra"
  }'

# Response
{
  "review_id": "rev_x9kmpq",
  "status": "running",
  "estimated_ms": 1400
}

Connect your first repository today.

GitHub App install takes under 5 minutes. Style graph build starts automatically on your existing commit history.