Skip to content

Commit cddcd20

Browse files
Merge pull request #1 from agentrust-io/feat/add-governance-site
feat: add governance.agentrust-io.com to all site surfaces
2 parents 54e6e38 + aed6c05 commit cddcd20

2 files changed

Lines changed: 30 additions & 5 deletions

File tree

index.html

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
--green: #1B7A4A;
2121
--amber: #C17817;
2222
--purple: #6D28D9;
23+
--orange: #EA580C;
2324
}
2425

2526
html { scroll-behavior: smooth; }
@@ -390,6 +391,10 @@
390391
<span class="nav-dot" style="background:#6D28D9;"></span>
391392
cmcp
392393
</a>
394+
<a href="https://governance.agentrust-io.com">
395+
<span class="nav-dot" style="background:#EA580C;"></span>
396+
governance
397+
</a>
393398
<a href="https://github.com/microsoft/agent-governance-toolkit">
394399
<span class="nav-dot" style="background:#6B7F94;"></span>
395400
agt ↗
@@ -470,6 +475,23 @@ <h1>Govern AI Agents<br>at the Hardware Boundary</h1>
470475
</div>
471476
</a>
472477

478+
<!-- Awesome AI Governance -->
479+
<a href="https://governance.agentrust-io.com" class="product-card">
480+
<div class="card-accent" style="background: var(--orange);"></div>
481+
<div class="card-body">
482+
<div class="card-tag" style="color: var(--orange);">Curated Resource</div>
483+
<div class="card-name">Awesome AI Governance</div>
484+
<div class="card-desc">A community-curated list of tools, frameworks, standards, and research for governing autonomous AI agents. Covers policy engines, audit frameworks, risk assessments, and deployment guidance.</div>
485+
</div>
486+
<div class="card-footer">
487+
<span class="card-url">governance.agentrust-io.com</span>
488+
<div style="display:flex;gap:0.5rem;align-items:center;">
489+
<span class="card-badge badge-live">Live</span>
490+
<svg class="card-arrow" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/></svg>
491+
</div>
492+
</div>
493+
</a>
494+
473495
</div>
474496
</section>
475497

@@ -524,7 +546,7 @@ <h1>Govern AI Agents<br>at the Hardware Boundary</h1>
524546
<div class="card-body">
525547
<div class="card-tag" style="color: #6B7F94;">Source Code</div>
526548
<div class="card-name">GitHub Organization</div>
527-
<div class="card-desc">All spec source, examples, registry entries, and integration guides. TRACE spec, Agent Manifest schema, cMCP protocol, and the awesome-ai-governance curated list.</div>
549+
<div class="card-desc">All spec source, examples, registry entries, and integration guides. TRACE spec, Agent Manifest schema, cMCP protocol, and the full awesome-ai-governance curated list.</div>
528550
</div>
529551
<div class="card-footer">
530552
<span class="card-url">github.com/agentrust-io</span>
@@ -582,6 +604,7 @@ <h1>Govern AI Agents<br>at the Hardware Boundary</h1>
582604
<a href="https://trace.agentrust-io.com">TRACE</a>
583605
<a href="https://manifest.agentrust-io.com">Manifest</a>
584606
<a href="https://cmcp.agentrust-io.com">cMCP</a>
607+
<a href="https://governance.agentrust-io.com">Governance</a>
585608
<a href="https://tests.agentrust-io.com">Tests</a>
586609
<a href="https://github.com/agentrust-io">GitHub</a>
587610
<a href="https://github.com/microsoft/agent-governance-toolkit">AGT ↗</a>

supernav.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@
66
{ id: 'home', label: 'agentrust-io', url: 'https://agentrust-io.com', dot: '#B91C1C', ext: false },
77
{ id: 'trace', label: 'TRACE', url: 'https://trace.agentrust-io.com', dot: '#1B5EA0', ext: false },
88
{ id: 'manifest', label: 'Manifest', url: 'https://manifest.agentrust-io.com', dot: '#1B7A4A', ext: false },
9-
{ id: 'cmcp', label: 'cMCP', url: 'https://cmcp.agentrust-io.com', dot: '#6D28D9', ext: false },
10-
{ id: 'agt', label: 'AGT', url: 'https://github.com/microsoft/agent-governance-toolkit', dot: '#6B7F94', ext: true },
9+
{ id: 'cmcp', label: 'cMCP', url: 'https://cmcp.agentrust-io.com', dot: '#6D28D9', ext: false },
10+
{ id: 'governance', label: 'Governance', url: 'https://governance.agentrust-io.com', dot: '#EA580C', ext: false },
11+
{ id: 'agt', label: 'AGT', url: 'https://github.com/microsoft/agent-governance-toolkit', dot: '#6B7F94', ext: true },
1112
{ id: 'github', label: 'GitHub', url: 'https://github.com/agentrust-io', dot: '#8B949E', ext: true }
1213
];
1314

1415
var HOST = location.hostname;
1516
var CURRENT_ID = HOST === 'agentrust-io.com' ? 'home'
1617
: HOST.indexOf('trace.') === 0 ? 'trace'
1718
: HOST.indexOf('manifest.') === 0 ? 'manifest'
18-
: HOST.indexOf('cmcp.') === 0 ? 'cmcp'
19-
: HOST.indexOf('tests.') === 0 ? 'trace'
19+
: HOST.indexOf('cmcp.') === 0 ? 'cmcp'
20+
: HOST.indexOf('governance.') === 0 ? 'governance'
21+
: HOST.indexOf('tests.') === 0 ? 'trace'
2022
: 'home';
2123

2224
var NAV_ID = 'agt-supernav';

0 commit comments

Comments
 (0)