Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/o1labs-icon.ico
Binary file not shown.
Binary file added assets/odystra-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions data/adoption.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,28 @@
"description": "Action State Group is collaborating with AgenTrust on an open contribution path for the TRACE Trust Registry, connecting TRACE runtime evidence with neutral, independently verifiable record and witness infrastructure.",
"evidenceUrl": "https://www.actionstate.ai/",
"evidenceLabel": "Visit Action State Group"
},
{
"kind": "partner",
"name": "Odystra AI",
"logo": "/assets/odystra-icon.png",
"compact": true,
"label": "Startup supporter",
"title": "Odystra AI",
"description": "Odystra builds an agentic governance, risk, and compliance platform for regulated enterprises.",
"evidenceUrl": "https://odystra.com/",
"evidenceLabel": "Visit Odystra"
},
{
"kind": "partner",
"name": "O(1) Labs",
"logo": "/assets/o1labs-icon.ico",
"compact": true,
"label": "Startup supporter",
"title": "O(1) Labs",
"description": "O(1) Labs develops applications and infrastructure powered by zero-knowledge cryptography.",
"evidenceUrl": "https://www.o1labs.org/",
"evidenceLabel": "Visit O(1) Labs"
}
]
}
4 changes: 4 additions & 0 deletions design-system.css
Original file line number Diff line number Diff line change
Expand Up @@ -1119,6 +1119,10 @@ html:has(body.agentrust-hub) { scroll-behavior: smooth; }
.agentrust-hub .partner-logo-wrap img { display: block; width: 100%; height: auto; }
.agentrust-hub .partner-kicker { margin-top: 0; }
.agentrust-hub .partner-card h3 { margin: 0 0 .55rem; color: var(--at-ink); font-family: var(--at-serif); font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 500; line-height: 1.08; }
.agentrust-hub .startup-card { grid-template-columns: 76px 1fr; padding: 1rem; }
.agentrust-hub .startup-card .partner-logo-wrap { min-height: 76px; padding: .65rem; }
.agentrust-hub .startup-card .partner-logo-wrap img { width: 48px; max-height: 48px; margin: auto; object-fit: contain; }
.agentrust-hub .startup-card h3 { font-family: var(--at-sans); font-size: 1.1rem; font-weight: 750; }
.agentrust-hub .governance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.agentrust-hub .governance-card { min-height: 240px; padding: 1.5rem; }
.agentrust-hub .governance-card h3 { margin: 0 0 .6rem; color: var(--at-ink); font-size: 1.1rem; }
Expand Down
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,14 @@ <h1>Build the ecosystem for verifiable AI agents</h1>
<div class="partner-logo-wrap"><img src="/assets/action-state-group-logo.png" alt="Action State Group" loading="lazy"></div>
<div><div class="partner-kicker">Technical collaborator</div><h3>Trust Registry and Verifiable Record Collaboration</h3><p>Action State Group is collaborating with AgenTrust on an open contribution path for the TRACE Trust Registry, connecting TRACE runtime evidence with neutral, independently verifiable record and witness infrastructure.</p><a class="evidence-link" href="https://www.actionstate.ai/">Visit Action State Group ↗</a></div>
</article>
<article class="partner-card startup-card">
<div class="partner-logo-wrap"><img src="/assets/odystra-icon.png" alt="Odystra AI" loading="lazy"></div>
<div><div class="partner-kicker">Startup supporter</div><h3>Odystra AI</h3><p>Odystra builds an agentic governance, risk, and compliance platform for regulated enterprises.</p><a class="evidence-link" href="https://odystra.com/">Visit Odystra ↗</a></div>
</article>
<article class="partner-card startup-card">
<div class="partner-logo-wrap"><img src="/assets/o1labs-icon.ico" alt="O(1) Labs" loading="lazy"></div>
<div><div class="partner-kicker">Startup supporter</div><h3>O(1) Labs</h3><p>O(1) Labs develops applications and infrastructure powered by zero-knowledge cryptography.</p><a class="evidence-link" href="https://www.o1labs.org/">Visit O(1) Labs ↗</a></div>
</article>
</div>
<!-- adoption:generated:end -->
</section>
Expand Down
3 changes: 2 additions & 1 deletion scripts/render-adoption.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const renderEvidence = item => ` <article class="adoption-card">
${evidence(item)}
</article>`;

const renderPartner = (item, featured = false) => ` <article class="partner-card${featured ? ' lf-card' : ''}">
const renderPartner = (item, featured = false) => ` <article class="partner-card${featured ? ' lf-card' : ''}${item.compact ? ' startup-card' : ''}">
<div class="partner-logo-wrap"><img src="${escapeText(item.logo)}" alt="${escapeText(item.name)}" loading="lazy"></div>
<div><div class="partner-kicker">${escapeText(item.label)}</div><h3>${escapeText(item.title)}</h3><p>${escapeText(item.description)}</p>${evidence(item)}</div>
</article>`;
Expand All @@ -39,6 +39,7 @@ for (const item of relationships) {
throw new Error(`Logo and title are required for ${item.name}`);
}
if (item.evidenceUrl && !item.evidenceLabel) throw new Error(`Evidence label is required for ${item.name}`);
if (item.compact !== undefined && typeof item.compact !== 'boolean') throw new Error(`compact must be boolean for ${item.name}`);
if (item.evidenceUrl && new URL(item.evidenceUrl).protocol !== 'https:') throw new Error(`Evidence URL must use HTTPS for ${item.name}`);
if (item.markClass && !/^[a-z0-9-]+$/.test(item.markClass)) throw new Error(`Invalid markClass for ${item.name}`);
if (item.logo) {
Expand Down
Loading