is-agentic
GitHub用于评估网站或端点的 AI Agent 就绪度,通过 CLI 或 API 获取包含证据的审计报告,并依据建议修复问题以提升评分。
Trigger Scenarios
Install
npx skills add buzzkit-dev/buzzkit --skill is-agentic -g -y
SKILL.md
Frontmatter
{
"name": "is-agentic",
"description": "Score how ready a website, domain, or public MCP endpoint is for AI agents using Is Agentic, and read or act on the resulting report. Use when asked to check a site's agent readiness, get its Is Agentic score, fetch a scored report as JSON, or fix the issues that lower a site's score."
}
Is Agentic
Is Agentic runs a technical audit of a public URL and publishes a 0 to 100 agent-readiness score with evidence-backed issues and recommended fixes. All interfaces below are public, read-only, and free; none needs an API key.
Get a score
Default: the official CLI. It returns a stored report immediately, or starts a scan and waits when none exists.
npx is-agentic <domain> --json
Omit --json only when a human is reading the terminal output.
When you cannot run commands, use the read-only API instead. It never starts a scan; a 404 means no completed report exists yet.
GET https://is-agentic.com/api/v1/report?url=<url-encoded-target>
MCP hosts can connect to the Streamable HTTP endpoint https://is-agentic.com/mcp and call is_agentic_get_report, is_agentic_get_methodology, or is_agentic_get_developer_docs.
Read a report
The JSON response is a PublicScanReport:
score: 0 to 100, ornullwhen the target could not be scored (for example an MCP server that requires authentication).score_labelexplains a null score.score_breakdown.essentialand.recommended: each hasearned,available,passing,total. Essential checks are the ones that matter most; a site can look polished and still fail them.score_breakdown.bonus:pointsandpositive_signals. Bonus is additive and never required; do not treat missing bonus signals as defects.issues[]: each hasid,name,tier(essential|recommended|bonus),result(failed|partial),details(evidence from the scan), andrecommendation(the fix).report_url: the canonical human-readable report. Cite it when reporting a score to a person.scanned_at: when the audit ran. Reports are immutable snapshots.
Improve a site's score
- Fetch the report for the exact target you are improving.
- Work through
issuesin this order:essentialfailures,essentialpartials, thenrecommended. Ignorebonusunless everything else passes. - For each issue,
detailssays what the scan observed andrecommendationsays what to change. Prefer the recommendation; it was written against the actual evidence. - After deploying fixes, get a fresh score and compare
scanned_atto confirm you are not reading the old snapshot (see gotchas).
Errors
Failures are RFC 9457 application/problem+json with a stable code and a resolution hint. Act on the code:
invalid_url(400): pass a public HTTP or HTTPS URL.report_not_found(404): no completed report exists; create one with the CLI, or openhttps://is-agentic.com/scan/<target>to start a scan, then retry after it completes.rate_limit_exceeded(429): honorRetry-Afterbefore retrying.report_temporarily_unavailable(503): retry shortly; do not start a new scan.
Gotchas
- Reports refresh only when a visit finds them older than 6 hours. Re-running the CLI right after deploying a fix returns the same stored snapshot; check
scanned_atbefore drawing conclusions, and use the Rescan control on the report page when a human needs an immediate re-run. - The API and the CLI differ on missing reports: the API returns 404, the CLI starts a scan and waits. Pick accordingly.
- Targets are exact:
example.com/docsandexample.comare separate reports, and a URL with a query string is its own report. - The rate limit is 120 requests per IP per 60 seconds.
- For token-light reading, content pages and completed reports honor
Accept: text/markdown.
The ratchet in CI
.github/workflows/agentic-audit.yml scans production daily and compares the result with .github/agentic-baseline.json. It fails when the score falls below 80 or below the recorded score, or when fewer essential checks pass than the recorded count, and it raises the baseline itself when the score improves. Essential issues are annotations, not failures, so a known gap does not block the build while a regression does. The CLI hands back the stored snapshot rather than forcing a scan, so the run first visits https://is-agentic.com/scan/<target> and then polls the CLI for up to ten minutes until scanned_at moves, judging fresh data instead of an old report. If it never moves the run continues and warns when the snapshot is more than 48 hours old.
Version History
- 3d80715 Current 2026-09-11 11:08


