인증된 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 에이전트가 마크다운 형식으로 콘텐츠를 요청할 수 있으며, 토큰 사용량을 ~80% 줄일 수 있습니다.

구현 방법

다음 중 하나 이상을 구현하세요: (1) Accept: text/markdown에 마크다운 콘텐츠로 응답. (2) .md URL 제공 (예: /page.md). (3) <link rel="alternate" type="text/markdown"> 태그 추가. (4) 마크다운 발견을 위한 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. 마크다운 응답의 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/ko/r/803e356d-52b1-4730-939d-53d8ce6c2c48)

곧 출시: 전체 도메인 분석

전체 도메인을 크롤링하고, llms.txt를 생성하고, AI 준비도 점수를 시간에 따라 모니터링하세요. 대기자 명단에 등록하여 알림을 받으세요.

명단에 등록되었습니다! 서비스 출시 시 알려드리겠습니다.