SEO: 琥珀评测 keyword coverage + robots/sitemap - #9
askclaw-vesper wants to merge 1 commit into
Conversation
…obots.txt + sitemap.xml
There was a problem hiding this comment.
Confidence Score: 4/5
Summary
Adds 琥珀评测 keyword coverage to title, metas, JSON-LD and hero lead, plus robots.txt and sitemap.xml. Content-only and valid; risk is low, remaining issues are SEO polish.
Important Files Changed
| File | Overview |
|---|---|
| index.html | New title/description/og/keywords/JSON-LD; hero lead gains bold 琥珀评测(AMBER) prefix |
| en.html | Description extended with 琥珀评测 hook; now 232 chars, over SERP limit |
| robots.txt | Allow-all plus sitemap reference; fine |
| sitemap.xml | Two URLs, hardcoded lastmod, no hreflang alternates |
Findings
- Merging does not deploy: robots.txt and sitemap.xml must be copied to the Caddy box (26430) or the robots Sitemap reference and Search Console submission will 404.
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <title>AskClaw — AMBER: sealed-in-amber replay evaluation</title> | ||
| <meta name="description" content="AMBER replays real, auditable historical events — frozen the moment before the answer was revealed. Private case library, public scores, independently checkable."> | ||
| <meta name="description" content="AMBER (琥珀评测) replays real, auditable historical events — frozen the moment before the answer was revealed. Private case library, public scores, independently checkable. A sealed-in-amber AI benchmark and leaderboard, updated weekly."> |
There was a problem hiding this comment.
Description is 232 characters; Google and Bing cut at roughly 160, so trim it (drop the trailing sentence) to keep the 琥珀评测 hook and value prop visible.
| @@ -0,0 +1,15 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |||
There was a problem hiding this comment.
No hreflang exists anywhere; add xmlns:xhtml here and xhtml:link alternates (zh-CN, en, x-default) under both url entries so / and /en.html are paired.
| <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | ||
| <url> | ||
| <loc>https://askclaw.dev/</loc> | ||
| <lastmod>2026-09-18</lastmod> |
There was a problem hiding this comment.
lastmod is hardcoded; weekly hand-edits will leave it stale and get it ignored, so drop lastmod or add bumping it to the weekly update procedure.
| <meta property="og:url" content="https://askclaw.dev/"> | ||
| <meta property="og:image" content="https://askclaw.dev/assets/top5-card.png"> | ||
| <meta property="og:type" content="website"> | ||
| <meta property="og:locale" content="zh_CN"> |
There was a problem hiding this comment.
og:locale zh_CN has no og:locale:alternate, and en.html received none of the new og:description/og:url/twitter:card/JSON-LD tags; mirror them there with og:locale en_US.
| <meta name="description" content="AMBER 琥珀评测:把真实历史事件封进琥珀,让 AI 只用当时可得的信息重做一次。私有题库、公开成绩、人人可核对的 AI 大模型评测与排行榜,每周更新。"> | ||
| <meta name="keywords" content="琥珀评测,琥珀,AMBER,AI评测,大模型评测,LLM评测,模型排行榜,AI基准测试,大语言模型评测,AskClaw"> | ||
| <script type="application/ld+json"> | ||
| {"@context":"https://schema.org","@type":"WebSite","name":"AskClaw","alternateName":["琥珀评测","AMBER Benchmark","AMBER 琥珀评测"],"url":"https://askclaw.dev/","description":"AMBER 琥珀评测:把真实历史事件封进琥珀,让 AI 重做一次。私有题库、公开成绩、人人可核对。","inLanguage":["zh-CN","en"]} |
There was a problem hiding this comment.
JSON-LD description omits 只用当时可得的信息 and the 大模型评测与排行榜 clause used in the meta description; align the strings so structured data matches the snippet.
| <meta name="description" content="AMBER:把真实历史事件封进琥珀,让 AI 重做当时的题。私有题库、公开成绩、人人可核对。"> | ||
| <title>AskClaw — AMBER 琥珀评测:封存回放式 AI 基准测试</title> | ||
| <meta name="description" content="AMBER 琥珀评测:把真实历史事件封进琥珀,让 AI 只用当时可得的信息重做一次。私有题库、公开成绩、人人可核对的 AI 大模型评测与排行榜,每周更新。"> | ||
| <meta name="keywords" content="琥珀评测,琥珀,AMBER,AI评测,大模型评测,LLM评测,模型排行榜,AI基准测试,大语言模型评测,AskClaw"> |
There was a problem hiding this comment.
meta keywords is ignored by Google/Bing and de-weighted by Baidu; harmless, but do not count it toward 琥珀评测 coverage.
urgent owner request 2026-09-18
Content-only, additive; zero layout/logic change.