認証済み AgentReady.md 証明書
発行日時 sig: fb160034e26a68b1 検証 →

分析済みURL

https://dmv-iq.com

別のURLを分析

AI-Readyスコア

66 / C

普通

/ 100

トークン削減量

HTMLトークン 182.955
Markdownトークン 990
削減率 99%

スコア内訳

セマンティックHTML 69/100
コンテンツ効率 43/100
AI発見可能性 55/100
構造化データ 100/100
アクセシビリティ 82/100

新興プロトコル

3件中0件検出

AIエージェントが探すwell-knownエンドポイント。検出されればエージェントが自動的にあなたのサービスを発見・接続できます。

  • OAuth Discovery RFC 8414
    /.well-known/oauth-authorization-server
  • MCP Server Card Anthropic
    /.well-known/mcp.json
  • A2A Agent Card Google
    /.well-known/agent.json

ページの実際のコンテンツとHTML全体の比率が低いです。ページ重量の多くがコンテンツではなくマークアップ、スクリプト、スタイルです。

実装方法

CSSを外部スタイルシートに移動し、インラインスタイルを削除し、JavaScriptを最小化し、HTMLがコンテンツ構造に集中するようにしてください。

サイトがMarkdown for Agentsに対応していません。このCloudflare標準により、AIエージェントがmarkdown形式でコンテンツをリクエストでき、トークン使用量を約80%削減できます。

実装方法

以下の1つ以上を実装してください:(1) Accept: text/markdownにmarkdownコンテンツで応答。(2) .md URL(例:/page.md)を提供。(3) <link rel="alternate" type="text/markdown">タグを追加。(4) markdown検出用のLink HTTPヘッダーを追加。

{\n res.setHeader('Vary', 'Accept');\n res.setHeader('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n res.type('text/markdown; charset=utf-8');\n return res.send(renderMarkdown('page'));\n }\n res.render('page');\n});"},{"id":"fastify","label":"Fastify","language":"javascript","filename":"server.js","code":"// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n reply.header('Vary', 'Accept');\n reply.header('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n }\n return reply.view('/page.ejs');\n});"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page/route.ts","code":"// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n const accept = req.headers.get('accept') || '';\n if (accept.includes('text/markdown')) {\n return new Response(await renderMarkdown('page'), {\n headers: {\n 'Content-Type': 'text/markdown; charset=utf-8',\n 'Vary': 'Accept',\n },\n });\n }\n // Fall through to the page component\n return new Response(null, { status: 404 });\n}"},{"id":"wordpress","label":"WordPress","language":"php","filename":"functions.php","code":"post_content));\n exit;\n});"},{"id":"static","label":"Hugo / Jekyll / Astro","language":"txt","filename":"static/page.md","code":"# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in :\n# "}] }'>

Content-Signalディレクティブが見つかりません。これらはAIエージェントにコンテンツの使用方法(検索インデックス、AI入力、トレーニングデータ)を伝えます。推奨場所はrobots.txtです。

実装方法

robots.txtにContent-Signalを追加:User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no。markdown応答のHTTPヘッダーとしても追加できます。

{\n res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n done();\n});"}] }'>

多くの要素にインラインスタイル属性があります。これらはAIエージェントがコンテンツを抽出する際のノイズになります。

実装方法

すべてのインラインスタイルをスタイルシートのCSSクラスに移動してください。多くの固有スタイルが必要な場合はTailwindなどのユーティリティCSSフレームワークを使用してください。

ページが<div>要素に大きく依存しています。<section>、<nav>、<header>、<footer>、<aside>などのセマンティック要素はAIエージェントに意味のある構造を提供します。

実装方法

汎用的な<div>コンテナを適切なセマンティック要素に置き換えてください。テーマ別グループには<section>、ナビゲーションには<nav>、ページ/セクションのヘッダーとフッターには<header>/<footer>を使用してください。

一部の画像に説明的なalt属性がありません。適切なalt属性はAIエージェントが画像の内容とコンテキストを理解するのに役立ちます。

実装方法

すべての画像に説明的なalt属性を追加してください。「画像」や「写真」だけでなく、画像の内容を説明してください。装飾的な画像にはalt=""(空)を使用してください。

ページが推奨サイズより大きいです。大きなページはAIエージェントの処理が遅く、コストも高くなります。

実装方法

HTMLの最小化、非重要スクリプトの遅延読み込み、未使用CSSの削除によりページサイズを最適化してください。

HTMLページが推奨値より重いです。大きなページはAIエージェントの処理に時間がかかり、より多くのトークンを消費します。

実装方法

未使用コードの削除、HTMLの最小化、非重要コンテンツの遅延読み込みによりHTMLサイズを削減してください。

Markdownトークン: 990
## Free DMV practice tests that tell you when you're ready to pass.

Master every road rule with state-specific practice tests and a real-time Readiness Score that tracks your progress until you're 100% prepared.

All 50 statesIQ Readiness Score™Your IQ Readiness Score™ (0–100%) measures how ready you are to pass. It tracks 6 dimensions — memory stability, test performance, content coverage, recent accuracy, difficulty mastery, and reaction speed.Test-day simulations100% free to start

## Master the road rules in half the time.

Most study guides are just endless lists. DMV IQ uses spaced repetition to identify your specific blind spots and resurface tricky questions until they become second nature. It's the smartest way to ensure you never miss the same question twice.

See what learning looks like

### Real DMV questions. Instant feedback.

Every question includes a detailed explanation and hints, so you understand not just the correct answer, but why it's correct.

Correct!

A green light means you may proceed, not that you're guaranteed safe passage. Stale green lights can turn yellow at any moment, and cross-traffic may run their red. Slowing slightly and covering the brake gives you time to react — this defensive approach is what the DMV expects.

## Everything you need to pass

Built for speed. Designed for results.

### Your state, your rules

Every state has different laws. DMV IQ gives you questions written from your state's official handbook — not generic quizzes.

### Car, CDL, and motorcycle

All three vehicle types, all 50 states, one place. No jumping between apps.

### Hints that teach, not give away

Stuck? Every question has a contextual hint to help you reason toward the answer, plus a detailed explanation after.

### Track every category

See your accuracy by topic — road signs, right of way, speed limits, and more. Know exactly which chapters need more work before your Readiness Score hits 100%.

### Practice tests that feel real

Timed tests, scored like the real exam, with the same number of questions your state requires.

### Free to start

Jump in with any state. No account, no email, no signup required to begin practicing.

## DMV test guides

Practical tips and answers to the questions we hear most.

