Skip to content

Commit 046c638

Browse files
committed
docs(site): link Microsoft Agent Governance Toolkit at every mention
Support.astro coverage card heading now links to github.com/microsoft/agent-governance-toolkit; WhyAtmosphere.astro atmosphereOnly feature row gains the same link via set:html (the array values now render as HTML).
1 parent cf0c128 commit 046c638

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

website/src/components/Support.astro

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const plans = [
7878
</p>
7979
</li>
8080
<li class="coverage-item">
81-
<span class="coverage-label">MS Agent Governance Toolkit</span>
81+
<a class="coverage-label coverage-label-link" href="https://github.com/microsoft/agent-governance-toolkit" target="_blank" rel="noopener noreferrer">MS Agent Governance Toolkit ↗</a>
8282
<p class="coverage-text">
8383
Microsoft's YAML rule schema parsed verbatim, same
8484
<code>audit_entry</code> JSON shape, same <code>agt verify</code>
@@ -269,6 +269,15 @@ const plans = [
269269
margin-bottom: var(--space-sm);
270270
}
271271

272+
a.coverage-label-link {
273+
text-decoration: none;
274+
transition: color 0.2s var(--ease-out-quad);
275+
}
276+
277+
a.coverage-label-link:hover {
278+
color: var(--color-text-primary);
279+
}
280+
272281
.coverage-text {
273282
font-size: 0.875rem;
274283
line-height: 1.55;

website/src/components/WhyAtmosphere.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const atmosphereOnlyFeatures = [
2727
'atmosphere.js client SDK with React, Vue, Svelte, and React Native hooks',
2828
'Compliance evidence pinned in CI — OWASP Agentic Top 10, EU AI Act, HIPAA, SOC 2',
2929
'Plan-and-verify — refuse unsafe LLM-emitted workflows before any tool fires',
30-
'MS Agent Governance Toolkit YAML interop — same schema, same audit_entry shape',
30+
'<a href="https://github.com/microsoft/agent-governance-toolkit" target="_blank" rel="noopener noreferrer">MS Agent Governance Toolkit</a> YAML interop — same schema, same audit_entry shape',
3131
'Enterprise support since 2014',
3232
];
3333
@@ -242,7 +242,7 @@ const frameworks = [
242242
</p>
243243
</div>
244244
<ul class="featurelist-items">
245-
{atmosphereOnlyFeatures.map((item) => <li>{item}</li>)}
245+
{atmosphereOnlyFeatures.map((item) => <li set:html={item} />)}
246246
</ul>
247247
</div>
248248
</div>

0 commit comments

Comments
 (0)