Skip to content

Commit c778295

Browse files
raifdmuellerclaude
andcommitted
feat: add comprehensive SEO meta tags and structured data
Added: - Extended title and meta description with keywords - Open Graph tags (Facebook/LinkedIn sharing) - Twitter Card meta tags - JSON-LD structured data (SoftwareApplication schema) - Canonical URL - Author attribution - Keywords meta tag Changed lang from "de" to "en" as app defaults to EN based on browser. TODOs (require design): - og:image (1200x630px social preview) - twitter:image (1200x600px card image) Benefits: - Better search engine indexing - Rich social media previews when shared - Structured data for Google rich results - Proper attribution and licensing info Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 120f5b3 commit c778295

1 file changed

Lines changed: 59 additions & 3 deletions

File tree

index.html

Lines changed: 59 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,67 @@
11
<!DOCTYPE html>
2-
<html lang="de">
2+
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Vibe-Coding Risk Radar</title>
8-
<meta name="description" content="MECE risk framework for AI-generated code — 5 dimensions, 4 tiers, actionable mitigations" />
7+
8+
<!-- Primary Meta Tags -->
9+
<title>Vibe-Coding Risk Radar — MECE Risk Framework for AI-Generated Code</title>
10+
<meta name="title" content="Vibe-Coding Risk Radar — MECE Risk Framework for AI-Generated Code" />
11+
<meta name="description" content="Assess AI-generated code risk with 5 dimensions (code type, language, deployment, data, blast radius) mapped to 4 tiers. Includes Claude Code skills for automated assessment and mitigation implementation." />
12+
<meta name="keywords" content="AI code security, vibe coding, LLM generated code, code risk assessment, MECE framework, Claude Code skills, static analysis, SAST, code review automation, AI safety" />
13+
<meta name="author" content="Ralf D. Müller" />
14+
<link rel="canonical" href="https://llm-coding.github.io/vibe-coding-risk-radar/" />
15+
16+
<!-- Open Graph / Facebook -->
17+
<meta property="og:type" content="website" />
18+
<meta property="og:url" content="https://llm-coding.github.io/vibe-coding-risk-radar/" />
19+
<meta property="og:title" content="Vibe-Coding Risk Radar — MECE Risk Framework for AI-Generated Code" />
20+
<meta property="og:description" content="Assess AI-generated code risk with 5 dimensions mapped to 4 tiers. Includes Claude Code skills for automated assessment and mitigation." />
21+
<meta property="og:site_name" content="Vibe-Coding Risk Radar" />
22+
<meta property="og:locale" content="de_DE" />
23+
<!-- TODO: Add og:image with 1200x630px social preview image -->
24+
25+
<!-- Twitter Card -->
26+
<meta name="twitter:card" content="summary_large_image" />
27+
<meta name="twitter:url" content="https://llm-coding.github.io/vibe-coding-risk-radar/" />
28+
<meta name="twitter:title" content="Vibe-Coding Risk Radar — MECE Risk Framework for AI-Generated Code" />
29+
<meta name="twitter:description" content="Assess AI-generated code risk with 5 dimensions mapped to 4 tiers. Includes Claude Code skills for automated assessment and mitigation." />
30+
<meta name="twitter:creator" content="@rdmueller" />
31+
<!-- TODO: Add twitter:image with 1200x600px social preview image -->
32+
33+
<!-- Structured Data (JSON-LD) -->
34+
<script type="application/ld+json">
35+
{
36+
"@context": "https://schema.org",
37+
"@type": "SoftwareApplication",
38+
"name": "Vibe-Coding Risk Radar",
39+
"applicationCategory": "DeveloperApplication",
40+
"operatingSystem": "Web",
41+
"offers": {
42+
"@type": "Offer",
43+
"price": "0",
44+
"priceCurrency": "USD"
45+
},
46+
"author": {
47+
"@type": "Person",
48+
"name": "Ralf D. Müller",
49+
"url": "https://www.linkedin.com/in/rdmueller"
50+
},
51+
"description": "MECE risk framework for assessing AI-generated code across 5 dimensions (code type, language safety, deployment context, data sensitivity, blast radius) mapped to 4 actionable tiers with mitigation measures.",
52+
"featureList": [
53+
"Interactive 5-dimension risk assessment",
54+
"4-tier classification (Minimal, Moderate, High, Critical)",
55+
"Automated Claude Code skills for repo analysis",
56+
"Mitigation implementation guidance",
57+
"Architecture Decision Record (ADR) generation",
58+
"Bilingual interface (DE/EN)"
59+
],
60+
"url": "https://llm-coding.github.io/vibe-coding-risk-radar/",
61+
"softwareVersion": "1.5.2",
62+
"license": "https://opensource.org/licenses/MIT"
63+
}
64+
</script>
965
</head>
1066
<body>
1167
<div id="root"></div>

0 commit comments

Comments
 (0)