Skip to content

Commit 40ecf55

Browse files
committed
Update docs
1 parent b69f45d commit 40ecf55

File tree

6 files changed

+581
-5
lines changed

6 files changed

+581
-5
lines changed

docs/.vitepress/config.mjs

Lines changed: 77 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ export default defineConfig({
55
description: 'Build trusted agent networks with on-chain reputation and attestations',
66
base: '/open-agent-trust/',
77
ignoreDeadLinks: true,
8+
lang: 'en-US',
9+
10+
// Improve LLM and SEO discovery
11+
sitemap: {
12+
hostname: 'https://open-agent-economy.github.io/open-agent-trust/'
13+
},
814

915
themeConfig: {
1016
logo: '/logo.svg',
@@ -120,10 +126,76 @@ export default defineConfig({
120126
},
121127

122128
head: [
123-
['link', { rel: 'icon', type: 'image/svg+xml', href: '/logo.svg' }],
129+
// Favicon and icons
130+
['link', { rel: 'icon', type: 'image/svg+xml', href: '/open-agent-trust/og-image.svg' }],
124131
['meta', { name: 'theme-color', content: '#646cff' }],
125-
['meta', { name: 'og:type', content: 'website' }],
126-
['meta', { name: 'og:locale', content: 'en' }],
127-
['meta', { name: 'og:site_name', content: 'Open Agent Trust SDK' }]
128-
]
132+
133+
// SEO meta tags
134+
['meta', { name: 'keywords', content: 'agent trust, autonomous agents, blockchain reputation, agent attestations, trust graph, agent economy, web3 agents, AI agents, on-chain reputation, decentralized trust, agent identity, smart contracts, Base Sepolia, TypeScript SDK, agent marketplace' }],
135+
['meta', { name: 'author', content: 'Open Agent Economy' }],
136+
['meta', { name: 'robots', content: 'index, follow' }],
137+
138+
// Open Graph / Facebook
139+
['meta', { property: 'og:type', content: 'website' }],
140+
['meta', { property: 'og:url', content: 'https://open-agent-economy.github.io/open-agent-trust/' }],
141+
['meta', { property: 'og:title', content: 'Open Agent Trust SDK - Build Trusted Agent Networks' }],
142+
['meta', { property: 'og:description', content: 'TypeScript SDK for building verifiable, portable reputation systems for autonomous AI agents on blockchain. Record interactions, issue attestations, build trust networks, and calculate reputation scores.' }],
143+
['meta', { property: 'og:image', content: 'https://open-agent-economy.github.io/open-agent-trust/og-image.svg' }],
144+
['meta', { property: 'og:locale', content: 'en_US' }],
145+
['meta', { property: 'og:site_name', content: 'Open Agent Trust SDK' }],
146+
147+
// Twitter Card
148+
['meta', { name: 'twitter:card', content: 'summary_large_image' }],
149+
['meta', { name: 'twitter:url', content: 'https://open-agent-economy.github.io/open-agent-trust/' }],
150+
['meta', { name: 'twitter:title', content: 'Open Agent Trust SDK - Build Trusted Agent Networks' }],
151+
['meta', { name: 'twitter:description', content: 'TypeScript SDK for building verifiable reputation systems for autonomous AI agents. On-chain interactions, attestations, and trust graphs on Base Sepolia.' }],
152+
['meta', { name: 'twitter:image', content: 'https://open-agent-economy.github.io/open-agent-trust/og-image.svg' }],
153+
154+
// Additional meta for better indexing
155+
['meta', { name: 'application-name', content: 'Open Agent Trust SDK' }],
156+
['meta', { name: 'apple-mobile-web-app-title', content: 'Agent Trust SDK' }],
157+
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
158+
['meta', { name: 'apple-mobile-web-app-status-bar-style', content: 'black' }],
159+
160+
// Canonical URL
161+
['link', { rel: 'canonical', href: 'https://open-agent-economy.github.io/open-agent-trust/' }],
162+
163+
// JSON-LD Structured Data for better LLM understanding
164+
['script', { type: 'application/ld+json' }, JSON.stringify({
165+
'@context': 'https://schema.org',
166+
'@type': 'SoftwareApplication',
167+
'name': 'Open Agent Trust SDK',
168+
'description': 'TypeScript SDK for building verifiable, portable reputation systems for autonomous AI agents on blockchain',
169+
'applicationCategory': 'DeveloperApplication',
170+
'operatingSystem': 'Cross-platform',
171+
'offers': {
172+
'@type': 'Offer',
173+
'price': '0',
174+
'priceCurrency': 'USD'
175+
},
176+
'author': {
177+
'@type': 'Organization',
178+
'name': 'Open Agent Economy'
179+
},
180+
'programmingLanguage': 'TypeScript',
181+
'codeRepository': 'https://github.com/Open-Agent-Economy/open-agent-trust',
182+
'softwareVersion': '0.1.0',
183+
'keywords': 'agent trust, blockchain reputation, autonomous agents, attestations, trust graph, Web3, AI agents',
184+
'url': 'https://open-agent-economy.github.io/open-agent-trust/',
185+
'downloadUrl': 'https://www.npmjs.com/package/@open-agent-economy/trust-sdk',
186+
'installUrl': 'https://www.npmjs.com/package/@open-agent-economy/trust-sdk'
187+
})]
188+
],
189+
190+
// Add markdown config for better content structure
191+
markdown: {
192+
theme: {
193+
light: 'github-light',
194+
dark: 'github-dark'
195+
},
196+
lineNumbers: true,
197+
headers: {
198+
level: [2, 3]
199+
}
200+
}
129201
})

docs/index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
---
22
layout: home
3+
title: Open Agent Trust SDK - Build Trusted Agent Networks
4+
titleTemplate: Blockchain Reputation & Attestations for Autonomous Agents
5+
description: TypeScript SDK for building verifiable, portable reputation systems for autonomous AI agents. Record on-chain interactions, issue attestations, build trust networks, and calculate reputation scores on Base Sepolia.
6+
head:
7+
- - meta
8+
- name: keywords
9+
content: agent trust SDK, autonomous agent reputation, blockchain attestations, AI agent trust, decentralized reputation, agent marketplace, Web3 agents, smart contract reputation, Base Sepolia, TypeScript blockchain SDK
10+
- - meta
11+
- property: og:title
12+
content: Open Agent Trust SDK - Build Trusted Agent Networks
13+
- - meta
14+
- property: og:description
15+
content: TypeScript SDK for autonomous agent reputation on blockchain. Record interactions, issue attestations, and build verifiable trust networks.
316

417
hero:
518
name: Open Agent Trust SDK
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"schema_version": "v1",
3+
"name_for_human": "Open Agent Trust SDK",
4+
"name_for_model": "agent_trust_sdk",
5+
"description_for_human": "TypeScript SDK for building verifiable reputation systems for autonomous AI agents on blockchain.",
6+
"description_for_model": "The Open Agent Trust SDK enables autonomous agents to build verifiable, portable reputation on Base Sepolia blockchain. Key features: 1) Record agent-to-agent interactions with scores (0-100). 2) Issue cryptographically signed attestations about agent behavior using flexible schemas. 3) Build weighted trust networks between agents with context-specific trust levels. 4) Calculate reputation scores based on trust networks and attestations. Deployed on Base Sepolia testnet with contracts: Interaction Registry (0x12F5C3fD1893bf9b2DeaA43AE1A2CCb122C3E707), Attestation Registry (0x64DaE82fE64D2fE96f90017FE51069C107BFe9d5), Trust Graph (0x8DC39B04A9C32e16DD7bd8906a8ea0d9DE6cCbDF). NPM: @open-agent-economy/trust-sdk",
7+
"api": {
8+
"type": "documentation",
9+
"url": "https://open-agent-economy.github.io/open-agent-trust/",
10+
"is_user_authenticated": false
11+
},
12+
"auth": {
13+
"type": "none"
14+
},
15+
"logo_url": "https://open-agent-economy.github.io/open-agent-trust/logo.svg",
16+
"contact_email": "contact@open-agent-economy.org",
17+
"legal_info_url": "https://github.com/Open-Agent-Economy/open-agent-trust/blob/main/LICENSE"
18+
}

0 commit comments

Comments
 (0)