$ man github-repo-health
/github-repo-health
PRICE / CALL
$0.03
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
prooflayerCATEGORY
ai
STATUS
● live
NAME
github-repo-health — github repo health score / open-source maintainability checker
SYNOPSIS
POST https://x402.agentutility.ai/github-repo-health
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
GitHub repo health score / open-source maintainability checker. 0-100 score + grade (abandoned/stale/okay/healthy/thriving). Commit activity, contributors, license, CI, tests. Plus LLM verdict.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| repo | string | — | required |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| repo | string | GitHub owner/name slug that was scored (e.g. 'facebook/react'). |
| score | number | Overall health score from 0 to 100 aggregated across activity, contributors, license, CI, and tests. |
| grade | string | Bucket label for the score: abandoned, stale, okay, healthy, or thriving. |
| verdict | string | LLM-written one-line take on the repo's maintainability and whether it's safe to depend on. |
| signals | object | Per-signal breakdown: commit activity, contributor count, license, CI presence, and test coverage hints. |
| metadata | object | Repo metadata pulled from GitHub: stars, forks, primary language, default branch, last push timestamp. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/github-repo-health \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the github-repo-health tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- githubopen-sourcerepohealthscore
- env
- VENICE_API_KEY
- methods
- POST
- cluster
- prooflayer
- price
- $0.03 USDC per call
ADJACENT — other endpoints in prooflayer
| endpoint | description | price |
|---|---|---|
| ai-content-detector | Detect AI-generated writing with a calibrated probability score. | $0.03 |
| dep-risk-summary | Scores dependency risk for a whole repo from its manifests and lockfiles. | $0.03 |
| package-risk-npm | Scores supply-chain risk for an npm package before you install it. | $0.03 |
| prompt-injection-surface | Scans AI app source code for prompt injection risk at LLM call sites. | $0.03 |
| app-store-rejection-explain | Explains App Store and Google Play rejections and turns them into a resubmission plan. | $0.02 |
| db-migration-risk | Audits database migrations for risky SQL before deploy. | $0.02 |
| deploy-config-risk | Audits deploy configuration files for production risks. | $0.02 |
| secrets-exposure-check | Scans project config files for hardcoded secrets before you deploy. | $0.02 |
SEE ALSO