-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathgeistdocs.tsx
More file actions
60 lines (54 loc) · 2.75 KB
/
Copy pathgeistdocs.tsx
File metadata and controls
60 lines (54 loc) · 2.75 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
export const Logo = () => (
<div className="flex items-center gap-1.5">
<svg
aria-hidden="true"
className="shrink-0"
fill="none"
height="17"
viewBox="0 0 18 17"
width="18"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M2.89502 12.7607V13.8984L3.56006 14.5381H14.4399L15.104 13.8994V12.7607H16.7417V14.5967L15.3364 15.9473L15.0981 16.1758H2.90088L2.66357 15.9473L1.50928 14.8389L1.2583 14.5967V12.7607H2.89502ZM15.0981 0L15.3364 0.228516L16.4897 1.33691L16.7417 1.57812V3.41406H15.104V2.27539L14.439 1.63672H3.56006L2.89502 2.27539V3.41406H1.2583V1.57812L2.66357 0.228516L2.90088 0H15.0981Z"
fill="currentColor"
/>
<path
d="M16.3628 8.12036C16.3628 7.24277 15.6515 6.53157 14.7739 6.53149C13.8963 6.53149 13.1851 7.24272 13.1851 8.12036C13.1851 8.99793 13.8963 9.70923 14.7739 9.70923V11.3469L14.6079 11.342C12.9581 11.2585 11.635 9.93612 11.5513 8.28638L11.5474 8.12036C11.5474 6.33846 12.992 4.8938 14.7739 4.8938L14.9399 4.89771C16.6446 4.98418 18.0005 6.39419 18.0005 8.12036L17.9956 8.28638C17.9091 9.991 16.5 11.3468 14.7739 11.3469V9.70923C15.6514 9.70915 16.3627 8.99788 16.3628 8.12036Z"
fill="currentColor"
/>
<path
d="M6.45283 8.12021C6.45283 9.90211 5.00831 11.3466 3.22641 11.3466C1.44451 11.3466 0 9.90211 0 8.12021C0 6.33831 1.44451 4.8938 3.22641 4.8938C5.00831 4.8938 6.45283 6.33831 6.45283 8.12021Z"
fill="currentColor"
/>
<path
d="M5.14258 8.12036C5.14258 7.06225 4.28466 6.20443 3.22656 6.20435C2.1684 6.20435 1.31055 7.0622 1.31055 8.12036C1.31063 9.17846 2.16845 10.0364 3.22656 10.0364V11.3469L3.06055 11.342C1.41077 11.2585 0.087592 9.93612 0.00390625 8.28638L0 8.12036C0 6.33846 1.44466 4.8938 3.22656 4.8938L3.39258 4.89771C5.09726 4.98418 6.45312 6.39419 6.45312 8.12036L6.44824 8.28638C6.36175 9.991 4.95266 11.3468 3.22656 11.3469V10.0364C4.28461 10.0363 5.1425 9.17841 5.14258 8.12036Z"
fill="currentColor"
/>
<path
d="M10.384 7.31519L10.384 8.95288L4.84595 8.95288L4.84595 7.31519L10.384 7.31519Z"
fill="currentColor"
/>
</svg>
<p className="font-semibold text-xl tracking-tight">Agent Plugins</p>
</div>
);
export const github = {
owner: "agentplugins",
repo: "agent-plugins-site",
};
export const nav = [
{
label: "Specification",
href: "https://github.com/agentplugins/agent-plugins-spec",
},
];
export const suggestions = [
"What is an Agent Plugin?",
"How do I create a minimal plugin?",
"How are skills and MCP servers discovered?",
"What does a conformant client need to implement?",
];
export const title = "Agent Plugins Documentation";
export const siteUrl = "https://agent-plugins.org";
export const basePath: string | undefined = undefined;