Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Windows Tipps & SecurityGetting Repeated No Caller ID Calls? Here’s What’s Really Going On(22.09.2026 um 22:31 Uhr)
Windows Tipps & SecurityHöllenmaschine: Gaming-Peripherie für gut 1.800 Euro für die HMX 6(23.09.2026 um 10:20 Uhr)
Windows Tipps & SecurityDas nächste große Ding: KI-Agenten(23.09.2026 um 10:30 Uhr)
Sichere ProgrammierungHow AI Is Making Restaurant Menus Easier to Navigate(23.09.2026 um 10:55 Uhr)
Windows Tipps & SecurityGetting Repeated No Caller ID Calls? Here’s What’s Really Going On(22.09.2026 um 22:31 Uhr)
Windows Tipps & SecurityHöllenmaschine: Gaming-Peripherie für gut 1.800 Euro für die HMX 6(23.09.2026 um 10:20 Uhr)
Windows Tipps & SecurityDas nächste große Ding: KI-Agenten(23.09.2026 um 10:30 Uhr)
Sichere ProgrammierungHow AI Is Making Restaurant Menus Easier to Navigate(23.09.2026 um 10:55 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

We scored our own website 29/100 on AI-agent readiness. Here's how we fixed it in one afternoon.

In my last post I scanned 106 semiconductor sites and the average score was 42/100 — an F. Then I ran the same scanner on our own homepage. 29/100. Also an F. So I spent one afternoon fixing it. We got to 83/100 (A). Here are the three …

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

In my last post I scanned 106 semiconductor sites and the average score was 42/100 — an F.



Then I ran the same scanner on our own homepage.



29/100. Also an F.



So I spent one afternoon fixing it. We got to 83/100 (A).



Here are the three highest-ROI changes, ranked by effort. All of them are free and most take under an hour.









1. Add markdown content negotiation (15 min)



The single biggest waste: when an AI agent requests Accept: text/markdown, most servers still dump a wall of HTML. A typical chip-company homepage costs an agent 40,000–90,000 tokens to parse. The same content as clean markdown is 1,000–2,500 tokens — a 95% reduction.



If you use a modern framework (Next.js, Astro, SvelteKit, etc.) you can do this in one middleware block:




if ((req.headers.get('accept') || '').includes('text/markdown')) {
return new Response(markdown, {
headers: { 'Content-Type': 'text/markdown; charset=utf-8' }
});
}






Or at the edge (Cloudflare Workers / Vercel Edge):




export default {
async fetch(request) {
const url = new URL(request.url);
if (request.headers.get('accept')?.includes('text/markdown')) {
const md = await getMarkdownForPath(url.pathname);
return new Response(md, {
headers: { 'Content-Type': 'text/markdown' }
});
}
return fetch(request);
}
};






Impact: ~25 point jump on our score.









2. Write an llms.txt (20 min)



llms.txt is a simple markdown index at /.well-known/llms.txt that tells an AI agent which pages matter and what they contain. Think of it as a robots.txt for language models.




# Aireadify
> AI-agent readiness scanner and scoring for B2B websites.

## Products
- [Scanner](https://aireadify.ai/scan): Free 0–100 score for any URL, ~2s, no signup
- [Leaderboard](https://aireadify.ai/leaderboard): 106 semiconductor sites ranked

## Content
- [Why AI-agent readiness matters for B2B](https://aireadify.ai/blog/why-ai-readiness)
- [Methodology: 20 signals we check](https://aireadify.ai/blog/methodology)






That's it. No schema, no JSON, no XML. Just markdown links with descriptions.



Impact: ~20 point jump.









3. Add structured data for products (30 min)



Most B2B sites have product catalogs that are invisible to AI agents because they're rendered client-side or buried in unstructured HTML.



Add JSON-LD Product schema to each product page:




{
"@context": "https://schema.org",
"@type": "Product",
"name": "CT8000 3D Hall Sensor",
"description": "±40 mT, I²C / SPI, AEC-Q100 Grade 1",
"sku": "CT8000-WL-TR",
"brand": {
"@type": "Brand",
"name": "YourCompany"
}
}






And expose a simple MCP endpoint so agents can query it directly instead of scraping:




// POST /mcp/search_parts
{
"query": "3D hall sensor I2C automotive"
}






Impact: ~10 point jump.









The full checklist











































Fix Time Point gain
Markdown content negotiation 15 min ~25
llms.txt 20 min ~20
JSON-LD structured data 30 min ~10
robots.txt + sitemap.xml 10 min ~5
Open Graph + Twitter Cards 15 min ~5
Total ~90 min ~65


We went from 29 → 83 in roughly that order. The last 17 points are diminishing returns — semantic HTML, dark-mode meta tags, RSS feeds — nice-to-haves.









Why this matters beyond the score



Buyers are researching inside ChatGPT, Claude, and Perplexity now. If your site costs an agent 90k tokens to parse, it gets deprioritized or hallucinated. If it serves clean markdown with an index, it gets cited.



The score is a proxy for "how likely is an AI to recommend you?"









Scan your own site



Free, no signup, ~2 seconds: https://aireadify.ai/scan



It checks the same 20 signals and gives you a per-category breakdown with exact fixes. If you want the full 106-company ranking, it's here: https://aireadify.ai/leaderboard



Disclosure: we built the scanner and do agent-readiness work. Happy to share methodology or argue about weights in the comments.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten We scored our own website 29/100 on AI-agent readiness. Here's how we fixed it in one afternoon.

Thematisch verwandte Begriffe: scored, website, 29100, AIagent · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-96258 | A vulnerability has been found in onSite internet GmbH Auktion NG Auktio…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick