@agent-link/server 0.1.536 → 0.1.538
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/web/dist/landing/icons/agent-claude.svg +1 -0
- package/web/dist/landing/icons/agent-codex.svg +1 -0
- package/web/dist/landing/icons/agent-copilot.svg +1 -0
- package/web/dist/landing/icons/agent-pi.svg +5 -0
- package/web/dist/landing/icons/msclaude-animated.svg +43 -0
- package/web/dist/landing/landing.css +1228 -0
- package/web/dist/landing/landing.js +71 -0
- package/web/dist/landing.html +212 -572
- package/web/dist/landing.zh.html +212 -567
- package/web/dist/robots.txt +4 -0
- package/web/dist/site.webmanifest +21 -0
- package/web/dist/sitemap.xml +16 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "msclaude",
|
|
3
|
+
"short_name": "msclaude",
|
|
4
|
+
"description": "Remote access for coding agents running on your development machine.",
|
|
5
|
+
"start_url": "/",
|
|
6
|
+
"display": "standalone",
|
|
7
|
+
"background_color": "#f2efe8",
|
|
8
|
+
"theme_color": "#f2efe8",
|
|
9
|
+
"icons": [
|
|
10
|
+
{
|
|
11
|
+
"src": "/favicon-192x192.png",
|
|
12
|
+
"sizes": "192x192",
|
|
13
|
+
"type": "image/png"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"src": "/favicon-512x512.png",
|
|
17
|
+
"sizes": "512x512",
|
|
18
|
+
"type": "image/png"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
3
|
+
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
|
4
|
+
<url>
|
|
5
|
+
<loc>https://msclaude.ai/</loc>
|
|
6
|
+
<xhtml:link rel="alternate" hreflang="en" href="https://msclaude.ai/"/>
|
|
7
|
+
<xhtml:link rel="alternate" hreflang="zh-CN" href="https://msclaude.ai/zh"/>
|
|
8
|
+
<xhtml:link rel="alternate" hreflang="x-default" href="https://msclaude.ai/"/>
|
|
9
|
+
</url>
|
|
10
|
+
<url>
|
|
11
|
+
<loc>https://msclaude.ai/zh</loc>
|
|
12
|
+
<xhtml:link rel="alternate" hreflang="en" href="https://msclaude.ai/"/>
|
|
13
|
+
<xhtml:link rel="alternate" hreflang="zh-CN" href="https://msclaude.ai/zh"/>
|
|
14
|
+
<xhtml:link rel="alternate" hreflang="x-default" href="https://msclaude.ai/"/>
|
|
15
|
+
</url>
|
|
16
|
+
</urlset>
|