Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions .vitepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,20 @@ export default withMermaid(
logo: '/wildedge-logo-text.svg',
nav: [
{ text: 'BLOG', link: 'https://blog.wildedge.dev' },
{ text: 'CHANGELOG', link: '/changelog' },
{ text: 'REMOTE MCP', link: '/mcp' },
{ text: 'API DOCS', link: 'https://app.wildedge.dev/api/docs' },
{ text: 'GET STARTED', link: 'https://app.wildedge.dev/dashboard/signup' },
],
sidebar: [
{
text: 'Documentation',
items: [
{ text: 'Remote MCP', link: '/mcp' },
{ text: 'What we collect', link: '/what-we-collect' },
{ text: 'Changelog', link: '/changelog' },
],
},
],
outline: [2, 3],
socialLinks: [{ icon: 'github', link: 'https://github.com/wild-edge' }],
editLink: {
pattern: 'https://github.com/wild-edge/wildedge-docs/edit/main/:path',
Expand All @@ -52,10 +61,21 @@ export default withMermaid(
logo: '/wildedge-logo-text.svg',
nav: [
{ text: 'BLOG', link: 'https://blog.wildedge.dev' },
{ text: 'DZIENNIK ZMIAN', link: '/pl/changelog' },
{ text: 'DOKUMENTACJA API', link: 'https://app.wildedge.dev/api/docs' },
{ text: 'ZACZNIJ', link: 'https://app.wildedge.dev/dashboard/signup' },
],
sidebar: [
{
text: 'Dokumentacja',
items: [
// Nietłumaczone jeszcze — linki prowadzą do wersji angielskiej.
{ text: 'Zdalny MCP', link: '/mcp' },
{ text: 'Co zbieramy', link: '/what-we-collect' },
{ text: 'Dziennik zmian', link: '/pl/changelog' },
],
},
],
outline: [2, 3],
socialLinks: [{ icon: 'github', link: 'https://github.com/wild-edge' }],
editLink: {
pattern: 'https://github.com/wild-edge/wildedge-docs/edit/main/:path',
Expand Down
6 changes: 6 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ Connect your coding agent - such as Claude Code, Codex, or Gemini CLI - directly

[Read more about Remote MCP](/mcp)

## What We Collect

The SDK measures your inference calls - latency, tokens, thermal and memory state - and never copies your prompts, completions, images, or audio.

[See exactly what is collected](/what-we-collect)

## API Reference

Interactive Swagger docs are also available at [app.wildedge.dev/api/docs](https://app.wildedge.dev/api/docs).
Loading