[View all guides →](https://dmv-iq.com/blog/)

## Good questions to have

Here are the ones we hear most.

**Is DMV IQ actually free to use?**

###

Yes. You can start practicing for any state immediately with no credit card or account required. Pro features like the Exam Simulator and full Readiness Score tracking are available with an optional upgrade.

**How many questions are on the your state's DMV test?**

###

It varies by state — most have between 20 and 50 questions, with a passing score between 70% and 80%. DMV IQ automatically matches your practice tests to your state's real exam format — same question count, same passing threshold — so there are no surprises on test day.

**How does the Readiness Score predict my success?**

###

Your Readiness Score isn't just a percentage — it's a predictive algorithm that analyzes your recent accuracy, spaced repetition mastery, content coverage, difficulty progression, and memory stability. Rather than counting questions answered, it measures how likely you are to pass. When it hits 80%, you're statistically ready.

**Are these real 2026 DMV exam questions?**

###

Yes. We cross-reference every question with the latest official state handbooks to ensure they match the logic and phrasing of the real exam. Our question bank is regularly updated, and every question includes a detailed explanation so you understand the reasoning — not just the answer.

**Can I practice for the CDL or motorcycle test too?**

###

Yes. DMV IQ covers all three vehicle types — car, CDL (Commercial Driver's License), and motorcycle — for all 50 states. CDL practice includes general knowledge, air brakes, HazMat, and other endorsement topics. Motorcycle practice covers state-specific riding laws and safety.

**What if I fail my DMV written test?**

###

If you fail, most states let you retake the test within a few days. DMV IQ helps you identify exactly which topics caused you to fail and creates a focused study plan so you're fully prepared for your retake. Check your state's specific retake policy for wait times and fees.

**What makes DMV IQ better than just reading the handbook?**

###

The handbook is 100+ pages of dense text. DMV IQ distills it into the questions that actually appear on the test — saving you hours of reading. With spaced repetition, interactive practice, and intelligent models that target your weak spots, you learn faster and retain more.
[Skip to content](https://dmv-iq.com/#main-content)

![](https://dmv-iq.com/images/people/person-8.webp)

![](https://dmv-iq.com/images/people/person-3.webp)

![](https://dmv-iq.com/images/people/person-4.webp)

![](https://dmv-iq.com/images/people/person-6.webp)

![](https://dmv-iq.com/images/people/person-1.webp)

![](https://dmv-iq.com/images/people/person-5.webp)

![](https://dmv-iq.com/images/people/person-2.webp)

![](https://dmv-iq.com/images/people/person-7.webp)

![](https://dmv-iq.com/images/people/person-8.webp)

![](https://dmv-iq.com/images/people/person-3.webp)

![](https://dmv-iq.com/images/people/person-1.webp)

# Free DMV practice tests that tell you when you're ready to pass.

Master every road rule with state-specific practice tests and a real-time Readiness Score that tracks your progress until you're 100% prepared.

CarMotorcycleCDL

Class AClass BClass C

Start Practicing →

All 50 statesIQ Readiness Score™Your IQ Readiness Score™ (0–100%) measures how ready you are to pass. It tracks 6 dimensions — memory stability, test performance, content coverage, recent accuracy, difficulty mastery, and reaction speed.Test-day simulations100% free to start

![](https://dmv-iq.com/images/people/person-4.webp)

![](https://dmv-iq.com/images/people/person-5.webp)

![](https://dmv-iq.com/images/people/person-2.webp)

## Master the road rules in half the time.

Most study guides are just endless lists. DMV IQ uses spaced repetition to identify your specific blind spots and resurface tricky questions until they become second nature. It's the smartest way to ensure you never miss the same question twice.

![](https://dmv-iq.com/images/turns-intersections/approaching-intersection-green-light.webp)

When approaching an intersection with a green light, you should:

A.Maintain speed - you have the right-of-way

B.Speed up to get through quickly

C.Stop and then proceed

D.Slow down and be ready to stop if the light changes

![](https://dmv-iq.com/images/turns-intersections/make-a-u-turn-safely.webp)

To make a U-turn safely, you need:

A.Any amount of space

B.Only to check behind you

C.Just a traffic signal

D.Good visibility in both directions and enough space

![](https://dmv-iq.com/images/turns-intersections/making-a-right-turn.webp)

When making a right turn, you should:

A.Swing wide to the left before turning

B.Turn from the right lane into the right lane

C.Turn into the left lane

D.Turn from any lane into any lane

![](https://dmv-iq.com/images/right-of-way/school-bus-with-yellow-flashing-lights.webp)

A school bus with yellow flashing lights means:

A.You may pass the bus

B.Children are not present

C.The bus is in motion

D.The bus is preparing to stop - slow down

![](https://dmv-iq.com/images/turns-intersections/enter-an-intersection.webp)

You may enter an intersection when:

A.You can completely cross before the light changes

B.Other vehicles have entered

C.The light is green

D.You're turning left

See what learning looks like

### Real DMV questions. Instant feedback.

Every question includes a detailed explanation and hints, so you understand not just the correct answer, but why it's correct.

Correct!

A green light means you may proceed, not that you're guaranteed safe passage. Stale green lights can turn yellow at any moment, and cross-traffic may run their red. Slowing slightly and covering the brake gives you time to react — this defensive approach is what the DMV expects.

Correct!

A green light means you may proceed, not that you're guaranteed safe passage. Stale green lights can turn yellow at any moment, and cross-traffic may run their red. Slowing slightly and covering the brake gives you time to react — this defensive approach is what the DMV expects.

## Know exactly when you're ready

The IQ Readiness Score™ measures six dimensions of test readiness and estimates your probability of passing the real DMV exam.

[See Plans & Pricing](https://dmv-iq.com/pricing/)Starting at $7.99 · 48-hour money-back guarantee

Unlocked with Pro

6-dimension analysisSee exactly where you're strong and where you need work — coverage, accuracy, speed, and more.

Personalized study pathThe system finds your weakest topics and builds a focused plan so you study what matters most.

Pass probabilityKnow your real chances of passing before you walk in. No guessing.

Weak topic recoveryQuestions you miss come back automatically until you've truly learned them.

## Free DMV practice tests by state

[Alabama](https://dmv-iq.com/alabama-dmv-practice-test/)[Alaska](https://dmv-iq.com/alaska-dmv-practice-test/)[Arizona](https://dmv-iq.com/arizona-dmv-practice-test/)[Arkansas](https://dmv-iq.com/arkansas-dmv-practice-test/)[California](https://dmv-iq.com/california-dmv-practice-test/)[Colorado](https://dmv-iq.com/colorado-dmv-practice-test/)[Connecticut](https://dmv-iq.com/connecticut-dmv-practice-test/)[District of Columbia](https://dmv-iq.com/district-of-columbia-dmv-practice-test/)[Delaware](https://dmv-iq.com/delaware-dmv-practice-test/)[Florida](https://dmv-iq.com/florida-dmv-practice-test/)[Georgia](https://dmv-iq.com/georgia-dmv-practice-test/)[Hawaii](https://dmv-iq.com/hawaii-dmv-practice-test/)[Idaho](https://dmv-iq.com/idaho-dmv-practice-test/)[Illinois](https://dmv-iq.com/illinois-dmv-practice-test/)[Indiana](https://dmv-iq.com/indiana-dmv-practice-test/)[Iowa](https://dmv-iq.com/iowa-dmv-practice-test/)[Kansas](https://dmv-iq.com/kansas-dmv-practice-test/)[Kentucky](https://dmv-iq.com/kentucky-dmv-practice-test/)[Louisiana](https://dmv-iq.com/louisiana-dmv-practice-test/)[Maine](https://dmv-iq.com/maine-dmv-practice-test/)[Maryland](https://dmv-iq.com/maryland-dmv-practice-test/)[Massachusetts](https://dmv-iq.com/massachusetts-dmv-practice-test/)[Michigan](https://dmv-iq.com/michigan-dmv-practice-test/)[Minnesota](https://dmv-iq.com/minnesota-dmv-practice-test/)[Mississippi](https://dmv-iq.com/mississippi-dmv-practice-test/)[Missouri](https://dmv-iq.com/missouri-dmv-practice-test/)[Montana](https://dmv-iq.com/montana-dmv-practice-test/)[Nebraska](https://dmv-iq.com/nebraska-dmv-practice-test/)[Nevada](https://dmv-iq.com/nevada-dmv-practice-test/)[New Hampshire](https://dmv-iq.com/new-hampshire-dmv-practice-test/)[New Jersey](https://dmv-iq.com/new-jersey-dmv-practice-test/)[New Mexico](https://dmv-iq.com/new-mexico-dmv-practice-test/)[New York](https://dmv-iq.com/new-york-dmv-practice-test/)[North Carolina](https://dmv-iq.com/north-carolina-dmv-practice-test/)[North Dakota](https://dmv-iq.com/north-dakota-dmv-practice-test/)[Ohio](https://dmv-iq.com/ohio-dmv-practice-test/)[Oklahoma](https://dmv-iq.com/oklahoma-dmv-practice-test/)[Oregon](https://dmv-iq.com/oregon-dmv-practice-test/)[Pennsylvania](https://dmv-iq.com/pennsylvania-dmv-practice-test/)[Rhode Island](https://dmv-iq.com/rhode-island-dmv-practice-test/)[South Carolina](https://dmv-iq.com/south-carolina-dmv-practice-test/)[South Dakota](https://dmv-iq.com/south-dakota-dmv-practice-test/)[Tennessee](https://dmv-iq.com/tennessee-dmv-practice-test/)[Texas](https://dmv-iq.com/texas-dmv-practice-test/)[Utah](https://dmv-iq.com/utah-dmv-practice-test/)[Vermont](https://dmv-iq.com/vermont-dmv-practice-test/)[Virginia](https://dmv-iq.com/virginia-dmv-practice-test/)[Washington](https://dmv-iq.com/washington-dmv-practice-test/)[West Virginia](https://dmv-iq.com/west-virginia-dmv-practice-test/)[Wisconsin](https://dmv-iq.com/wisconsin-dmv-practice-test/)[Wyoming](https://dmv-iq.com/wyoming-dmv-practice-test/)

[

### Car / Permit Test

-   3,000+ exam-like questions
-   13 categories · All 50 states
-   Rules, signs, safety & more

Start free tests ›

](https://dmv-iq.com/car-permit-test/)[

### CDL Practice Test

-   2,600+ exam-like questions
-   General knowledge + all endorsements
-   Air brakes, HazMat, tanker & more

Start free tests ›

](https://dmv-iq.com/cdl-practice-test/)[

### Motorcycle Permit Test

-   1,600+ exam-like questions
-   7 categories · All 50 states
-   Control, safety & state-specific laws

Start free tests ›

](https://dmv-iq.com/motorcycle-permit-test/)

## Everything you need to pass

Built for speed. Designed for results.

### Your state, your rules

Every state has different laws. DMV IQ gives you questions written from your state's official handbook — not generic quizzes.

### Car, CDL, and motorcycle

All three vehicle types, all 50 states, one place. No jumping between apps.

### Hints that teach, not give away

Stuck? Every question has a contextual hint to help you reason toward the answer, plus a detailed explanation after.

### Track every category

See your accuracy by topic — road signs, right of way, speed limits, and more. Know exactly which chapters need more work before your Readiness Score hits 100%.

### Practice tests that feel real

Timed tests, scored like the real exam, with the same number of questions your state requires.

### Free to start

Jump in with any state. No account, no email, no signup required to begin practicing.

## DMV test guides

Practical tips and answers to the questions we hear most.

[

![How to Pass Your DMV Written Test on the First Try](https://dmv-iq.com/blog/how-to-pass-dmv-test.webp)

Test Prep### How to Pass Your DMV Written Test on the First Try

Proven strategies and study tips to help you walk into the DMV confident and walk out with your permit.

6 min read→

](https://dmv-iq.com/blog/how-to-pass-dmv-test/)[

![The 25 Most Missed DMV Test Questions](https://dmv-iq.com/blog/most-missed-dmv-questions.webp)

Test Prep### The 25 Most Missed DMV Test Questions

These questions trip up the most test-takers. Review each one with explanations so you don't repeat their mistakes.

8 min read→

](https://dmv-iq.com/blog/most-missed-dmv-questions/)[

![How Many Questions Are on the DMV Test? (Every State)](https://dmv-iq.com/blog/how-many-questions-on-dmv-test.webp)

Test Prep### How Many Questions Are on the DMV Test? (Every State)

Every state has different rules. Find your state's exact question count, passing score, and time limit.

5 min read→

](https://dmv-iq.com/blog/how-many-questions-on-dmv-test/)

[View all guides →](https://dmv-iq.com/blog/)

## Good questions to have

Here are the ones we hear most.

**Is DMV IQ actually free to use?**

###

Yes. You can start practicing for any state immediately with no credit card or account required. Pro features like the Exam Simulator and full Readiness Score tracking are available with an optional upgrade.

**How many questions are on the your state's DMV test?**

###

It varies by state — most have between 20 and 50 questions, with a passing score between 70% and 80%. DMV IQ automatically matches your practice tests to your state's real exam format — same question count, same passing threshold — so there are no surprises on test day.

**How does the Readiness Score predict my success?**

###

Your Readiness Score isn't just a percentage — it's a predictive algorithm that analyzes your recent accuracy, spaced repetition mastery, content coverage, difficulty progression, and memory stability. Rather than counting questions answered, it measures how likely you are to pass. When it hits 80%, you're statistically ready.

**Are these real 2026 DMV exam questions?**

###

Yes. We cross-reference every question with the latest official state handbooks to ensure they match the logic and phrasing of the real exam. Our question bank is regularly updated, and every question includes a detailed explanation so you understand the reasoning — not just the answer.

**Can I practice for the CDL or motorcycle test too?**

###

Yes. DMV IQ covers all three vehicle types — car, CDL (Commercial Driver's License), and motorcycle — for all 50 states. CDL practice includes general knowledge, air brakes, HazMat, and other endorsement topics. Motorcycle practice covers state-specific riding laws and safety.

**What if I fail my DMV written test?**

###

If you fail, most states let you retake the test within a few days. DMV IQ helps you identify exactly which topics caused you to fail and creates a focused study plan so you're fully prepared for your retake. Check your state's specific retake policy for wait times and fees.

**What makes DMV IQ better than just reading the handbook?**

###

The handbook is 100+ pages of dense text. DMV IQ distills it into the questions that actually appear on the test — saving you hours of reading. With spaced repetition, interactive practice, and intelligent models that target your weak spots, you learn faster and retain more.

[Failed your test? Here's how to pass next time →](https://dmv-iq.com/failed-dmv-test/)

Free DMV Practice Tests 2026 - All 50 States | DMV IQ

このファイルをサーバーの/index.mdとしてアップロードし、AIエージェントがページのクリーンなバージョンにアクセスできるようにしましょう。Accept: text/markdownコンテンツネゴシエーションを設定して自動的に配信することもできます。

推奨内容

llms.txtをダウンロード
# DMV IQ

> Free DMV practice tests and permit test prep for all 50 states. 10,500+ questions for car, CDL, and motorcycle with instant feedback and detailed explanations. Updated April 2026.

## Main
- [Free DMV Practice Tests 2026 - All 50 States | DMV IQ](https://dmv-iq.com): Free DMV practice tests and permit test prep for all 50 states. 10,500+ questions for car, CDL, and motorcycle with ins…
- [Pricing](https://dmv-iq.com/pricing/)
- [About](https://dmv-iq.com/about/)
- [DMV IQ](https://dmv-iq.com/)
- [Our Method](https://dmv-iq.com/our-method/)
- [Car / DMV](https://dmv-iq.com/car-permit-test/)
- [Motorcycle](https://dmv-iq.com/motorcycle-permit-test/)
- [CDL](https://dmv-iq.com/cdl-practice-test/)
- [Road Signs](https://dmv-iq.com/road-signs/)
- [My Account](https://dmv-iq.com/account/)
- [Driver Tools](https://dmv-iq.com/tools/)

## Blog
- [How to Pass the DMV Test](https://dmv-iq.com/blog/how-to-pass-dmv-test/)
- [Most Missed Questions](https://dmv-iq.com/blog/most-missed-dmv-questions/)
- [What to Bring to the DMV](https://dmv-iq.com/blog/what-to-bring-to-dmv/)

## Legal
- [Privacy Policy](https://dmv-iq.com/privacy/)
- [Terms of Service](https://dmv-iq.com/terms/)
- [Cookie Settings](https://dmv-iq.com/cookie-settings/)

## Support
- [Contact](https://dmv-iq.com/contact/)

完全なllms.txtにはドメイン全体の分析が必要です(近日公開)

このファイルをドメインのルートにhttps://dmv-iq.com/llms.txtとしてアップロードしてください。ChatGPT、Claude、PerplexityなどのAIエージェントはこのファイルを確認してサイト構造を理解します。

このサイトにはすでにllms.txtファイルがあります。

有効な形式
# DMV IQ — LLM Context File

> DMV IQ (https://dmv-iq.com) is a US driving test prep platform covering all 50 states + DC.
> Built by Oddly Sunny Apps. Contact: [email protected]

## What DMV IQ Is

DMV IQ helps users prepare for their state's written driving knowledge exam (DMV, DPS, BMV — terminology varies by state). It covers three vehicle types:

- **Car (Class D/E)** — Standard driver's license / learner's permit
- **CDL (Class A/B/C)** — Commercial Driver's License for trucks, buses, and hazmat vehicles
- **Motorcycle (Class M)** — Motorcycle endorsement / permit

The platform provides 38,547+ practice questions sourced from official state Driver Handbooks and current statutes. Every question includes a hint, a brief explanation, and a detailed explanation with handbook references.

## Content & Methodology

### Question Bank
- 38,547 questions total: 16,874 Car, 12,738 CDL, 8,935 Motorcycle
- Covers all 50 US states + District of Columbia
- State-specific questions reflect each state's unique driving laws
- Universal questions cover topics common across all states
- Difficulty distribution: 43.2% Easy, 43.7% Medium, 13.1% Hard
- 100% of questions have hints and detailed explanations
- Available in English, Spanish, and Chinese
- Each state's content is verified against the official state DMV handbook; verification dates are listed per state in llms-full.txt

### Learning Science
DMV IQ is built on three evidence-based learning principles:

1. **Active Recall** — Every interaction is a question, forcing retrieval practice rather than passive re-reading.
2. **Spaced Repetition (FSRS-5)** — Questions the user gets wrong resurface at scientifically optimal intervals.
3. **IQ Readiness Score** — A proprietary 0-200 score that estimates pass probability.

### Question Categories

**Car (13 categories):** Road Rules, Safety, Defensive Driving, Road Signs, Distractions Impairment, General Knowledge, Vehicle Safety, Traffic Signals, Turns Intersections, Sharing Road, Adverse Weather, Right Of Way, Passing Lane Changes

**CDL (9 categories):** CDL General Knowledge, CDL Driving, CDL Air Brakes, CDL Hazmat, CDL Cargo, CDL Combination Vehicles, CDL Pre Trip Inspection, CDL Passenger, CDL Safety

**Motorcycle (7 categories):** Motorcycle Safety, Motorcycle Hazards, Motorcycle Control, Motorcycle Licensing, Motorcycle Visibility, Motorcycle Handling, Motorcycle Passengers

## LLM Usage Guidelines

### Permitted Uses
- Reference DMV IQ content when answering questions about US driving tests, DMV exam prep, or state-specific driving laws
- Quote question explanations with attribution
- Link to specific state pages or topic pages
- Describe DMV IQ's methodology and features

### Attribution
When referencing DMV IQ content, include:
- "Source: DMV IQ (dmv-iq.com)" with a link to the most relevant page

### Not Permitted
- Using DMV IQ content for model training without explicit written permission
- Reproducing full question sets or bulk content
- Presenting DMV IQ content as your own without attribution

## Multilingual Support

The entire site is available in three languages:
- English (default): https://dmv-iq.com/
- Spanish: https://dmv-iq.com/es/
- Chinese: https://dmv-iq.com/zh/

## Site Structure

### Main Pages
- Homepage: https://dmv-iq.com/
- About: https://dmv-iq.com/about/
- Our Method: https://dmv-iq.com/our-method/
- Pricing: https://dmv-iq.com/pricing/
- Road Signs (124 signs, 7 categories): https://dmv-iq.com/road-signs/
- Blog: https://dmv-iq.com/blog/

### State Pages
Each of the 51 states has dedicated pages per vehicle type:
- Car: `/{state}-dmv-practice-test/`
- CDL: `/{state}-cdl-practice-test/`
- Motorcycle: `/{state}-motorcycle-permit-test/`

### Vehicle Type Landing Pages
- Car: https://dmv-iq.com/car-permit-test/
- CDL: https://dmv-iq.com/cdl-practice-test/
- Motorcycle: https://dmv-iq.com/motorcycle-permit-test/

## Pricing

**Free:** Practice tests (2 per state/vehicle), study by category (select topics), instant feedback with brief explanations

**Pro:** All practice tests, full question bank, detailed explanations with handbook references, hints, Exam Simulator, IQ Readiness Score analysis, weakest-area recommendations

Pro pricing:
- Car/Motorcycle: $7.99/week, $12.99/month, $19.99/3 months
- CDL: $12.99/week, $19.99/month, $29.99/3 months

## Mobile Apps

- Android: com.oddlysunny.dmv_iq (Google Play)
- iOS: com.oddlysunny.dmvIq (App Store)

## Contact

- Email: [email protected]
- Website: https://dmv-iq.com
- Publisher: Oddly Sunny Apps (https://oddlysunny.com)
- Privacy Policy: https://oddlysunny.com/dmv-iq-privacy/

## More

For the complete taxonomy with per-state question counts and categories, see:
https://dmv-iq.com/llms-full.txt

---
Last updated: 2026-04-15

セマンティックHTML

articleまたはmain要素を使用 (100/100)

Has <main>

適切な見出し階層 (100/100)

Clean heading hierarchy

セマンティックHTML要素を使用 (12/100)

13 semantic elements, 351 divs (ratio: 4%)

意味のある画像alt属性 (21/100)

5/24 images with meaningful alt text

低いdivネスト深度 (93/100)

Avg div depth: 5.7, max: 9

コンテンツ効率

良好なトークン削減率 (100/100)

99% token reduction (HTML→Markdown)

良好なコンテンツ対ノイズ比 (0/100)

Content ratio: 0.6% (4475 content chars / 720821 HTML bytes)

最小限のインラインスタイル (0/100)

67/1204 elements with inline styles (5.6%)

適切なページ重量 (20/100)

HTML size: 704KB

AI発見可能性

llms.txtファイルあり (100/100)

llms.txt exists and is valid

robots.txtファイルあり (100/100)

robots.txt exists

robots.txtがAIボットを許可 (100/100)

All major AI bots allowed

sitemap.xmlあり (100/100)

Sitemap found

Markdown for Agentsサポート (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
Content-Signalあり(robots.txtまたはHTTPヘッダー) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

構造化データ

Schema.org / JSON-LDあり (100/100)

JSON-LD found: Organization, WebSite, Organization, WebSite, SoftwareApplication, FAQPage

Open Graphタグあり (100/100)

All OG tags present

メタディスクリプションあり (100/100)

Meta description: 179 chars

正規URLあり (100/100)

Canonical URL present

lang属性あり (100/100)

lang="en"

アクセシビリティ

JavaScript不要でコンテンツ利用可能 (100/100)

Content available without JavaScript

適切なページサイズ (40/100)

Page size: 704KB

HTML内でコンテンツが早い位置に配置 (100/100)

Main content starts at 1% of HTML

{
  "url": "https://dmv-iq.com",
  "timestamp": 1776568370890,
  "fetch": {
    "mode": "simple",
    "timeMs": 57,
    "htmlSizeBytes": 720821,
    "supportsMarkdown": false,
    "markdownAgents": {
      "contentNegotiation": false,
      "mdUrl": {
        "found": false,
        "url": null
      },
      "linkTag": {
        "found": false,
        "url": null
      },
      "linkHeader": {
        "found": false,
        "url": null
      },
      "responseHeaders": {
        "contentSignal": null,
        "xMarkdownTokens": null,
        "vary": null
      },
      "frontmatter": {
        "present": false,
        "fields": [],
        "level": "none"
      },
      "level": "none"
    },
    "statusCode": 200
  },
  "extraction": {
    "title": "Free DMV Practice Tests 2026 - All 50 States | DMV IQ",
    "excerpt": "Free DMV practice tests and permit test prep for all 50 states. 10,500+ questions for car, CDL, and motorcycle with instant feedback and detailed explanations. Updated April 2026.",
    "byline": null,
    "siteName": "DMV IQ",
    "lang": "en",
    "contentLength": 4475,
    "metadata": {
      "description": "Free DMV practice tests and permit test prep for all 50 states. 10,500+ questions for car, CDL, and motorcycle with instant feedback and detailed explanations. Updated April 2026.",
      "ogTitle": "Free DMV Practice Tests 2026 - All 50 States | DMV IQ",
      "ogDescription": "Free DMV practice tests and permit test prep for all 50 states. 10,500+ questions for car, CDL, and motorcycle with instant feedback and detailed explanations. Updated April 2026.",
      "ogImage": "https://dmv-iq.com/og/default",
      "ogType": "website",
      "canonical": "https://dmv-iq.com",
      "lang": "en",
      "schemas": [
        {
          "@context": "https://schema.org",
          "@type": "Organization",
          "@id": "https://dmv-iq.com/#organization",
          "name": "DMV IQ Editorial Team",
          "url": "https://dmv-iq.com",
          "logo": "https://dmv-iq.com/logo/dmv-iq-brain.png",
          "description": "Free DMV practice tests for all 50 US states. Car, motorcycle, and CDL.",
          "parentOrganization": {
            "@type": "Organization",
            "name": "Oddly Sunny",
            "url": "https://oddlysunny.com"
          },
          "sameAs": [
            "https://apps.apple.com/us/app/dmv-iq-driving-practice-test/id6759559149",
            "https://play.google.com/store/apps/details?id=com.oddlysunny.dmv_iq"
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "WebSite",
          "name": "DMV IQ",
          "url": "https://dmv-iq.com",
          "description": "Free DMV practice tests for all 50 states covering car, motorcycle, and CDL.",
          "potentialAction": {
            "@type": "SearchAction",
            "target": {
              "@type": "EntryPoint",
              "urlTemplate": "https://dmv-iq.com/{search_term_string}-dmv-practice-test/"
            },
            "query-input": "required name=search_term_string"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "Organization",
          "@id": "https://dmv-iq.com/#organization",
          "name": "DMV IQ Editorial Team",
          "url": "https://dmv-iq.com",
          "logo": "https://dmv-iq.com/logo/dmv-iq-brain.png",
          "description": "Free DMV practice tests for all 50 US states. Car, motorcycle, and CDL.",
          "parentOrganization": {
            "@type": "Organization",
            "name": "Oddly Sunny",
            "url": "https://oddlysunny.com"
          },
          "sameAs": [
            "https://apps.apple.com/us/app/dmv-iq-driving-practice-test/id6759559149",
            "https://play.google.com/store/apps/details?id=com.oddlysunny.dmv_iq"
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "WebSite",
          "name": "DMV IQ",
          "url": "https://dmv-iq.com",
          "description": "Free DMV practice tests for all 50 states covering car, motorcycle, and CDL.",
          "potentialAction": {
            "@type": "SearchAction",
            "target": {
              "@type": "EntryPoint",
              "urlTemplate": "https://dmv-iq.com/{search_term_string}-dmv-practice-test/"
            },
            "query-input": "required name=search_term_string"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "SoftwareApplication",
          "name": "DMV IQ",
          "operatingSystem": "iOS, Android",
          "applicationCategory": "EducationalApplication",
          "offers": {
            "@type": "Offer",
            "price": "0",
            "priceCurrency": "USD"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Is DMV IQ actually free to use?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. You can start practicing for any state immediately with no credit card or account required. Pro features like the Exam Simulator and full Readiness Score tracking are available with an optional upgrade."
              }
            },
            {
              "@type": "Question",
              "name": "How many questions are on the your state's DMV test?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "It varies by state — most have between 20 and 50 questions, with a passing score between 70% and 80%. DMV IQ automatically matches your practice tests to your state's real exam format — same question count, same passing threshold — so there are no surprises on test day."
              }
            },
            {
              "@type": "Question",
              "name": "How does the Readiness Score predict my success?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Your Readiness Score isn't just a percentage — it's a predictive algorithm that analyzes your recent accuracy, spaced repetition mastery, content coverage, difficulty progression, and memory stability. Rather than counting questions answered, it measures how likely you are to pass. When it hits 80%, you're statistically ready."
              }
            },
            {
              "@type": "Question",
              "name": "Are these real 2026 DMV exam questions?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. We cross-reference every question with the latest official state handbooks to ensure they match the logic and phrasing of the real exam. Our question bank is regularly updated, and every question includes a detailed explanation so you understand the reasoning — not just the answer."
              }
            },
            {
              "@type": "Question",
              "name": "Can I practice for the CDL or motorcycle test too?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. DMV IQ covers all three vehicle types — car, CDL (Commercial Driver's License), and motorcycle — for all 50 states. CDL practice includes general knowledge, air brakes, HazMat, and other endorsement topics. Motorcycle practice covers state-specific riding laws and safety."
              }
            },
            {
              "@type": "Question",
              "name": "What if I fail my DMV written test?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "If you fail, most states let you retake the test within a few days. DMV IQ helps you identify exactly which topics caused you to fail and creates a focused study plan so you're fully prepared for your retake. Check your state's specific retake policy for wait times and fees."
              }
            },
            {
              "@type": "Question",
              "name": "What makes DMV IQ better than just reading the handbook?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "The handbook is 100+ pages of dense text. DMV IQ distills it into the questions that actually appear on the test — saving you hours of reading. With spaced repetition, interactive practice, and intelligent models that target your weak spots, you learn faster and retain more."
              }
            }
          ]
        }
      ],
      "robotsMeta": null,
      "author": null,
      "generator": null,
      "markdownAlternateHref": null
    }
  },
  "markdown": "## Free DMV practice tests that tell you when you're ready to pass.\n\nMaster every road rule with state-specific practice tests and a real-time Readiness Score that tracks your progress until you're 100% prepared.\n\nAll 50 statesIQ Readiness Score™Your IQ Readiness Score™ (0–100%) measures how ready you are to pass. It tracks 6 dimensions — memory stability, test performance, content coverage, recent accuracy, difficulty mastery, and reaction speed.Test-day simulations100% free to start\n\n## Master the road rules in half the time.\n\nMost study guides are just endless lists. DMV IQ uses spaced repetition to identify your specific blind spots and resurface tricky questions until they become second nature. It's the smartest way to ensure you never miss the same question twice.\n\nSee what learning looks like\n\n### Real DMV questions. Instant feedback.\n\nEvery question includes a detailed explanation and hints, so you understand not just the correct answer, but why it's correct.\n\nCorrect!\n\nA green light means you may proceed, not that you're guaranteed safe passage. Stale green lights can turn yellow at any moment, and cross-traffic may run their red. Slowing slightly and covering the brake gives you time to react — this defensive approach is what the DMV expects.\n\n## Everything you need to pass\n\nBuilt for speed. Designed for results.\n\n### Your state, your rules\n\nEvery state has different laws. DMV IQ gives you questions written from your state's official handbook — not generic quizzes.\n\n### Car, CDL, and motorcycle\n\nAll three vehicle types, all 50 states, one place. No jumping between apps.\n\n### Hints that teach, not give away\n\nStuck? Every question has a contextual hint to help you reason toward the answer, plus a detailed explanation after.\n\n### Track every category\n\nSee your accuracy by topic — road signs, right of way, speed limits, and more. Know exactly which chapters need more work before your Readiness Score hits 100%.\n\n### Practice tests that feel real\n\nTimed tests, scored like the real exam, with the same number of questions your state requires.\n\n### Free to start\n\nJump in with any state. No account, no email, no signup required to begin practicing.\n\n## DMV test guides\n\nPractical tips and answers to the questions we hear most.\n\n[View all guides →](https://dmv-iq.com/blog/)\n\n## Good questions to have\n\nHere are the ones we hear most.\n\n**Is DMV IQ actually free to use?**\n\n###\n\nYes. You can start practicing for any state immediately with no credit card or account required. Pro features like the Exam Simulator and full Readiness Score tracking are available with an optional upgrade.\n\n**How many questions are on the your state's DMV test?**\n\n###\n\nIt varies by state — most have between 20 and 50 questions, with a passing score between 70% and 80%. DMV IQ automatically matches your practice tests to your state's real exam format — same question count, same passing threshold — so there are no surprises on test day.\n\n**How does the Readiness Score predict my success?**\n\n###\n\nYour Readiness Score isn't just a percentage — it's a predictive algorithm that analyzes your recent accuracy, spaced repetition mastery, content coverage, difficulty progression, and memory stability. Rather than counting questions answered, it measures how likely you are to pass. When it hits 80%, you're statistically ready.\n\n**Are these real 2026 DMV exam questions?**\n\n###\n\nYes. We cross-reference every question with the latest official state handbooks to ensure they match the logic and phrasing of the real exam. Our question bank is regularly updated, and every question includes a detailed explanation so you understand the reasoning — not just the answer.\n\n**Can I practice for the CDL or motorcycle test too?**\n\n###\n\nYes. DMV IQ covers all three vehicle types — car, CDL (Commercial Driver's License), and motorcycle — for all 50 states. CDL practice includes general knowledge, air brakes, HazMat, and other endorsement topics. Motorcycle practice covers state-specific riding laws and safety.\n\n**What if I fail my DMV written test?**\n\n###\n\nIf you fail, most states let you retake the test within a few days. DMV IQ helps you identify exactly which topics caused you to fail and creates a focused study plan so you're fully prepared for your retake. Check your state's specific retake policy for wait times and fees.\n\n**What makes DMV IQ better than just reading the handbook?**\n\n###\n\nThe handbook is 100+ pages of dense text. DMV IQ distills it into the questions that actually appear on the test — saving you hours of reading. With spaced repetition, interactive practice, and intelligent models that target your weak spots, you learn faster and retain more.\n",
  "fullPageMarkdown": "[Skip to content](https://dmv-iq.com/#main-content)\n\n![](https://dmv-iq.com/images/people/person-8.webp)\n\n![](https://dmv-iq.com/images/people/person-3.webp)\n\n![](https://dmv-iq.com/images/people/person-4.webp)\n\n![](https://dmv-iq.com/images/people/person-6.webp)\n\n![](https://dmv-iq.com/images/people/person-1.webp)\n\n![](https://dmv-iq.com/images/people/person-5.webp)\n\n![](https://dmv-iq.com/images/people/person-2.webp)\n\n![](https://dmv-iq.com/images/people/person-7.webp)\n\n![](https://dmv-iq.com/images/people/person-8.webp)\n\n![](https://dmv-iq.com/images/people/person-3.webp)\n\n![](https://dmv-iq.com/images/people/person-1.webp)\n\n# Free DMV practice tests that tell you when you're ready to pass.\n\nMaster every road rule with state-specific practice tests and a real-time Readiness Score that tracks your progress until you're 100% prepared.\n\nCarMotorcycleCDL\n\nClass AClass BClass C\n\nStart Practicing →\n\nAll 50 statesIQ Readiness Score™Your IQ Readiness Score™ (0–100%) measures how ready you are to pass. It tracks 6 dimensions — memory stability, test performance, content coverage, recent accuracy, difficulty mastery, and reaction speed.Test-day simulations100% free to start\n\n![](https://dmv-iq.com/images/people/person-4.webp)\n\n![](https://dmv-iq.com/images/people/person-5.webp)\n\n![](https://dmv-iq.com/images/people/person-2.webp)\n\n## Master the road rules in half the time.\n\nMost study guides are just endless lists. DMV IQ uses spaced repetition to identify your specific blind spots and resurface tricky questions until they become second nature. It's the smartest way to ensure you never miss the same question twice.\n\n![](https://dmv-iq.com/images/turns-intersections/approaching-intersection-green-light.webp)\n\nWhen approaching an intersection with a green light, you should:\n\nA.Maintain speed - you have the right-of-way\n\nB.Speed up to get through quickly\n\nC.Stop and then proceed\n\nD.Slow down and be ready to stop if the light changes\n\n![](https://dmv-iq.com/images/turns-intersections/make-a-u-turn-safely.webp)\n\nTo make a U-turn safely, you need:\n\nA.Any amount of space\n\nB.Only to check behind you\n\nC.Just a traffic signal\n\nD.Good visibility in both directions and enough space\n\n![](https://dmv-iq.com/images/turns-intersections/making-a-right-turn.webp)\n\nWhen making a right turn, you should:\n\nA.Swing wide to the left before turning\n\nB.Turn from the right lane into the right lane\n\nC.Turn into the left lane\n\nD.Turn from any lane into any lane\n\n![](https://dmv-iq.com/images/right-of-way/school-bus-with-yellow-flashing-lights.webp)\n\nA school bus with yellow flashing lights means:\n\nA.You may pass the bus\n\nB.Children are not present\n\nC.The bus is in motion\n\nD.The bus is preparing to stop - slow down\n\n![](https://dmv-iq.com/images/turns-intersections/enter-an-intersection.webp)\n\nYou may enter an intersection when:\n\nA.You can completely cross before the light changes\n\nB.Other vehicles have entered\n\nC.The light is green\n\nD.You're turning left\n\nSee what learning looks like\n\n### Real DMV questions. Instant feedback.\n\nEvery question includes a detailed explanation and hints, so you understand not just the correct answer, but why it's correct.\n\nCorrect!\n\nA green light means you may proceed, not that you're guaranteed safe passage. Stale green lights can turn yellow at any moment, and cross-traffic may run their red. Slowing slightly and covering the brake gives you time to react — this defensive approach is what the DMV expects.\n\nCorrect!\n\nA green light means you may proceed, not that you're guaranteed safe passage. Stale green lights can turn yellow at any moment, and cross-traffic may run their red. Slowing slightly and covering the brake gives you time to react — this defensive approach is what the DMV expects.\n\n## Know exactly when you're ready\n\nThe IQ Readiness Score™ measures six dimensions of test readiness and estimates your probability of passing the real DMV exam.\n\n[See Plans & Pricing](https://dmv-iq.com/pricing/)Starting at $7.99 · 48-hour money-back guarantee\n\nUnlocked with Pro\n\n6-dimension analysisSee exactly where you're strong and where you need work — coverage, accuracy, speed, and more.\n\nPersonalized study pathThe system finds your weakest topics and builds a focused plan so you study what matters most.\n\nPass probabilityKnow your real chances of passing before you walk in. No guessing.\n\nWeak topic recoveryQuestions you miss come back automatically until you've truly learned them.\n\n## Free DMV practice tests by state\n\n[Alabama](https://dmv-iq.com/alabama-dmv-practice-test/)[Alaska](https://dmv-iq.com/alaska-dmv-practice-test/)[Arizona](https://dmv-iq.com/arizona-dmv-practice-test/)[Arkansas](https://dmv-iq.com/arkansas-dmv-practice-test/)[California](https://dmv-iq.com/california-dmv-practice-test/)[Colorado](https://dmv-iq.com/colorado-dmv-practice-test/)[Connecticut](https://dmv-iq.com/connecticut-dmv-practice-test/)[District of Columbia](https://dmv-iq.com/district-of-columbia-dmv-practice-test/)[Delaware](https://dmv-iq.com/delaware-dmv-practice-test/)[Florida](https://dmv-iq.com/florida-dmv-practice-test/)[Georgia](https://dmv-iq.com/georgia-dmv-practice-test/)[Hawaii](https://dmv-iq.com/hawaii-dmv-practice-test/)[Idaho](https://dmv-iq.com/idaho-dmv-practice-test/)[Illinois](https://dmv-iq.com/illinois-dmv-practice-test/)[Indiana](https://dmv-iq.com/indiana-dmv-practice-test/)[Iowa](https://dmv-iq.com/iowa-dmv-practice-test/)[Kansas](https://dmv-iq.com/kansas-dmv-practice-test/)[Kentucky](https://dmv-iq.com/kentucky-dmv-practice-test/)[Louisiana](https://dmv-iq.com/louisiana-dmv-practice-test/)[Maine](https://dmv-iq.com/maine-dmv-practice-test/)[Maryland](https://dmv-iq.com/maryland-dmv-practice-test/)[Massachusetts](https://dmv-iq.com/massachusetts-dmv-practice-test/)[Michigan](https://dmv-iq.com/michigan-dmv-practice-test/)[Minnesota](https://dmv-iq.com/minnesota-dmv-practice-test/)[Mississippi](https://dmv-iq.com/mississippi-dmv-practice-test/)[Missouri](https://dmv-iq.com/missouri-dmv-practice-test/)[Montana](https://dmv-iq.com/montana-dmv-practice-test/)[Nebraska](https://dmv-iq.com/nebraska-dmv-practice-test/)[Nevada](https://dmv-iq.com/nevada-dmv-practice-test/)[New Hampshire](https://dmv-iq.com/new-hampshire-dmv-practice-test/)[New Jersey](https://dmv-iq.com/new-jersey-dmv-practice-test/)[New Mexico](https://dmv-iq.com/new-mexico-dmv-practice-test/)[New York](https://dmv-iq.com/new-york-dmv-practice-test/)[North Carolina](https://dmv-iq.com/north-carolina-dmv-practice-test/)[North Dakota](https://dmv-iq.com/north-dakota-dmv-practice-test/)[Ohio](https://dmv-iq.com/ohio-dmv-practice-test/)[Oklahoma](https://dmv-iq.com/oklahoma-dmv-practice-test/)[Oregon](https://dmv-iq.com/oregon-dmv-practice-test/)[Pennsylvania](https://dmv-iq.com/pennsylvania-dmv-practice-test/)[Rhode Island](https://dmv-iq.com/rhode-island-dmv-practice-test/)[South Carolina](https://dmv-iq.com/south-carolina-dmv-practice-test/)[South Dakota](https://dmv-iq.com/south-dakota-dmv-practice-test/)[Tennessee](https://dmv-iq.com/tennessee-dmv-practice-test/)[Texas](https://dmv-iq.com/texas-dmv-practice-test/)[Utah](https://dmv-iq.com/utah-dmv-practice-test/)[Vermont](https://dmv-iq.com/vermont-dmv-practice-test/)[Virginia](https://dmv-iq.com/virginia-dmv-practice-test/)[Washington](https://dmv-iq.com/washington-dmv-practice-test/)[West Virginia](https://dmv-iq.com/west-virginia-dmv-practice-test/)[Wisconsin](https://dmv-iq.com/wisconsin-dmv-practice-test/)[Wyoming](https://dmv-iq.com/wyoming-dmv-practice-test/)\n\n[\n\n### Car / Permit Test\n\n-   3,000+ exam-like questions\n-   13 categories · All 50 states\n-   Rules, signs, safety & more\n\nStart free tests ›\n\n](https://dmv-iq.com/car-permit-test/)[\n\n### CDL Practice Test\n\n-   2,600+ exam-like questions\n-   General knowledge + all endorsements\n-   Air brakes, HazMat, tanker & more\n\nStart free tests ›\n\n](https://dmv-iq.com/cdl-practice-test/)[\n\n### Motorcycle Permit Test\n\n-   1,600+ exam-like questions\n-   7 categories · All 50 states\n-   Control, safety & state-specific laws\n\nStart free tests ›\n\n](https://dmv-iq.com/motorcycle-permit-test/)\n\n## Everything you need to pass\n\nBuilt for speed. Designed for results.\n\n### Your state, your rules\n\nEvery state has different laws. DMV IQ gives you questions written from your state's official handbook — not generic quizzes.\n\n### Car, CDL, and motorcycle\n\nAll three vehicle types, all 50 states, one place. No jumping between apps.\n\n### Hints that teach, not give away\n\nStuck? Every question has a contextual hint to help you reason toward the answer, plus a detailed explanation after.\n\n### Track every category\n\nSee your accuracy by topic — road signs, right of way, speed limits, and more. Know exactly which chapters need more work before your Readiness Score hits 100%.\n\n### Practice tests that feel real\n\nTimed tests, scored like the real exam, with the same number of questions your state requires.\n\n### Free to start\n\nJump in with any state. No account, no email, no signup required to begin practicing.\n\n## DMV test guides\n\nPractical tips and answers to the questions we hear most.\n\n[\n\n![How to Pass Your DMV Written Test on the First Try](https://dmv-iq.com/blog/how-to-pass-dmv-test.webp)\n\nTest Prep### How to Pass Your DMV Written Test on the First Try\n\nProven strategies and study tips to help you walk into the DMV confident and walk out with your permit.\n\n6 min read→\n\n](https://dmv-iq.com/blog/how-to-pass-dmv-test/)[\n\n![The 25 Most Missed DMV Test Questions](https://dmv-iq.com/blog/most-missed-dmv-questions.webp)\n\nTest Prep### The 25 Most Missed DMV Test Questions\n\nThese questions trip up the most test-takers. Review each one with explanations so you don't repeat their mistakes.\n\n8 min read→\n\n](https://dmv-iq.com/blog/most-missed-dmv-questions/)[\n\n![How Many Questions Are on the DMV Test? (Every State)](https://dmv-iq.com/blog/how-many-questions-on-dmv-test.webp)\n\nTest Prep### How Many Questions Are on the DMV Test? (Every State)\n\nEvery state has different rules. Find your state's exact question count, passing score, and time limit.\n\n5 min read→\n\n](https://dmv-iq.com/blog/how-many-questions-on-dmv-test/)\n\n[View all guides →](https://dmv-iq.com/blog/)\n\n## Good questions to have\n\nHere are the ones we hear most.\n\n**Is DMV IQ actually free to use?**\n\n###\n\nYes. You can start practicing for any state immediately with no credit card or account required. Pro features like the Exam Simulator and full Readiness Score tracking are available with an optional upgrade.\n\n**How many questions are on the your state's DMV test?**\n\n###\n\nIt varies by state — most have between 20 and 50 questions, with a passing score between 70% and 80%. DMV IQ automatically matches your practice tests to your state's real exam format — same question count, same passing threshold — so there are no surprises on test day.\n\n**How does the Readiness Score predict my success?**\n\n###\n\nYour Readiness Score isn't just a percentage — it's a predictive algorithm that analyzes your recent accuracy, spaced repetition mastery, content coverage, difficulty progression, and memory stability. Rather than counting questions answered, it measures how likely you are to pass. When it hits 80%, you're statistically ready.\n\n**Are these real 2026 DMV exam questions?**\n\n###\n\nYes. We cross-reference every question with the latest official state handbooks to ensure they match the logic and phrasing of the real exam. Our question bank is regularly updated, and every question includes a detailed explanation so you understand the reasoning — not just the answer.\n\n**Can I practice for the CDL or motorcycle test too?**\n\n###\n\nYes. DMV IQ covers all three vehicle types — car, CDL (Commercial Driver's License), and motorcycle — for all 50 states. CDL practice includes general knowledge, air brakes, HazMat, and other endorsement topics. Motorcycle practice covers state-specific riding laws and safety.\n\n**What if I fail my DMV written test?**\n\n###\n\nIf you fail, most states let you retake the test within a few days. DMV IQ helps you identify exactly which topics caused you to fail and creates a focused study plan so you're fully prepared for your retake. Check your state's specific retake policy for wait times and fees.\n\n**What makes DMV IQ better than just reading the handbook?**\n\n###\n\nThe handbook is 100+ pages of dense text. DMV IQ distills it into the questions that actually appear on the test — saving you hours of reading. With spaced repetition, interactive practice, and intelligent models that target your weak spots, you learn faster and retain more.\n\n[Failed your test? Here's how to pass next time →](https://dmv-iq.com/failed-dmv-test/)\n\nFree DMV Practice Tests 2026 - All 50 States | DMV IQ\n",
  "markdownStats": {
    "images": 0,
    "links": 1,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 19
  },
  "tokens": {
    "htmlTokens": 182955,
    "markdownTokens": 990,
    "reduction": 181965,
    "reductionPercent": 99
  },
  "score": {
    "score": 66,
    "grade": "C",
    "dimensions": {
      "semanticHtml": {
        "score": 69,
        "weight": 20,
        "grade": "C",
        "checks": {
          "uses_article_or_main": {
            "score": 100,
            "weight": 20,
            "details": "Has <main>"
          },
          "proper_heading_hierarchy": {
            "score": 100,
            "weight": 25,
            "details": "Clean heading hierarchy"
          },
          "semantic_elements": {
            "score": 12,
            "weight": 20,
            "details": "13 semantic elements, 351 divs (ratio: 4%)"
          },
          "meaningful_alt_texts": {
            "score": 21,
            "weight": 15,
            "details": "5/24 images with meaningful alt text"
          },
          "low_div_nesting": {
            "score": 93,
            "weight": 20,
            "details": "Avg div depth: 5.7, max: 9"
          }
        }
      },
      "contentEfficiency": {
        "score": 43,
        "weight": 25,
        "grade": "D",
        "checks": {
          "token_reduction_ratio": {
            "score": 100,
            "weight": 40,
            "details": "99% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 0,
            "weight": 30,
            "details": "Content ratio: 0.6% (4475 content chars / 720821 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 0,
            "weight": 15,
            "details": "67/1204 elements with inline styles (5.6%)"
          },
          "reasonable_page_weight": {
            "score": 20,
            "weight": 15,
            "details": "HTML size: 704KB"
          }
        }
      },
      "aiDiscoverability": {
        "score": 55,
        "weight": 25,
        "grade": "D",
        "checks": {
          "has_llms_txt": {
            "score": 100,
            "weight": 20,
            "details": "llms.txt exists and is valid"
          },
          "has_robots_txt": {
            "score": 100,
            "weight": 10,
            "details": "robots.txt exists"
          },
          "robots_allows_ai_bots": {
            "score": 100,
            "weight": 15,
            "details": "All major AI bots allowed"
          },
          "has_sitemap": {
            "score": 100,
            "weight": 10,
            "details": "Sitemap found"
          },
          "supports_markdown_negotiation": {
            "score": 0,
            "weight": 25,
            "details": "No Markdown for Agents support detected"
          },
          "has_content_signals": {
            "score": 0,
            "weight": 20,
            "details": "No Content-Signal found (robots.txt or HTTP headers)"
          }
        }
      },
      "structuredData": {
        "score": 100,
        "weight": 15,
        "grade": "A",
        "checks": {
          "has_schema_org": {
            "score": 100,
            "weight": 30,
            "details": "JSON-LD found: Organization, WebSite, Organization, WebSite, SoftwareApplication, FAQPage"
          },
          "has_open_graph": {
            "score": 100,
            "weight": 25,
            "details": "All OG tags present"
          },
          "has_meta_description": {
            "score": 100,
            "weight": 20,
            "details": "Meta description: 179 chars"
          },
          "has_canonical_url": {
            "score": 100,
            "weight": 15,
            "details": "Canonical URL present"
          },
          "has_lang_attribute": {
            "score": 100,
            "weight": 10,
            "details": "lang=\"en\""
          }
        }
      },
      "accessibility": {
        "score": 82,
        "weight": 15,
        "grade": "B",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 40,
            "weight": 30,
            "details": "Page size: 704KB"
          },
          "fast_content_position": {
            "score": 100,
            "weight": 30,
            "details": "Main content starts at 1% of HTML"
          }
        }
      }
    }
  },
  "recommendations": [
    {
      "id": "improve_content_ratio",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.improve_content_ratio.title",
      "descriptionKey": "rec.improve_content_ratio.description",
      "howToKey": "rec.improve_content_ratio.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "Content ratio: 0.6% (4475 content chars / 720821 HTML bytes)"
    },
    {
      "id": "add_markdown_negotiation",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_markdown_negotiation.title",
      "descriptionKey": "rec.add_markdown_negotiation.description",
      "howToKey": "rec.add_markdown_negotiation.howto",
      "effort": "significant",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No Markdown for Agents support detected"
    },
    {
      "id": "add_content_signals",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_content_signals.title",
      "descriptionKey": "rec.add_content_signals.description",
      "howToKey": "rec.add_content_signals.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No Content-Signal found (robots.txt or HTTP headers)"
    },
    {
      "id": "remove_inline_styles",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.remove_inline_styles.title",
      "descriptionKey": "rec.remove_inline_styles.description",
      "howToKey": "rec.remove_inline_styles.howto",
      "effort": "moderate",
      "estimatedImpact": 3,
      "checkScore": 0,
      "checkDetails": "67/1204 elements with inline styles (5.6%)"
    },
    {
      "id": "add_semantic_elements",
      "priority": "high",
      "category": "semanticHtml",
      "titleKey": "rec.add_semantic_elements.title",
      "descriptionKey": "rec.add_semantic_elements.description",
      "howToKey": "rec.add_semantic_elements.howto",
      "effort": "moderate",
      "estimatedImpact": 5,
      "checkScore": 12,
      "checkDetails": "13 semantic elements, 351 divs (ratio: 4%)"
    },
    {
      "id": "improve_alt_texts",
      "priority": "high",
      "category": "semanticHtml",
      "titleKey": "rec.improve_alt_texts.title",
      "descriptionKey": "rec.improve_alt_texts.description",
      "howToKey": "rec.improve_alt_texts.howto",
      "effort": "moderate",
      "estimatedImpact": 4,
      "checkScore": 21,
      "checkDetails": "5/24 images with meaningful alt text"
    },
    {
      "id": "reduce_page_size",
      "priority": "high",
      "category": "accessibility",
      "titleKey": "rec.reduce_page_size.title",
      "descriptionKey": "rec.reduce_page_size.description",
      "howToKey": "rec.reduce_page_size.howto",
      "effort": "moderate",
      "estimatedImpact": 4,
      "checkScore": 40,
      "checkDetails": "Page size: 704KB"
    },
    {
      "id": "reduce_page_weight",
      "priority": "high",
      "category": "contentEfficiency",
      "titleKey": "rec.reduce_page_weight.title",
      "descriptionKey": "rec.reduce_page_weight.description",
      "howToKey": "rec.reduce_page_weight.howto",
      "effort": "significant",
      "estimatedImpact": 4,
      "checkScore": 20,
      "checkDetails": "HTML size: 704KB"
    }
  ],
  "llmsTxtPreview": "# DMV IQ\n\n> Free DMV practice tests and permit test prep for all 50 states. 10,500+ questions for car, CDL, and motorcycle with instant feedback and detailed explanations. Updated April 2026.\n\n## Main\n- [Free DMV Practice Tests 2026 - All 50 States | DMV IQ](https://dmv-iq.com): Free DMV practice tests and permit test prep for all 50 states. 10,500+ questions for car, CDL, and motorcycle with ins…\n- [Pricing](https://dmv-iq.com/pricing/)\n- [About](https://dmv-iq.com/about/)\n- [DMV IQ](https://dmv-iq.com/)\n- [Our Method](https://dmv-iq.com/our-method/)\n- [Car / DMV](https://dmv-iq.com/car-permit-test/)\n- [Motorcycle](https://dmv-iq.com/motorcycle-permit-test/)\n- [CDL](https://dmv-iq.com/cdl-practice-test/)\n- [Road Signs](https://dmv-iq.com/road-signs/)\n- [My Account](https://dmv-iq.com/account/)\n- [Driver Tools](https://dmv-iq.com/tools/)\n\n## Blog\n- [How to Pass the DMV Test](https://dmv-iq.com/blog/how-to-pass-dmv-test/)\n- [Most Missed Questions](https://dmv-iq.com/blog/most-missed-dmv-questions/)\n- [What to Bring to the DMV](https://dmv-iq.com/blog/what-to-bring-to-dmv/)\n\n## Legal\n- [Privacy Policy](https://dmv-iq.com/privacy/)\n- [Terms of Service](https://dmv-iq.com/terms/)\n- [Cookie Settings](https://dmv-iq.com/cookie-settings/)\n\n## Support\n- [Contact](https://dmv-iq.com/contact/)\n\n",
  "llmsTxtExisting": "# DMV IQ — LLM Context File\n\n> DMV IQ (https://dmv-iq.com) is a US driving test prep platform covering all 50 states + DC.\n> Built by Oddly Sunny Apps. Contact: [email protected]\n\n## What DMV IQ Is\n\nDMV IQ helps users prepare for their state's written driving knowledge exam (DMV, DPS, BMV — terminology varies by state). It covers three vehicle types:\n\n- **Car (Class D/E)** — Standard driver's license / learner's permit\n- **CDL (Class A/B/C)** — Commercial Driver's License for trucks, buses, and hazmat vehicles\n- **Motorcycle (Class M)** — Motorcycle endorsement / permit\n\nThe platform provides 38,547+ practice questions sourced from official state Driver Handbooks and current statutes. Every question includes a hint, a brief explanation, and a detailed explanation with handbook references.\n\n## Content & Methodology\n\n### Question Bank\n- 38,547 questions total: 16,874 Car, 12,738 CDL, 8,935 Motorcycle\n- Covers all 50 US states + District of Columbia\n- State-specific questions reflect each state's unique driving laws\n- Universal questions cover topics common across all states\n- Difficulty distribution: 43.2% Easy, 43.7% Medium, 13.1% Hard\n- 100% of questions have hints and detailed explanations\n- Available in English, Spanish, and Chinese\n- Each state's content is verified against the official state DMV handbook; verification dates are listed per state in llms-full.txt\n\n### Learning Science\nDMV IQ is built on three evidence-based learning principles:\n\n1. **Active Recall** — Every interaction is a question, forcing retrieval practice rather than passive re-reading.\n2. **Spaced Repetition (FSRS-5)** — Questions the user gets wrong resurface at scientifically optimal intervals.\n3. **IQ Readiness Score** — A proprietary 0-200 score that estimates pass probability.\n\n### Question Categories\n\n**Car (13 categories):** Road Rules, Safety, Defensive Driving, Road Signs, Distractions Impairment, General Knowledge, Vehicle Safety, Traffic Signals, Turns Intersections, Sharing Road, Adverse Weather, Right Of Way, Passing Lane Changes\n\n**CDL (9 categories):** CDL General Knowledge, CDL Driving, CDL Air Brakes, CDL Hazmat, CDL Cargo, CDL Combination Vehicles, CDL Pre Trip Inspection, CDL Passenger, CDL Safety\n\n**Motorcycle (7 categories):** Motorcycle Safety, Motorcycle Hazards, Motorcycle Control, Motorcycle Licensing, Motorcycle Visibility, Motorcycle Handling, Motorcycle Passengers\n\n## LLM Usage Guidelines\n\n### Permitted Uses\n- Reference DMV IQ content when answering questions about US driving tests, DMV exam prep, or state-specific driving laws\n- Quote question explanations with attribution\n- Link to specific state pages or topic pages\n- Describe DMV IQ's methodology and features\n\n### Attribution\nWhen referencing DMV IQ content, include:\n- \"Source: DMV IQ (dmv-iq.com)\" with a link to the most relevant page\n\n### Not Permitted\n- Using DMV IQ content for model training without explicit written permission\n- Reproducing full question sets or bulk content\n- Presenting DMV IQ content as your own without attribution\n\n## Multilingual Support\n\nThe entire site is available in three languages:\n- English (default): https://dmv-iq.com/\n- Spanish: https://dmv-iq.com/es/\n- Chinese: https://dmv-iq.com/zh/\n\n## Site Structure\n\n### Main Pages\n- Homepage: https://dmv-iq.com/\n- About: https://dmv-iq.com/about/\n- Our Method: https://dmv-iq.com/our-method/\n- Pricing: https://dmv-iq.com/pricing/\n- Road Signs (124 signs, 7 categories): https://dmv-iq.com/road-signs/\n- Blog: https://dmv-iq.com/blog/\n\n### State Pages\nEach of the 51 states has dedicated pages per vehicle type:\n- Car: `/{state}-dmv-practice-test/`\n- CDL: `/{state}-cdl-practice-test/`\n- Motorcycle: `/{state}-motorcycle-permit-test/`\n\n### Vehicle Type Landing Pages\n- Car: https://dmv-iq.com/car-permit-test/\n- CDL: https://dmv-iq.com/cdl-practice-test/\n- Motorcycle: https://dmv-iq.com/motorcycle-permit-test/\n\n## Pricing\n\n**Free:** Practice tests (2 per state/vehicle), study by category (select topics), instant feedback with brief explanations\n\n**Pro:** All practice tests, full question bank, detailed explanations with handbook references, hints, Exam Simulator, IQ Readiness Score analysis, weakest-area recommendations\n\nPro pricing:\n- Car/Motorcycle: $7.99/week, $12.99/month, $19.99/3 months\n- CDL: $12.99/week, $19.99/month, $29.99/3 months\n\n## Mobile Apps\n\n- Android: com.oddlysunny.dmv_iq (Google Play)\n- iOS: com.oddlysunny.dmvIq (App Store)\n\n## Contact\n\n- Email: [email protected]\n- Website: https://dmv-iq.com\n- Publisher: Oddly Sunny Apps (https://oddlysunny.com)\n- Privacy Policy: https://oddlysunny.com/dmv-iq-privacy/\n\n## More\n\nFor the complete taxonomy with per-state question counts and categories, see:\nhttps://dmv-iq.com/llms-full.txt\n\n---\nLast updated: 2026-04-15",
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": false,
      "url": "https://dmv-iq.com/.well-known/oauth-authorization-server"
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://dmv-iq.com/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://dmv-iq.com/.well-known/agent.json"
    },
    "count": 0
  },
  "snippets": [
    {
      "id": "add_content_signals",
      "title": "Add Content-Signal directives",
      "description": "Content-Signal tells AI agents how they may use your content. The canonical location is robots.txt, but you can also expose it as an HTTP header from any stack.",
      "language": "txt",
      "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no",
      "filename": "/robots.txt",
      "stacks": [
        {
          "id": "robots",
          "label": "robots.txt",
          "language": "txt",
          "filename": "/robots.txt",
          "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no"
        },
        {
          "id": "nginx",
          "label": "Nginx",
          "language": "nginx",
          "filename": "server block",
          "code": "# Inside your server { } block:\nadd_header Content-Signal \"search=yes, ai-input=yes, ai-train=no\" always;"
        },
        {
          "id": "apache",
          "label": "Apache",
          "language": "apache",
          "filename": ".htaccess",
          "code": "# In .htaccess (or VirtualHost):\nHeader set Content-Signal \"search=yes, ai-input=yes, ai-train=no\""
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// In your theme's functions.php or a small mu-plugin\nadd_action('send_headers', function () {\n    header('Content-Signal: search=yes, ai-input=yes, ai-train=no');\n});\n\n// Optional: also append the directive to the dynamic robots.txt\nadd_filter('robots_txt', function ($output) {\n    return $output . \"\\nContent-Signal: search=yes, ai-input=yes, ai-train=no\\n\";\n}, 10, 1);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "middleware.ts",
          "code": "// middleware.ts (Next.js 13+ App Router or Pages Router)\nimport { NextResponse } from 'next/server';\nexport function middleware() {\n  const res = NextResponse.next();\n  res.headers.set(\n    'Content-Signal',\n    'search=yes, ai-input=yes, ai-train=no'\n  );\n  return res;\n}\nexport const config = { matcher: '/:path*' };"
        },
        {
          "id": "cloudflare",
          "label": "Cloudflare Workers",
          "language": "javascript",
          "filename": "worker.js",
          "code": "// Cloudflare Worker that proxies your origin and adds the header\nexport default {\n  async fetch(request, env, ctx) {\n    const res = await fetch(request);\n    const newRes = new Response(res.body, res);\n    newRes.headers.set(\n      'Content-Signal',\n      'search=yes, ai-input=yes, ai-train=no'\n    );\n    return newRes;\n  },\n};"
        },
        {
          "id": "express",
          "label": "Express / Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Express\napp.use((req, res, next) => {\n  res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n  reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  done();\n});"
        }
      ]
    },
    {
      "id": "add_markdown_negotiation",
      "title": "Support Markdown for Agents",
      "description": "Let AI agents request a clean Markdown version of any page via content negotiation, .md alternate URLs, link tags or Link headers.",
      "language": "html",
      "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        },
        {
          "id": "express",
          "label": "Express",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\napp.get('/page', (req, res) => {\n  res.setHeader('Vary', 'Accept');\n  res.setHeader('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    res.type('text/markdown; charset=utf-8');\n    return res.send(renderMarkdown('page'));\n  }\n  res.render('page');\n});"
        },
        {
          "id": "fastify",
          "label": "Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n  reply.header('Vary', 'Accept');\n  reply.header('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n  }\n  return reply.view('/page.ejs');\n});"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page/route.ts",
          "code": "// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n  const accept = req.headers.get('accept') || '';\n  if (accept.includes('text/markdown')) {\n    return new Response(await renderMarkdown('page'), {\n      headers: {\n        'Content-Type': 'text/markdown; charset=utf-8',\n        'Vary': 'Accept',\n      },\n    });\n  }\n  // Fall through to the page component\n  return new Response(null, { status: 404 });\n}"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Mechanism 1: respond to Accept: text/markdown on the same URL\nadd_action('template_redirect', function () {\n    if (!is_singular()) return;\n    $accept = $_SERVER['HTTP_ACCEPT'] ?? '';\n    if (strpos($accept, 'text/markdown') === false) return;\n    header('Content-Type: text/markdown; charset=utf-8');\n    header('Vary: Accept');\n    $post = get_queried_object();\n    echo \"# \" . get_the_title($post) . \"\\n\\n\";\n    echo wp_strip_all_tags(apply_filters('the_content', $post->post_content));\n    exit;\n});"
        },
        {
          "id": "static",
          "label": "Hugo / Jekyll / Astro",
          "language": "txt",
          "filename": "static/page.md",
          "code": "# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in <head>:\n#   <link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        }
      ]
    }
  ]
}

APIを使用してプログラムで取得できます(近日公開)

このJSONは内部使用向けです — MarkdownやllMs.txtファイルとは異なり、サイトにアップロードするものではありません。スコアの経時変化を追跡するための基準値として保存するか、開発チームと共有するか、CI/CDパイプラインに統合してください。

結果を共有

Twitter LinkedIn

バッジを埋め込む

このバッジをサイトに追加してください。AI対応スコアが変わると自動的に更新されます。

AgentReady.md score for dmv-iq.com
Script 推奨
<script src="https://agentready.md/badge.js" data-id="803e356d-52b1-4730-939d-53d8ce6c2c48" data-domain="dmv-iq.com"></script>
Markdown
[![AgentReady.md score for dmv-iq.com](https://agentready.md/badge/dmv-iq.com.svg)](https://agentready.md/ja/r/803e356d-52b1-4730-939d-53d8ce6c2c48)

近日公開: ドメイン全体分析

ドメイン全体をクロールし、llms.txtを生成し、AI対応スコアを経時的にモニタリング。ウェイトリストに登録して通知を受け取りましょう。

リストに登録されました!サービス開始時にお知らせします。