惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - lucioduran/ax-audit: Audit websites for AI Agent...
lucioduran · 2026-06-17 · via Hacker News - Newest: "AI"

ax-audit logo

CI npm version license node

Lighthouse for AI Agents. Audit any website's AI Agent Experience (AX) readiness in seconds.

npx ax-audit https://your-site.com
  AX Audit Report
  https://lucioduran.com

  ███████████████████████████████████░░░░░  88/100  Good

  LLMs.txt (100/100)
    PASS  /llms.txt exists
    PASS  /llms.txt Content-Type OK (text/plain)
    PASS  H1 heading: "Lucio Duran — Personal Portfolio"

  Robots.txt (100/100)
    PASS  All 8 core AI crawlers explicitly configured
    PASS  Content signals declared for User-agent: * — search=yes, ai-train=no

  Content Negotiation (100/100)
    PASS  Homepage serves Markdown via content negotiation (Accept: text/markdown)
    PASS  Markdown is ~95% lighter than the HTML representation
  ...

Why

AI agents and LLMs are increasingly crawling, indexing, and interacting with websites. Just like Lighthouse audits web performance and axe-core audits accessibility, ax-audit tells you how ready your site is for the AI agent ecosystem — discovery files, crawler policy, licensing, content negotiation, and the failure modes invisible to operators (like a WAF blocking crawlers your robots.txt allows).

What it checks

18 checks — 14 weighted, 4 informational. Full reference: docs/checks.md.

Check Weight Check Weight
LLMs.txt 11% Security.txt 6%
Robots.txt + Content Signals 11% Meta Tags (OG / Twitter / AI) 6%
HTML Rendering 9% OpenAPI 6%
Structured Data (JSON-LD) 9% TLS / HTTPS 5%
HTTP Headers 9% Sitemap 4%
Agent Card (A2A) 7% AI Well-Known 3%
MCP 7% Content Negotiation (Markdown for Agents) 0%*
SEO Basics 7% RSL License · Agent Access (cloaking) · Crawl Efficiency 0%*

* Informational in 3.x: reported in full, no effect on the score. Weighted in v4.0.

Every finding links to a step-by-step remediation guide.

Usage

ax-audit https://example.com                          # full audit, terminal output
ax-audit https://a.com https://b.com --concurrency 2  # batch, in parallel
ax-audit https://example.com --output markdown        # also: json, html
ax-audit https://example.com --checks llms-txt,rsl    # subset of checks
ax-audit https://example.com --only-failures          # hide passing findings
ax-audit https://example.com --baseline .ax-baseline.json --fail-on-regression 5

Exit codes gate CI: 0 for score ≥ 70, 1 below. Full flag reference: docs/cli.md · CI recipes (PR comments, regression gates, scheduled audits): docs/ci.md.

Programmatic API

import { audit, batchAudit } from 'ax-audit';

const report = await audit({ url: 'https://example.com' });
report.overallScore; // 0–100
report.results;      // per-check findings

Full API and types: docs/api.md.

Documentation

Start here:

Document Contents
docs/getting-started.md First audit, reading the report, fixing in impact order
docs/concepts.md The AX standards landscape — llms.txt, A2A, MCP, RSL, Content Signals, Web Bot Auth

Reference:

Document Contents
docs/checks.md All 18 checks with exact scoring per finding, weights, scoring model
docs/cli.md Every flag, output formats, exit codes, baseline workflow
docs/api.md audit, batchAudit, baselines, reporters, types, API-stability policy
docs/ci.md GitHub Actions recipes: gates, PR comments, scheduled drift detection
docs/architecture.md Pipeline design, check anatomy, how to add a check, scoring policy
docs/faq.md Troubleshooting, false positives, the agent-access verified-bots caveat
Remediation guides Step-by-step fixes for every finding

The same documentation is browsable at lucioduran.com/projects/ax-audit/docs, rendered from these files. Contributors: see CONTRIBUTING.md and SECURITY.md.

Scoring

Grade Score Exit Code
Excellent 90–100 0
Good 70–89 0
Fair 50–69 1
Poor 0–49 1

Tech

TypeScript strict mode · 2 runtime dependencies (chalk, commander) · Node 18+ built-in fetch · parallel checks via Promise.allSettled · per-run request cache with Vary-aware keys · transient-failure retries with backoff · 301 tests on node:test with zero test dependencies.

Contributing

Contributions are welcome — see docs/architecture.md for the pipeline design, check anatomy, and the steps (code, tests, docs, remediation guide) a new check requires.

Related

  • ax-init — generate the AX files this tool audits
  • ax-cite — embed AI-extractable structured data in your pages

License

Apache 2.0


Built by Lucio Duran