ArchyntArchynt.api
Free for public repos

PR checks for public repos, zero signup

Add one workflow file and every pull request gets a real architecture check — cyclic dependencies, coupling, single points of failure and dead code — posted back as a comment, with no Archynt account and no token shared with Archynt.

Archynt bot commenting the architecture check result on a GitHub pull request

How it works

01

Add the workflow

Paste the snippet below into .github/workflows/archynt.yml. No checkout step needed — the scan runs against your repo directly from Archynt's servers.

02

Open a pull request

The action calls Archynt's public scan endpoint with your repo and the PR's base/head refs, and posts the result using the workflow's own GITHUB_TOKEN.

03

See the comment and badge

A summary comment lands on the PR, and the README badge below always reflects the most recent scan — PASS, WARN or FAIL.

Copy & paste

1. Workflow — .github/workflows/archynt.yml

yaml
name: Archynt architecture scan
on: pull_request

jobs:
  archynt-scan:
    runs-on: ubuntu-latest
    permissions:
      pull-requests: write
    steps:
      - uses: archynt/pr-check-action@v1
        with:
          language: java # java | go | node | python

2. Badge — README.md (replace OWNER/REPO)

markdown
[![Architecture Score](https://img.shields.io/endpoint?url=https://api.archynt.com/api/v1/public/badge/OWNER/REPO)](https://archynt.com)

Need private repos, higher limits or the full AI-insights platform?

See pricing