Skill Summary
Lightweight summary of the latest audit — key metrics without the full report payload.
GET
https://audit-engine.oathe.ai/api/skill/{user}/{repo}/summary
Lightweight summary of the latest audit. Returns key metrics without the full report payload. Ideal for cards, tooltips, list views, and pre-install checks.
Example
curl https://audit-engine.oathe.ai/api/skill/user/repo/summary
Response 200
{
"skill_slug": "user/repo",
"score": 85,
"verdict": "SAFE",
"recommendation": "INSTALL",
"methodology_version": "1.0.0",
"findings_count": 3,
"critical_findings": 0,
"high_findings": 1,
"audited_at": "2025-12-01T10:30:00.000Z",
"report_url": "/api/skill/user/repo/latest"
}
Response Fields
skill_slug
string
Short-form identifier:
user/repo.score
number
Composite trust score, 0–100.
verdict
string
SAFE, CAUTION, DANGEROUS, or MALICIOUS.recommendation
string
Actionable recommendation. See Verdicts.
methodology_version
string
Version of the scoring methodology used for this audit.
findings_count
number
Total number of findings across all dimensions.
critical_findings
number
Count of CRITICAL severity findings.
high_findings
number
Count of HIGH severity findings.
audited_at
string
ISO 8601 timestamp of audit completion.
report_url
string
Path to the full report endpoint.