-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (82 loc) · 2.42 KB
/
index.html
File metadata and controls
89 lines (82 loc) · 2.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SPID Protocol</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap">
<style>
body {
font-family: 'Inter', sans-serif;
margin: 0;
background: #fff;
color: #333;
line-height: 1.6;
}
header {
background: #ff7515;
color: white;
padding: 2rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
section {
padding: 2rem;
max-width: 800px;
margin: auto;
}
h2 {
color: #ff7515;
}
a.button {
background: #ff7515;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 5px;
text-decoration: none;
display: inline-block;
margin: 1rem 0;
}
footer {
background: #eee;
padding: 1rem;
text-align: center;
font-size: 0.85rem;
}
</style>
</head>
<body>
<header>
<h1>SPID Protocol</h1>
<p>The open standard for voice-first, AI-native communication.</p>
</header>
<section>
<h2>What is SPID?</h2>
<p>SPID (Smart Packet Identifier) is a protocol that allows AI assistants and apps to resolve structured, voice-powered content — not crawl it. Think of it as DNS for Smart Packets: structured answers with transcripts, voice, and intent-aware CTAs.</p>
<a class="button" href="https://github.com/SPID-Protocol-project/spid-protocol">View on GitHub</a>
<h2>Who is it for?</h2>
<ul>
<li>Developers building voice or retrieval-based AI tools</li>
<li>Businesses who want to be found and heard by AI</li>
<li>Protocol advocates and internet futurists</li>
</ul>
<h2>Get Started</h2>
<ul>
<li><a href="https://spid.directory">SPID Directory</a></li>
<li><a href="https://myvoicemate.com">Create a Smart Packet</a></li>
<li><a href="mailto:hello@voicemate.id">Email Us</a></li>
</ul>
</section>
<section id="architecture">
<h2>Architecture Overview</h2>
<p>This diagram shows how SPIDs resolve to Smart Packets via our open protocol and resolver directory.</p>
<img src="docs/SPID_Architecture.png" alt="SPID Protocol Architecture" width="100%" />
</section>
<footer>
© 2025 SPID Protocol / VoiceMate. All rights reserved.
</footer>
</body>
</html>