Skip to content

Commit 3e6bcca

Browse files
committed
Add site SEO metadata
1 parent aab9744 commit 3e6bcca

3 files changed

Lines changed: 74 additions & 0 deletions

File tree

site/index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,67 @@
88
name="description"
99
content="A prompt-first harness engineering kit that helps coding agents work from durable project context instead of one-off prompts."
1010
/>
11+
<meta name="robots" content="index, follow" />
12+
<meta name="author" content="baskduf" />
13+
<meta name="application-name" content="Harness Starter Kit" />
14+
<meta name="theme-color" content="#f4ead7" />
15+
<link rel="canonical" href="https://baskduf.github.io/harness-starter-kit/" />
16+
<meta property="og:type" content="website" />
17+
<meta property="og:site_name" content="Harness Starter Kit" />
18+
<meta property="og:title" content="Harness Starter Kit - Turn prompts into repository memory" />
19+
<meta
20+
property="og:description"
21+
content="A prompt-first harness engineering kit that turns repeated coding-agent mistakes into durable repository instructions, checks, memory, and evaluation."
22+
/>
23+
<meta property="og:url" content="https://baskduf.github.io/harness-starter-kit/" />
24+
<meta property="og:image" content="https://baskduf.github.io/harness-starter-kit/assets/background.png" />
25+
<meta property="og:image:type" content="image/png" />
26+
<meta property="og:image:width" content="1672" />
27+
<meta property="og:image:height" content="941" />
28+
<meta property="og:image:alt" content="Harness Starter Kit parchment-style landing page background" />
29+
<meta name="twitter:card" content="summary_large_image" />
30+
<meta name="twitter:title" content="Harness Starter Kit - Turn prompts into repository memory" />
31+
<meta
32+
name="twitter:description"
33+
content="Prompt-first harness engineering for AI coding agents: durable repository rules, checks, memory, evaluation, and governance."
34+
/>
35+
<meta name="twitter:image" content="https://baskduf.github.io/harness-starter-kit/assets/background.png" />
36+
<script type="application/ld+json">
37+
{
38+
"@context": "https://schema.org",
39+
"@graph": [
40+
{
41+
"@type": "WebSite",
42+
"@id": "https://baskduf.github.io/harness-starter-kit/#website",
43+
"url": "https://baskduf.github.io/harness-starter-kit/",
44+
"name": "Harness Starter Kit",
45+
"description": "Prompt-first harness engineering for AI coding agents.",
46+
"inLanguage": "en"
47+
},
48+
{
49+
"@type": "SoftwareSourceCode",
50+
"@id": "https://baskduf.github.io/harness-starter-kit/#source",
51+
"name": "Harness Starter Kit",
52+
"description": "A prompt-first starter kit for turning repeated coding-agent mistakes into durable repository instructions, checks, memory, evaluation, and governance.",
53+
"url": "https://baskduf.github.io/harness-starter-kit/",
54+
"codeRepository": "https://github.com/baskduf/harness-starter-kit",
55+
"license": "https://github.com/baskduf/harness-starter-kit/blob/main/LICENSE",
56+
"programmingLanguage": ["Python", "Markdown", "JavaScript"],
57+
"keywords": [
58+
"harness engineering",
59+
"AI coding agents",
60+
"repository instructions",
61+
"agent memory",
62+
"drift checks",
63+
"software engineering"
64+
],
65+
"isPartOf": {
66+
"@id": "https://baskduf.github.io/harness-starter-kit/#website"
67+
}
68+
}
69+
]
70+
}
71+
</script>
1172
<link rel="preconnect" href="https://fonts.googleapis.com" />
1273
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
1374
<link

site/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://baskduf.github.io/harness-starter-kit/sitemap.xml

site/sitemap.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://baskduf.github.io/harness-starter-kit/</loc>
5+
<lastmod>2026-06-05</lastmod>
6+
<changefreq>weekly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)