-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (58 loc) · 2.48 KB
/
Copy pathindex.html
File metadata and controls
61 lines (58 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AgentCard — Semantic Waist of A2A</title>
<style>
body { font-family: monospace; max-width: 800px; margin: 60px auto; padding: 0 20px; background: #0d0d0d; color: #e0e0e0; }
h1 { color: #fff; font-size: 1.8em; border-bottom: 1px solid #333; padding-bottom: 16px; }
h2 { color: #aaa; font-size: 1.1em; font-weight: normal; margin-top: 0; }
a { color: #7eb8f7; text-decoration: none; }
a:hover { text-decoration: underline; }
.links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 40px 0; }
.link-card { border: 1px solid #333; padding: 16px; border-radius: 4px; }
.link-card:hover { border-color: #555; }
.tag { font-size: 0.75em; color: #666; }
code { background: #1a1a1a; padding: 2px 6px; border-radius: 3px; color: #7eb8f7; }
footer { margin-top: 60px; color: #444; font-size: 0.85em; border-top: 1px solid #222; padding-top: 20px; }
</style>
</head>
<body>
<h1>AgentCard</h1>
<h2>AgentCard is to A2A what HTTP headers are to the web.</h2>
<p>A standardized, machine-parseable declaration of agent identity and capability.<br>
Pure data schema. Zero execution logic. Works with any framework.</p>
<div class="links">
<a class="link-card" href="schema.json">
<div>schema.json</div>
<div class="tag">JSON Schema Draft 2020-12 · v1.0</div>
</a>
<a class="link-card" href="https://github.com/kwailapt/AgentCard">
<div>GitHub</div>
<div class="tag">Source · Apache 2.0</div>
</a>
<a class="link-card" href=".well-known/agent.json">
<div>.well-known/agent.json</div>
<div class="tag">Discovery endpoint</div>
</a>
<a class="link-card" href="https://github.com/kwailapt/AgentCard/tree/main/validators">
<div>Validators</div>
<div class="tag">Rust · Python · Node</div>
</a>
<a class="link-card" href="SPEC-CAUSAL-TOPOLOGY.md">
<div>Causal Topology v1.1</div>
<div class="tag">Distance Tax · Child Capacity · Local Attachment</div>
</a>
<a class="link-card" href="https://api.aevum.network/cso/leaderboard">
<div>CSO Leaderboard</div>
<div class="tag">Live · Causal Settlement Oracle</div>
</a>
</div>
<p>Pricing in <code>Joules</code> — thermodynamic settlement.<br>
Metadata via <code>π-projection</code> from PACR causal history, not self-reported.</p>
<footer>
AgentCard v1.0 · <a href="https://aevum.network">aevum.network</a> · Apache 2.0
</footer>
</body>
</html>