mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-31 22:36:32 +02:00
* feat: add QQ Bot channel extension * fix(qqbot): add setupWizard to runtime plugin for onboard re-entry * fix: fix review * fix: fix review * chore: sync lockfile and config-docs baseline for qqbot extension * refactor: 移除图床服务器相关代码 * fix * docs: 新增 QQ Bot 插件文档并修正链接路径 * refactor: remove credential backup functionality and update setup logic - Deleted the credential backup module to streamline the codebase. - Updated the setup surface to handle client secrets more robustly, allowing for configured secret inputs. - Simplified slash commands by removing unused hot upgrade compatibility checks and related functions. - Adjusted types to use SecretInput for client secrets in QQBot configuration. - Modified bundled plugin metadata to allow additional properties in the config schema. * feat: 添加本地媒体路径解析功能,修正 QQBot 媒体路径处理 * feat: 添加本地媒体路径解析功能,修正 QQBot 媒体路径处理 * feat: remove qqbot-media and qqbot-remind skills, add tests for config and setup - Deleted the qqbot-media and qqbot-remind skills documentation files. - Added unit tests for qqbot configuration and setup processes, ensuring proper handling of SecretRef-backed credentials and account configurations. - Implemented tests for local media path remapping, verifying correct resolution of media file paths. - Removed obsolete channel and remind tools, streamlining the codebase. * feat: 更新 QQBot 配置模式,添加音频格式和账户定义 * feat: 添加 QQBot 频道管理和定时提醒技能,更新媒体路径解析功能 * fix * feat: 添加 /bot-upgrade 指令以查看 QQBot 插件升级指引 * feat: update reminder and qq channel skills * feat: 更新remind工具投递目标地址格式 * feat: Refactor QQBot payload handling and improve code documentation - Simplified and clarified the structure of payload interfaces for Cron reminders and media messages. - Enhanced the parsing function to provide clearer error messages and improved validation. - Updated platform utility functions for better cross-platform compatibility and clearer documentation. - Improved text parsing utilities for better readability and consistency in emoji representation. - Optimized upload cache management with clearer comments and reduced redundancy. - Integrated QQBot plugin into the bundled channel plugins and updated metadata for installation. * OK apps/macos/Sources/OpenClaw/HostEnvSecurityPolicy.generated.swift > openclaw@2026.3.26 check:bundled-channel-config-metadata /Users/yuehuali/code/PR/openclaw > node --import tsx scripts/generate-bundled-channel-config-metadata.ts --check [bundled-channel-config-metadata] stale generated output at src/config/bundled-channel-config-metadata.generated.ts ELIFECYCLE Command failed with exit code 1. ELIFECYCLE Command failed with exit code 1. * feat: 添加 QQBot 渠道配置及相关账户设置 * fix(qqbot): resolve 14 high-priority bugs from PR #52986 review DM routing (7 fixes): - #1: DM slash-command replies use sendDmMessage(guildId) instead of sendC2CMessage(senderId) - #2: DM qualifiedTarget uses qqbot:dm:${guildId} instead of qqbot:c2c:${senderId} - #3: sendTextChunks adds DM branch - #4: sendMarkdownReply adds DM branch for text and Base64 images - #5: parseAndSendMediaTags maps DM to targetType:dm + guildId - #6: sendTextToTarget DM branch uses sendDmMessage; MessageTarget adds guildId field - #7: handleImage/Audio/Video/FilePayload add DM branches Other high-priority fixes: - #8: Fix sendC2CVoiceMessage/sendGroupVoiceMessage parameter misalignment - #9: broadcastMessage uses groupOpenid instead of member_openid for group users - #10: Unify KnownUser storage - proactive.ts delegates to known-users.ts - #11: Remove invalid recordKnownUser calls for guild/DM users - #12: sendGroupMessage uses sendAndNotify to trigger onMessageSent hook - #13: sendPhoto channel unsupported returns error field - #14: sendTextAfterMedia adds channel and dm branches Type fixes: - DeliverEventContext adds guildId field - MediaTargetContext.targetType adds dm variant - sendPlainTextReply imgMediaTarget adds DM branch * fix(qqbot): resolve 2 blockers + 7 medium-priority bugs from PR #52986 review Blocker-1: Remove unused dmPolicy config knob - dmPolicy was declared in schema/types/plugin.json but never consumed at runtime - Removed from config-schema.ts, types.ts, and openclaw.plugin.json - allowFrom remains active (already wired into framework command-auth) Blocker-2: Gate sensitive slash commands with allowFrom authorization - SlashCommand interface adds requireAuth?: boolean - SlashCommandContext adds commandAuthorized: boolean - /bot-logs set to requireAuth: true (reads local log files) - matchSlashCommand rejects unauthorized senders for requireAuth commands - trySlashCommandOrEnqueue computes commandAuthorized from allowFrom config Medium-priority fixes: - #15: Strip non-HTTP/non-local markdown image tags to prevent path leakage - #16: applyQQBotAccountConfig clears clientSecret when setting clientSecretFile and vice versa - #17: getAdminMarkerFile sanitizes accountId to prevent path traversal - #18: URGENT_COMMANDS uses exact match instead of startsWith prefix match - #19: isCronExpression validates each token starts with a cron-valid character - #20: --token format validation rejects malformed input without colon separator - #21: resolveDefaultQQBotAccountId checks QQBOT_APP_ID environment variable * test(qqbot): add focused tests for slash command authorization path - Unauthorized sender rejected for /bot-logs (requireAuth: true) - Authorized sender allowed for /bot-logs - Non-requireAuth commands (/bot-ping, /bot-help, /bot-version) work for all senders - Unknown slash commands return null (passthrough) - Non-slash messages return null - Usage query (/bot-logs ?) also gated by auth check * fix(qqbot): align global TTS fallback with framework config resolution - Extract isGlobalTTSAvailable to utils/audio-convert.ts, mirroring core resolveTtsConfig logic: check auto !== 'off', fall back to legacy enabled boolean, default to off when neither is set. - Add pre-check in reply-dispatcher before calling globalTextToSpeech to avoid unnecessary TTS calls and noisy error logs when TTS is not configured. - Remove inline as any casts; use OpenClawConfig type throughout. - Refactor handleAudioPayload into flat early-return structure with unified send path (plugin TTS → global fallback → send). * fix(qqbot): break ESM circular dependency causing multi-account startup crash The bundled gateway chunk had a circular static import on the channel chunk (gateway -> outbound-deliver -> channel, while channel dynamically imports gateway). When two accounts start concurrently via Promise.all, the first dynamic import triggers module graph evaluation; the circular reference causes api exports (including runDiagnostics) to resolve as undefined before the module finishes evaluating. Fix: extract chunkText and TEXT_CHUNK_LIMIT from channel.ts into a new text-utils.ts leaf module. outbound-deliver.ts now imports from text-utils.ts, breaking the cycle. channel.ts re-exports for backward compatibility. * fix(qqbot): serialize gateway module import to prevent multi-account startup race When multiple accounts start concurrently via Promise.all, each calls await import('./gateway.js') independently. Due to ESM circular dependencies in the bundled output, the first import can resolve transitive exports as undefined before module evaluation completes. Fix: cache the dynamic import promise in a module-level variable so all concurrent startAccount calls share the same import, ensuring the gateway module is fully evaluated before any account uses it. * refactor(qqbot): remove startup greeting logic Remove getStartupGreetingPlan and related startup greeting delivery: - Delete startup-greeting.ts (greeting plan, marker persistence) - Delete admin-resolver.ts (admin resolution, greeting dispatch) - Remove startup greeting calls from gateway READY/RESUMED handlers - Remove isFirstReadyGlobal flag and adminCtx * fix(qqbot): skip octal escape decoding for Windows local paths Windows paths like C:\Users\1\file.txt contain backslash-digit sequences that were incorrectly matched as octal escape sequences and decoded, corrupting the file path. Detect Windows local paths (drive letter or UNC prefix) and skip the octal decoding step for them. * fix bot issue * feat: 支持 TTS 自动开关并清理配置中的 clientSecretFile * docs: 添加 QQBot 配置和消息处理的设计说明 * rebase * fix(qqbot): align slash-command auth with shared command-auth model Route requireAuth:true slash commands (e.g. /bot-logs) through the framework's api.registerCommand() so resolveCommandAuthorization() applies commands.allowFrom.qqbot precedence and qqbot: prefix normalization before any handler runs. - slash-commands.ts: registerCommand() now auto-routes by requireAuth into two maps (commands / frameworkCommands); getFrameworkCommands() exports the auth-required set for framework registration; bot-help lists both maps - index.ts: registerFull() iterates getFrameworkCommands() and calls api.registerCommand() for each; handler derives msgType from ctx.from, sends file attachments via sendDocument, supports multi-account via ctx.accountId - gateway.ts (inbound): replace raw allowFrom string comparison with qqbotPlugin.config.formatAllowFrom() to strip qqbot: prefix and uppercase before matching event.senderId - gateway.ts (pre-dispatch): remove stale auth computation; commandAuthorized is true (requireAuth:true commands never reach matchSlashCommand) - command-auth.test.ts: add regression tests for qqbot: prefix normalization in the inbound commandAuthorized computation - slash-commands.test.ts: update /bot-logs tests to expect null (command routed to framework, not in local registry) * rebase and solve conflict * fix(qqbot): preserve mixed env setup credentials --------- Co-authored-by: yuehuali <yuehuali@tencent.com> Co-authored-by: walli <walli@tencent.com> Co-authored-by: WideLee <limkuan24@gmail.com> Co-authored-by: Frank Yang <frank.ekn@gmail.com>
2144 lines
61 KiB
JSON
2144 lines
61 KiB
JSON
{
|
|
"$schema": "https://mintlify.com/docs.json",
|
|
"name": "OpenClaw",
|
|
"description": "Self-hosted gateway that connects WhatsApp, Telegram, Discord, iMessage, and more to AI coding agents. Run a single Gateway process on your own machine and message your AI assistant from anywhere.",
|
|
"theme": "mint",
|
|
"icons": {
|
|
"library": "lucide"
|
|
},
|
|
"logo": {
|
|
"light": "/assets/pixel-lobster.svg",
|
|
"dark": "/assets/pixel-lobster.svg"
|
|
},
|
|
"fonts": {
|
|
"body": {
|
|
"family": "Fragment Mono"
|
|
},
|
|
"heading": {
|
|
"family": "DM Sans"
|
|
}
|
|
},
|
|
"favicon": "/assets/pixel-lobster.svg",
|
|
"colors": {
|
|
"primary": "#FF5A36",
|
|
"dark": "#FF5A36",
|
|
"light": "#FF8A6B"
|
|
},
|
|
"styling": {
|
|
"codeblocks": {
|
|
"theme": {
|
|
"dark": "min-dark",
|
|
"light": "min-light"
|
|
}
|
|
}
|
|
},
|
|
"navbar": {
|
|
"links": [
|
|
{
|
|
"label": "GitHub",
|
|
"href": "https://github.com/openclaw/openclaw",
|
|
"icon": "github"
|
|
},
|
|
{
|
|
"label": "Releases",
|
|
"href": "https://github.com/openclaw/openclaw/releases",
|
|
"icon": "package"
|
|
},
|
|
{
|
|
"label": "Discord",
|
|
"href": "https://discord.com/invite/clawd",
|
|
"icon": "discord"
|
|
}
|
|
]
|
|
},
|
|
"redirects": [
|
|
{
|
|
"source": "/providers/modelstudio",
|
|
"destination": "/providers/qwen_modelstudio"
|
|
},
|
|
{
|
|
"source": "/platforms/oracle",
|
|
"destination": "/install/oracle"
|
|
},
|
|
{
|
|
"source": "/platforms/digitalocean",
|
|
"destination": "/install/digitalocean"
|
|
},
|
|
{
|
|
"source": "/platforms/raspberry-pi",
|
|
"destination": "/install/raspberry-pi"
|
|
},
|
|
{
|
|
"source": "/plugins/building-extensions",
|
|
"destination": "/plugins/building-plugins"
|
|
},
|
|
{
|
|
"source": "/plugins/agent-tools",
|
|
"destination": "/plugins/building-plugins#registering-agent-tools"
|
|
},
|
|
{
|
|
"source": "/tools/capability-cookbook",
|
|
"destination": "/plugins/architecture"
|
|
},
|
|
{
|
|
"source": "/brave-search",
|
|
"destination": "/tools/brave-search"
|
|
},
|
|
{
|
|
"source": "/perplexity",
|
|
"destination": "/tools/perplexity-search"
|
|
},
|
|
{
|
|
"source": "/web-fetch",
|
|
"destination": "/tools/web-fetch"
|
|
},
|
|
{
|
|
"source": "/duckduckgo-search",
|
|
"destination": "/tools/duckduckgo-search"
|
|
},
|
|
{
|
|
"source": "/exa-search",
|
|
"destination": "/tools/exa-search"
|
|
},
|
|
{
|
|
"source": "/gemini-search",
|
|
"destination": "/tools/gemini-search"
|
|
},
|
|
{
|
|
"source": "/grok-search",
|
|
"destination": "/tools/grok-search"
|
|
},
|
|
{
|
|
"source": "/kimi-search",
|
|
"destination": "/tools/kimi-search"
|
|
},
|
|
{
|
|
"source": "/tts",
|
|
"destination": "/tools/tts"
|
|
},
|
|
{
|
|
"source": "/messages",
|
|
"destination": "/concepts/messages"
|
|
},
|
|
{
|
|
"source": "/context",
|
|
"destination": "/concepts/context"
|
|
},
|
|
{
|
|
"source": "/compaction",
|
|
"destination": "/concepts/compaction"
|
|
},
|
|
{
|
|
"source": "/context-engine",
|
|
"destination": "/concepts/context-engine"
|
|
},
|
|
{
|
|
"source": "/cron",
|
|
"destination": "/automation/cron-jobs"
|
|
},
|
|
{
|
|
"source": "/minimax",
|
|
"destination": "/providers/minimax"
|
|
},
|
|
{
|
|
"source": "/xiaomi",
|
|
"destination": "/providers/xiaomi"
|
|
},
|
|
{
|
|
"source": "/openai",
|
|
"destination": "/providers/openai"
|
|
},
|
|
{
|
|
"source": "/openai/",
|
|
"destination": "/providers/openai"
|
|
},
|
|
{
|
|
"source": "/anthropic",
|
|
"destination": "/providers/anthropic"
|
|
},
|
|
{
|
|
"source": "/anthropic/",
|
|
"destination": "/providers/anthropic"
|
|
},
|
|
{
|
|
"source": "/moonshot",
|
|
"destination": "/providers/moonshot"
|
|
},
|
|
{
|
|
"source": "/mistral",
|
|
"destination": "/providers/mistral"
|
|
},
|
|
{
|
|
"source": "/openrouter",
|
|
"destination": "/providers/openrouter"
|
|
},
|
|
{
|
|
"source": "/opencode",
|
|
"destination": "/providers/opencode"
|
|
},
|
|
{
|
|
"source": "/opencode-go",
|
|
"destination": "/providers/opencode-go"
|
|
},
|
|
{
|
|
"source": "/qianfan",
|
|
"destination": "/providers/qianfan"
|
|
},
|
|
{
|
|
"source": "/mattermost",
|
|
"destination": "/channels/mattermost"
|
|
},
|
|
{
|
|
"source": "/line",
|
|
"destination": "/channels/line"
|
|
},
|
|
{
|
|
"source": "/glm",
|
|
"destination": "/providers/glm"
|
|
},
|
|
{
|
|
"source": "/zai",
|
|
"destination": "/providers/zai"
|
|
},
|
|
{
|
|
"source": "/message",
|
|
"destination": "/cli/message"
|
|
},
|
|
{
|
|
"source": "/providers/discord",
|
|
"destination": "/channels/discord"
|
|
},
|
|
{
|
|
"source": "/providers/googlechat",
|
|
"destination": "/channels/googlechat"
|
|
},
|
|
{
|
|
"source": "/providers/grammy",
|
|
"destination": "/channels/telegram"
|
|
},
|
|
{
|
|
"source": "/providers/imessage",
|
|
"destination": "/channels/imessage"
|
|
},
|
|
{
|
|
"source": "/providers/location",
|
|
"destination": "/channels/location"
|
|
},
|
|
{
|
|
"source": "/providers/mattermost",
|
|
"destination": "/channels/mattermost"
|
|
},
|
|
{
|
|
"source": "/providers/msteams",
|
|
"destination": "/channels/msteams"
|
|
},
|
|
{
|
|
"source": "/providers/line",
|
|
"destination": "/channels/line"
|
|
},
|
|
{
|
|
"source": "/providers/signal",
|
|
"destination": "/channels/signal"
|
|
},
|
|
{
|
|
"source": "/providers/slack",
|
|
"destination": "/channels/slack"
|
|
},
|
|
{
|
|
"source": "/providers/telegram",
|
|
"destination": "/channels/telegram"
|
|
},
|
|
{
|
|
"source": "/providers/troubleshooting",
|
|
"destination": "/channels/troubleshooting"
|
|
},
|
|
{
|
|
"source": "/providers/zalo",
|
|
"destination": "/channels/zalo"
|
|
},
|
|
{
|
|
"source": "/providers/whatsapp",
|
|
"destination": "/channels/whatsapp"
|
|
},
|
|
{
|
|
"source": "/sandbox",
|
|
"destination": "/cli/sandbox"
|
|
},
|
|
{
|
|
"source": "/sandboxing",
|
|
"destination": "/gateway/sandboxing"
|
|
},
|
|
{
|
|
"source": "/AGENTS.default",
|
|
"destination": "/reference/AGENTS.default"
|
|
},
|
|
{
|
|
"source": "/RELEASING",
|
|
"destination": "/reference/RELEASING"
|
|
},
|
|
{
|
|
"source": "/agent",
|
|
"destination": "/concepts/agent"
|
|
},
|
|
{
|
|
"source": "/agent-loop",
|
|
"destination": "/concepts/agent-loop"
|
|
},
|
|
{
|
|
"source": "/agent-send",
|
|
"destination": "/tools/agent-send"
|
|
},
|
|
{
|
|
"source": "/agent-workspace",
|
|
"destination": "/concepts/agent-workspace"
|
|
},
|
|
{
|
|
"source": "/android",
|
|
"destination": "/platforms/android"
|
|
},
|
|
{
|
|
"source": "/architecture",
|
|
"destination": "/concepts/architecture"
|
|
},
|
|
{
|
|
"source": "/audio",
|
|
"destination": "/nodes/audio"
|
|
},
|
|
{
|
|
"source": "/background-process",
|
|
"destination": "/gateway/background-process"
|
|
},
|
|
{
|
|
"source": "/bash",
|
|
"destination": "/tools/exec"
|
|
},
|
|
{
|
|
"source": "/tools/bash",
|
|
"destination": "/tools/exec"
|
|
},
|
|
{
|
|
"source": "/bonjour",
|
|
"destination": "/gateway/bonjour"
|
|
},
|
|
{
|
|
"source": "/browser",
|
|
"destination": "/tools/browser"
|
|
},
|
|
{
|
|
"source": "/browser-linux-troubleshooting",
|
|
"destination": "/tools/browser-linux-troubleshooting"
|
|
},
|
|
{
|
|
"source": "/bun",
|
|
"destination": "/install/bun"
|
|
},
|
|
{
|
|
"source": "/auth-monitoring",
|
|
"destination": "/automation/auth-monitoring"
|
|
},
|
|
{
|
|
"source": "/camera",
|
|
"destination": "/nodes/camera"
|
|
},
|
|
{
|
|
"source": "/clawd",
|
|
"destination": "/start/openclaw"
|
|
},
|
|
{
|
|
"source": "/start/clawd",
|
|
"destination": "/start/openclaw"
|
|
},
|
|
{
|
|
"source": "/start/clawd/",
|
|
"destination": "/start/openclaw"
|
|
},
|
|
{
|
|
"source": "/start/pairing",
|
|
"destination": "/channels/pairing"
|
|
},
|
|
{
|
|
"source": "/clawhub",
|
|
"destination": "/tools/clawhub"
|
|
},
|
|
{
|
|
"source": "/clawdhub",
|
|
"destination": "/tools/clawhub"
|
|
},
|
|
{
|
|
"source": "/tools/clawdhub",
|
|
"destination": "/tools/clawhub"
|
|
},
|
|
{
|
|
"source": "/configuration",
|
|
"destination": "/gateway/configuration"
|
|
},
|
|
{
|
|
"source": "/control-ui",
|
|
"destination": "/web/control-ui"
|
|
},
|
|
{
|
|
"source": "/cron-jobs",
|
|
"destination": "/automation/cron-jobs"
|
|
},
|
|
{
|
|
"source": "/cron-vs-heartbeat",
|
|
"destination": "/automation/cron-vs-heartbeat"
|
|
},
|
|
{
|
|
"source": "/dashboard",
|
|
"destination": "/web/dashboard"
|
|
},
|
|
{
|
|
"source": "/device-models",
|
|
"destination": "/reference/device-models"
|
|
},
|
|
{
|
|
"source": "/discord",
|
|
"destination": "/channels/discord"
|
|
},
|
|
{
|
|
"source": "/discovery",
|
|
"destination": "/gateway/discovery"
|
|
},
|
|
{
|
|
"source": "/docker",
|
|
"destination": "/install/docker"
|
|
},
|
|
{
|
|
"source": "/podman",
|
|
"destination": "/install/podman"
|
|
},
|
|
{
|
|
"source": "/doctor",
|
|
"destination": "/gateway/doctor"
|
|
},
|
|
{
|
|
"source": "/elevated",
|
|
"destination": "/tools/elevated"
|
|
},
|
|
{
|
|
"source": "/faq",
|
|
"destination": "/help/faq"
|
|
},
|
|
{
|
|
"source": "/gateway-lock",
|
|
"destination": "/gateway/gateway-lock"
|
|
},
|
|
{
|
|
"source": "/getting-started",
|
|
"destination": "/start/getting-started"
|
|
},
|
|
{
|
|
"source": "/quickstart",
|
|
"destination": "/start/getting-started"
|
|
},
|
|
{
|
|
"source": "/start/quickstart",
|
|
"destination": "/start/getting-started"
|
|
},
|
|
{
|
|
"source": "/gmail-pubsub",
|
|
"destination": "/automation/gmail-pubsub"
|
|
},
|
|
{
|
|
"source": "/grammy",
|
|
"destination": "/channels/telegram"
|
|
},
|
|
{
|
|
"source": "/channels/grammy",
|
|
"destination": "/channels/telegram"
|
|
},
|
|
{
|
|
"source": "/group-messages",
|
|
"destination": "/channels/group-messages"
|
|
},
|
|
{
|
|
"source": "/groups",
|
|
"destination": "/channels/groups"
|
|
},
|
|
{
|
|
"source": "/health",
|
|
"destination": "/gateway/health"
|
|
},
|
|
{
|
|
"source": "/heartbeat",
|
|
"destination": "/gateway/heartbeat"
|
|
},
|
|
{
|
|
"source": "/hubs",
|
|
"destination": "/start/hubs"
|
|
},
|
|
{
|
|
"source": "/images",
|
|
"destination": "/nodes/images"
|
|
},
|
|
{
|
|
"source": "/imessage",
|
|
"destination": "/channels/imessage"
|
|
},
|
|
{
|
|
"source": "/ios",
|
|
"destination": "/platforms/ios"
|
|
},
|
|
{
|
|
"source": "/linux",
|
|
"destination": "/platforms/linux"
|
|
},
|
|
{
|
|
"source": "/location",
|
|
"destination": "/channels/location"
|
|
},
|
|
{
|
|
"source": "/location-command",
|
|
"destination": "/nodes/location-command"
|
|
},
|
|
{
|
|
"source": "/lore",
|
|
"destination": "/start/lore"
|
|
},
|
|
{
|
|
"source": "/mac/bun",
|
|
"destination": "/platforms/mac/bundled-gateway"
|
|
},
|
|
{
|
|
"source": "/platforms/mac/bun",
|
|
"destination": "/platforms/mac/bundled-gateway"
|
|
},
|
|
{
|
|
"source": "/mac/canvas",
|
|
"destination": "/platforms/mac/canvas"
|
|
},
|
|
{
|
|
"source": "/mac/child-process",
|
|
"destination": "/platforms/mac/child-process"
|
|
},
|
|
{
|
|
"source": "/mac/dev-setup",
|
|
"destination": "/platforms/mac/dev-setup"
|
|
},
|
|
{
|
|
"source": "/mac/health",
|
|
"destination": "/platforms/mac/health"
|
|
},
|
|
{
|
|
"source": "/mac/icon",
|
|
"destination": "/platforms/mac/icon"
|
|
},
|
|
{
|
|
"source": "/mac/logging",
|
|
"destination": "/platforms/mac/logging"
|
|
},
|
|
{
|
|
"source": "/mac/menu-bar",
|
|
"destination": "/platforms/mac/menu-bar"
|
|
},
|
|
{
|
|
"source": "/mac/peekaboo",
|
|
"destination": "/platforms/mac/peekaboo"
|
|
},
|
|
{
|
|
"source": "/mac/permissions",
|
|
"destination": "/platforms/mac/permissions"
|
|
},
|
|
{
|
|
"source": "/mac/release",
|
|
"destination": "/reference/RELEASING"
|
|
},
|
|
{
|
|
"source": "/mac/remote",
|
|
"destination": "/platforms/mac/remote"
|
|
},
|
|
{
|
|
"source": "/mac/signing",
|
|
"destination": "/platforms/mac/signing"
|
|
},
|
|
{
|
|
"source": "/mac/skills",
|
|
"destination": "/platforms/mac/skills"
|
|
},
|
|
{
|
|
"source": "/mac/voice-overlay",
|
|
"destination": "/platforms/mac/voice-overlay"
|
|
},
|
|
{
|
|
"source": "/mac/voicewake",
|
|
"destination": "/platforms/mac/voicewake"
|
|
},
|
|
{
|
|
"source": "/mac/webchat",
|
|
"destination": "/platforms/mac/webchat"
|
|
},
|
|
{
|
|
"source": "/mac/xpc",
|
|
"destination": "/platforms/mac/xpc"
|
|
},
|
|
{
|
|
"source": "/macos",
|
|
"destination": "/platforms/macos"
|
|
},
|
|
{
|
|
"source": "/model-failover",
|
|
"destination": "/concepts/model-failover"
|
|
},
|
|
{
|
|
"source": "/model",
|
|
"destination": "/concepts/models"
|
|
},
|
|
{
|
|
"source": "/model/",
|
|
"destination": "/concepts/models"
|
|
},
|
|
{
|
|
"source": "/models",
|
|
"destination": "/concepts/models"
|
|
},
|
|
{
|
|
"source": "/multi-agent",
|
|
"destination": "/concepts/multi-agent"
|
|
},
|
|
{
|
|
"source": "/nix",
|
|
"destination": "/install/nix"
|
|
},
|
|
{
|
|
"source": "/onboarding",
|
|
"destination": "/start/onboarding"
|
|
},
|
|
{
|
|
"source": "/pairing",
|
|
"destination": "/channels/pairing"
|
|
},
|
|
{
|
|
"source": "/experiments/plans/cron-add-hardening",
|
|
"destination": "/automation/cron-jobs"
|
|
},
|
|
{
|
|
"source": "/experiments/plans/group-policy-hardening",
|
|
"destination": "/channels/groups"
|
|
},
|
|
{
|
|
"source": "/poll",
|
|
"destination": "/automation/poll"
|
|
},
|
|
{
|
|
"source": "/presence",
|
|
"destination": "/concepts/presence"
|
|
},
|
|
{
|
|
"source": "/provider-routing",
|
|
"destination": "/channels/channel-routing"
|
|
},
|
|
{
|
|
"source": "/concepts/provider-routing",
|
|
"destination": "/channels/channel-routing"
|
|
},
|
|
{
|
|
"source": "/queue",
|
|
"destination": "/concepts/queue"
|
|
},
|
|
{
|
|
"source": "/remote",
|
|
"destination": "/gateway/remote"
|
|
},
|
|
{
|
|
"source": "/remote-gateway-readme",
|
|
"destination": "/gateway/remote-gateway-readme"
|
|
},
|
|
{
|
|
"source": "/rpc",
|
|
"destination": "/reference/rpc"
|
|
},
|
|
{
|
|
"source": "/security",
|
|
"destination": "/gateway/security"
|
|
},
|
|
{
|
|
"source": "/session",
|
|
"destination": "/concepts/session"
|
|
},
|
|
{
|
|
"source": "/session-tool",
|
|
"destination": "/concepts/session-tool"
|
|
},
|
|
{
|
|
"source": "/sessions",
|
|
"destination": "/concepts/session"
|
|
},
|
|
{
|
|
"source": "/setup",
|
|
"destination": "/start/setup"
|
|
},
|
|
{
|
|
"source": "/showcase",
|
|
"destination": "/start/showcase"
|
|
},
|
|
{
|
|
"source": "/signal",
|
|
"destination": "/channels/signal"
|
|
},
|
|
{
|
|
"source": "/skills",
|
|
"destination": "/tools/skills"
|
|
},
|
|
{
|
|
"source": "/skills-config",
|
|
"destination": "/tools/skills-config"
|
|
},
|
|
{
|
|
"source": "/slack",
|
|
"destination": "/channels/slack"
|
|
},
|
|
{
|
|
"source": "/slash-commands",
|
|
"destination": "/tools/slash-commands"
|
|
},
|
|
{
|
|
"source": "/subagents",
|
|
"destination": "/tools/subagents"
|
|
},
|
|
{
|
|
"source": "/tailscale",
|
|
"destination": "/gateway/tailscale"
|
|
},
|
|
{
|
|
"source": "/talk",
|
|
"destination": "/nodes/talk"
|
|
},
|
|
{
|
|
"source": "/telegram",
|
|
"destination": "/channels/telegram"
|
|
},
|
|
{
|
|
"source": "/templates/AGENTS",
|
|
"destination": "/reference/templates/AGENTS"
|
|
},
|
|
{
|
|
"source": "/templates/BOOT",
|
|
"destination": "/reference/templates/BOOT"
|
|
},
|
|
{
|
|
"source": "/templates/BOOTSTRAP",
|
|
"destination": "/reference/templates/BOOTSTRAP"
|
|
},
|
|
{
|
|
"source": "/templates/HEARTBEAT",
|
|
"destination": "/reference/templates/HEARTBEAT"
|
|
},
|
|
{
|
|
"source": "/templates/IDENTITY",
|
|
"destination": "/reference/templates/IDENTITY"
|
|
},
|
|
{
|
|
"source": "/templates/SOUL",
|
|
"destination": "/reference/templates/SOUL"
|
|
},
|
|
{
|
|
"source": "/templates/TOOLS",
|
|
"destination": "/reference/templates/TOOLS"
|
|
},
|
|
{
|
|
"source": "/templates/USER",
|
|
"destination": "/reference/templates/USER"
|
|
},
|
|
{
|
|
"source": "/test",
|
|
"destination": "/reference/test"
|
|
},
|
|
{
|
|
"source": "/thinking",
|
|
"destination": "/tools/thinking"
|
|
},
|
|
{
|
|
"source": "/timezone",
|
|
"destination": "/concepts/timezone"
|
|
},
|
|
{
|
|
"source": "/troubleshooting",
|
|
"destination": "/help/troubleshooting"
|
|
},
|
|
{
|
|
"source": "/tui",
|
|
"destination": "/web/tui"
|
|
},
|
|
{
|
|
"source": "/typebox",
|
|
"destination": "/concepts/typebox"
|
|
},
|
|
{
|
|
"source": "/updating",
|
|
"destination": "/install/updating"
|
|
},
|
|
{
|
|
"source": "/voicewake",
|
|
"destination": "/nodes/voicewake"
|
|
},
|
|
{
|
|
"source": "/webchat",
|
|
"destination": "/web/webchat"
|
|
},
|
|
{
|
|
"source": "/webhook",
|
|
"destination": "/automation/webhook"
|
|
},
|
|
{
|
|
"source": "/whatsapp",
|
|
"destination": "/channels/whatsapp"
|
|
},
|
|
{
|
|
"source": "/windows",
|
|
"destination": "/platforms/windows"
|
|
},
|
|
{
|
|
"source": "/wizard",
|
|
"destination": "/start/wizard"
|
|
},
|
|
{
|
|
"source": "/start/wizard-cli-flow",
|
|
"destination": "/start/wizard-cli-reference"
|
|
},
|
|
{
|
|
"source": "/start/wizard-cli-auth",
|
|
"destination": "/start/wizard-cli-reference"
|
|
},
|
|
{
|
|
"source": "/start/wizard-cli-outputs",
|
|
"destination": "/start/wizard-cli-reference"
|
|
},
|
|
{
|
|
"source": "/start/faq",
|
|
"destination": "/help/faq"
|
|
},
|
|
{
|
|
"source": "/oauth",
|
|
"destination": "/concepts/oauth"
|
|
},
|
|
{
|
|
"source": "/plugin",
|
|
"destination": "/tools/plugin"
|
|
},
|
|
{
|
|
"source": "/plugins",
|
|
"destination": "/tools/plugin"
|
|
},
|
|
{
|
|
"source": "/railway",
|
|
"destination": "/install/railway"
|
|
},
|
|
{
|
|
"source": "/northflank",
|
|
"destination": "/install/northflank"
|
|
},
|
|
{
|
|
"source": "/render",
|
|
"destination": "/install/render"
|
|
},
|
|
{
|
|
"source": "/gcp",
|
|
"destination": "/install/gcp"
|
|
},
|
|
{
|
|
"source": "/azure",
|
|
"destination": "/install/azure"
|
|
},
|
|
{
|
|
"source": "/platforms/fly",
|
|
"destination": "/install/fly"
|
|
},
|
|
{
|
|
"source": "/platforms/hetzner",
|
|
"destination": "/install/hetzner"
|
|
},
|
|
{
|
|
"source": "/platforms/gcp",
|
|
"destination": "/install/gcp"
|
|
},
|
|
{
|
|
"source": "/platforms/azure",
|
|
"destination": "/install/azure"
|
|
},
|
|
{
|
|
"source": "/platforms/macos-vm",
|
|
"destination": "/install/macos-vm"
|
|
},
|
|
{
|
|
"source": "/platforms/exe-dev",
|
|
"destination": "/install/exe-dev"
|
|
},
|
|
{
|
|
"source": "/platforms/railway",
|
|
"destination": "/install/railway"
|
|
},
|
|
{
|
|
"source": "/platforms/render",
|
|
"destination": "/install/render"
|
|
},
|
|
{
|
|
"source": "/platforms/northflank",
|
|
"destination": "/install/northflank"
|
|
},
|
|
{
|
|
"source": "/gateway/trusted-proxy",
|
|
"destination": "/gateway/trusted-proxy-auth"
|
|
}
|
|
],
|
|
"navigation": {
|
|
"languages": [
|
|
{
|
|
"language": "en",
|
|
"tabs": [
|
|
{
|
|
"tab": "Get started",
|
|
"groups": [
|
|
{
|
|
"group": "Overview",
|
|
"pages": ["index", "start/showcase", "concepts/features"]
|
|
},
|
|
{
|
|
"group": "First steps",
|
|
"pages": [
|
|
"start/getting-started",
|
|
"start/onboarding-overview",
|
|
"start/wizard",
|
|
"start/onboarding"
|
|
]
|
|
},
|
|
{
|
|
"group": "Guides",
|
|
"pages": [
|
|
"start/openclaw",
|
|
"start/wizard-cli-reference",
|
|
"start/wizard-cli-automation"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Install",
|
|
"groups": [
|
|
{
|
|
"group": "Install overview",
|
|
"pages": ["install/index", "install/installer", "install/node"]
|
|
},
|
|
{
|
|
"group": "Containers",
|
|
"pages": [
|
|
"install/ansible",
|
|
"install/bun",
|
|
"install/clawdock",
|
|
"install/docker",
|
|
"install/nix",
|
|
"install/podman"
|
|
]
|
|
},
|
|
{
|
|
"group": "Hosting",
|
|
"pages": [
|
|
"install/azure",
|
|
"install/digitalocean",
|
|
"install/docker-vm-runtime",
|
|
"install/exe-dev",
|
|
"install/fly",
|
|
"install/gcp",
|
|
"install/hetzner",
|
|
"install/kubernetes",
|
|
"vps",
|
|
"install/macos-vm",
|
|
"install/northflank",
|
|
"install/oracle",
|
|
"install/railway",
|
|
"install/raspberry-pi",
|
|
"install/render"
|
|
]
|
|
},
|
|
{
|
|
"group": "Maintenance",
|
|
"pages": [
|
|
"install/updating",
|
|
"install/migrating",
|
|
"install/migrating-matrix",
|
|
"install/uninstall",
|
|
"install/development-channels"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Channels",
|
|
"groups": [
|
|
{
|
|
"group": "Overview",
|
|
"pages": ["channels/index"]
|
|
},
|
|
{
|
|
"group": "Messaging platforms",
|
|
"pages": [
|
|
"channels/bluebubbles",
|
|
"channels/discord",
|
|
"channels/feishu",
|
|
"channels/googlechat",
|
|
"channels/imessage",
|
|
"channels/irc",
|
|
"channels/line",
|
|
"channels/matrix",
|
|
"channels/mattermost",
|
|
"channels/msteams",
|
|
"channels/nextcloud-talk",
|
|
"channels/nostr",
|
|
"channels/qqbot",
|
|
"channels/signal",
|
|
"channels/slack",
|
|
"channels/synology-chat",
|
|
"channels/telegram",
|
|
"channels/tlon",
|
|
"channels/twitch",
|
|
"channels/whatsapp",
|
|
"channels/zalo",
|
|
"channels/zalouser"
|
|
]
|
|
},
|
|
{
|
|
"group": "Configuration",
|
|
"pages": [
|
|
"channels/pairing",
|
|
"channels/group-messages",
|
|
"channels/groups",
|
|
"channels/broadcast-groups",
|
|
"channels/channel-routing",
|
|
"channels/location",
|
|
"channels/troubleshooting"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Agents",
|
|
"groups": [
|
|
{
|
|
"group": "Fundamentals",
|
|
"pages": [
|
|
"concepts/architecture",
|
|
"concepts/agent",
|
|
"concepts/agent-loop",
|
|
"concepts/system-prompt",
|
|
"concepts/context",
|
|
"concepts/context-engine",
|
|
"concepts/agent-workspace",
|
|
"concepts/oauth",
|
|
"start/bootstrapping"
|
|
]
|
|
},
|
|
{
|
|
"group": "Sessions and memory",
|
|
"pages": [
|
|
"concepts/session",
|
|
"concepts/session-pruning",
|
|
"concepts/session-tool",
|
|
{
|
|
"group": "Memory",
|
|
"pages": [
|
|
"concepts/memory",
|
|
"concepts/memory-builtin",
|
|
"concepts/memory-qmd",
|
|
"concepts/memory-honcho",
|
|
"concepts/memory-search"
|
|
]
|
|
},
|
|
"concepts/compaction"
|
|
]
|
|
},
|
|
{
|
|
"group": "Multi-agent",
|
|
"pages": [
|
|
"concepts/multi-agent",
|
|
"concepts/presence",
|
|
"concepts/delegate-architecture"
|
|
]
|
|
},
|
|
{
|
|
"group": "Messages and delivery",
|
|
"pages": [
|
|
"concepts/messages",
|
|
"concepts/streaming",
|
|
"concepts/retry",
|
|
"concepts/queue"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Tools & Plugins",
|
|
"groups": [
|
|
{
|
|
"group": "Overview",
|
|
"pages": ["tools/index"]
|
|
},
|
|
{
|
|
"group": "Plugins",
|
|
"pages": [
|
|
"tools/plugin",
|
|
"plugins/community",
|
|
"plugins/bundles",
|
|
"plugins/voice-call",
|
|
{
|
|
"group": "Building Plugins",
|
|
"pages": [
|
|
"plugins/building-plugins",
|
|
"plugins/sdk-channel-plugins",
|
|
"plugins/sdk-provider-plugins",
|
|
"plugins/sdk-migration"
|
|
]
|
|
},
|
|
{
|
|
"group": "SDK Reference",
|
|
"pages": [
|
|
"plugins/sdk-overview",
|
|
"plugins/sdk-entrypoints",
|
|
"plugins/sdk-runtime",
|
|
"plugins/sdk-setup",
|
|
"plugins/sdk-testing",
|
|
"plugins/manifest",
|
|
"plugins/architecture"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"group": "Skills",
|
|
"pages": [
|
|
"tools/skills",
|
|
"tools/creating-skills",
|
|
"tools/skills-config",
|
|
"tools/slash-commands",
|
|
"tools/clawhub",
|
|
"prose"
|
|
]
|
|
},
|
|
{
|
|
"group": "Automation",
|
|
"pages": [
|
|
"automation/index",
|
|
"automation/hooks",
|
|
"automation/standing-orders",
|
|
"automation/cron-jobs",
|
|
"automation/cron-vs-heartbeat",
|
|
"automation/tasks",
|
|
"automation/clawflow",
|
|
"automation/troubleshooting",
|
|
"automation/webhook",
|
|
"automation/gmail-pubsub",
|
|
"automation/poll",
|
|
"automation/auth-monitoring"
|
|
]
|
|
},
|
|
{
|
|
"group": "Tools",
|
|
"pages": [
|
|
"tools/apply-patch",
|
|
{
|
|
"group": "Web Browser",
|
|
"pages": [
|
|
"tools/browser",
|
|
"tools/browser-login",
|
|
"tools/browser-linux-troubleshooting",
|
|
"tools/browser-wsl2-windows-remote-cdp-troubleshooting"
|
|
]
|
|
},
|
|
{
|
|
"group": "Web Tools",
|
|
"pages": [
|
|
"tools/web-fetch",
|
|
"tools/web",
|
|
"tools/brave-search",
|
|
"tools/duckduckgo-search",
|
|
"tools/exa-search",
|
|
"tools/firecrawl",
|
|
"tools/gemini-search",
|
|
"tools/grok-search",
|
|
"tools/kimi-search",
|
|
"tools/perplexity-search",
|
|
"tools/tavily"
|
|
]
|
|
},
|
|
"tools/btw",
|
|
"tools/code-execution",
|
|
"tools/diffs",
|
|
"tools/elevated",
|
|
"tools/exec",
|
|
"tools/exec-approvals",
|
|
"tools/image-generation",
|
|
"tools/llm-task",
|
|
"tools/lobster",
|
|
"tools/loop-detection",
|
|
"tools/pdf",
|
|
"tools/reactions",
|
|
"tools/thinking"
|
|
]
|
|
},
|
|
{
|
|
"group": "Agent coordination",
|
|
"pages": [
|
|
"tools/agent-send",
|
|
"tools/subagents",
|
|
"tools/acp-agents",
|
|
"tools/multi-agent-sandbox-tools"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Models",
|
|
"groups": [
|
|
{
|
|
"group": "Overview",
|
|
"pages": ["providers/index", "providers/models"]
|
|
},
|
|
{
|
|
"group": "Concepts and configuration",
|
|
"pages": ["concepts/models", "concepts/model-providers", "concepts/model-failover"]
|
|
},
|
|
{
|
|
"group": "Providers",
|
|
"pages": [
|
|
"providers/anthropic",
|
|
"providers/bedrock",
|
|
"providers/claude-max-api-proxy",
|
|
"providers/cloudflare-ai-gateway",
|
|
"providers/deepgram",
|
|
"providers/deepseek",
|
|
"providers/github-copilot",
|
|
"providers/glm",
|
|
"providers/google",
|
|
"providers/groq",
|
|
"providers/huggingface",
|
|
"providers/kilocode",
|
|
"providers/litellm",
|
|
"providers/minimax",
|
|
"providers/mistral",
|
|
"providers/moonshot",
|
|
"providers/nvidia",
|
|
"providers/ollama",
|
|
"providers/openai",
|
|
"providers/opencode",
|
|
"providers/opencode-go",
|
|
"providers/openrouter",
|
|
"providers/perplexity-provider",
|
|
"providers/qianfan",
|
|
"providers/qwen_modelstudio",
|
|
"providers/qwen",
|
|
"providers/sglang",
|
|
"providers/synthetic",
|
|
"providers/together",
|
|
"providers/venice",
|
|
"providers/vercel-ai-gateway",
|
|
"providers/vllm",
|
|
"providers/volcengine",
|
|
"providers/xai",
|
|
"providers/xiaomi",
|
|
"providers/zai"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Platforms",
|
|
"groups": [
|
|
{
|
|
"group": "Platforms overview",
|
|
"pages": [
|
|
"platforms/index",
|
|
"platforms/macos",
|
|
"platforms/linux",
|
|
"platforms/windows",
|
|
"platforms/android",
|
|
"platforms/ios"
|
|
]
|
|
},
|
|
{
|
|
"group": "macOS companion app",
|
|
"pages": [
|
|
"platforms/mac/dev-setup",
|
|
"platforms/mac/menu-bar",
|
|
"platforms/mac/voicewake",
|
|
"platforms/mac/voice-overlay",
|
|
"platforms/mac/webchat",
|
|
"platforms/mac/canvas",
|
|
"platforms/mac/child-process",
|
|
"platforms/mac/health",
|
|
"platforms/mac/icon",
|
|
"platforms/mac/logging",
|
|
"platforms/mac/permissions",
|
|
"platforms/mac/remote",
|
|
"platforms/mac/signing",
|
|
"platforms/mac/bundled-gateway",
|
|
"platforms/mac/xpc",
|
|
"platforms/mac/skills",
|
|
"platforms/mac/peekaboo"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Gateway & Ops",
|
|
"groups": [
|
|
{
|
|
"group": "Gateway",
|
|
"pages": [
|
|
"gateway/index",
|
|
{
|
|
"group": "Configuration and operations",
|
|
"pages": [
|
|
"gateway/configuration",
|
|
"gateway/configuration-reference",
|
|
"gateway/configuration-examples",
|
|
"gateway/authentication",
|
|
"auth-credential-semantics",
|
|
"gateway/secrets",
|
|
"gateway/secrets-plan-contract",
|
|
"gateway/trusted-proxy-auth",
|
|
"gateway/health",
|
|
"gateway/heartbeat",
|
|
"gateway/doctor",
|
|
"gateway/logging",
|
|
"logging",
|
|
"gateway/gateway-lock",
|
|
"gateway/background-process",
|
|
"gateway/multiple-gateways",
|
|
"gateway/troubleshooting"
|
|
]
|
|
},
|
|
{
|
|
"group": "Security and sandboxing",
|
|
"pages": [
|
|
"gateway/security/index",
|
|
"gateway/sandboxing",
|
|
"gateway/openshell",
|
|
"gateway/sandbox-vs-tool-policy-vs-elevated"
|
|
]
|
|
},
|
|
{
|
|
"group": "Protocols and APIs",
|
|
"pages": [
|
|
"gateway/protocol",
|
|
"gateway/bridge-protocol",
|
|
"gateway/openai-http-api",
|
|
"gateway/openresponses-http-api",
|
|
"gateway/tools-invoke-http-api",
|
|
"gateway/cli-backends",
|
|
"gateway/local-models"
|
|
]
|
|
},
|
|
{
|
|
"group": "Networking and discovery",
|
|
"pages": [
|
|
"network",
|
|
"gateway/network-model",
|
|
"gateway/pairing",
|
|
"gateway/discovery",
|
|
"gateway/bonjour"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"group": "Remote access",
|
|
"pages": ["gateway/remote", "gateway/remote-gateway-readme", "gateway/tailscale"]
|
|
},
|
|
{
|
|
"group": "Security",
|
|
"pages": [
|
|
"security/formal-verification",
|
|
"security/THREAT-MODEL-ATLAS",
|
|
"security/CONTRIBUTING-THREAT-MODEL"
|
|
]
|
|
},
|
|
{
|
|
"group": "Nodes and media",
|
|
"pages": [
|
|
"nodes/index",
|
|
"nodes/troubleshooting",
|
|
{
|
|
"group": "Media capabilities",
|
|
"pages": [
|
|
"nodes/media-understanding",
|
|
"nodes/images",
|
|
"nodes/audio",
|
|
"nodes/camera",
|
|
"tools/tts"
|
|
]
|
|
},
|
|
{
|
|
"group": "Node features",
|
|
"pages": ["nodes/talk", "nodes/voicewake", "nodes/location-command"]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"group": "Web interfaces",
|
|
"pages": ["web/index", "web/control-ui", "web/dashboard", "web/webchat", "web/tui"]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Reference",
|
|
"groups": [
|
|
{
|
|
"group": "CLI commands",
|
|
"pages": [
|
|
"cli/index",
|
|
{
|
|
"group": "Gateway and service",
|
|
"pages": [
|
|
"cli/backup",
|
|
"cli/daemon",
|
|
"cli/doctor",
|
|
"cli/gateway",
|
|
"cli/health",
|
|
"cli/logs",
|
|
"cli/onboard",
|
|
"cli/reset",
|
|
"cli/secrets",
|
|
"cli/security",
|
|
"cli/setup",
|
|
"cli/status",
|
|
"cli/uninstall",
|
|
"cli/update"
|
|
]
|
|
},
|
|
{
|
|
"group": "Agents and sessions",
|
|
"pages": [
|
|
"cli/agent",
|
|
"cli/agents",
|
|
"cli/hooks",
|
|
"cli/memory",
|
|
"cli/message",
|
|
"cli/models",
|
|
"cli/sessions",
|
|
"cli/system"
|
|
]
|
|
},
|
|
{
|
|
"group": "Channels and messaging",
|
|
"pages": [
|
|
"cli/channels",
|
|
"cli/devices",
|
|
"cli/directory",
|
|
"cli/pairing",
|
|
"cli/qr",
|
|
"cli/voicecall"
|
|
]
|
|
},
|
|
{
|
|
"group": "Tools and execution",
|
|
"pages": [
|
|
"cli/approvals",
|
|
"cli/browser",
|
|
"cli/cron",
|
|
"cli/flows",
|
|
"cli/node",
|
|
"cli/nodes",
|
|
"cli/sandbox"
|
|
]
|
|
},
|
|
{
|
|
"group": "Configuration",
|
|
"pages": ["cli/config", "cli/configure", "cli/webhooks"]
|
|
},
|
|
{
|
|
"group": "Plugins and skills",
|
|
"pages": ["cli/plugins", "cli/skills"]
|
|
},
|
|
{
|
|
"group": "Interfaces",
|
|
"pages": ["cli/dashboard", "cli/tui"]
|
|
},
|
|
{
|
|
"group": "Utility",
|
|
"pages": [
|
|
"cli/acp",
|
|
"cli/clawbot",
|
|
"cli/completion",
|
|
"cli/dns",
|
|
"cli/docs",
|
|
"cli/mcp"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"group": "RPC and API",
|
|
"pages": ["reference/rpc", "reference/device-models"]
|
|
},
|
|
{
|
|
"group": "Templates",
|
|
"pages": [
|
|
"reference/AGENTS.default",
|
|
"reference/templates/AGENTS",
|
|
"reference/templates/BOOT",
|
|
"reference/templates/BOOTSTRAP",
|
|
"reference/templates/HEARTBEAT",
|
|
"reference/templates/IDENTITY",
|
|
"reference/templates/SOUL",
|
|
"reference/templates/TOOLS",
|
|
"reference/templates/USER"
|
|
]
|
|
},
|
|
{
|
|
"group": "Technical reference",
|
|
"pages": [
|
|
"pi",
|
|
"reference/wizard",
|
|
"reference/token-use",
|
|
"reference/secretref-credential-surface",
|
|
"reference/prompt-caching",
|
|
"reference/api-usage-costs",
|
|
"reference/transcript-hygiene",
|
|
"reference/memory-config",
|
|
"date-time"
|
|
]
|
|
},
|
|
{
|
|
"group": "Concept internals",
|
|
"pages": [
|
|
"concepts/typebox",
|
|
"concepts/markdown-formatting",
|
|
"concepts/typing-indicators",
|
|
"concepts/usage-tracking",
|
|
"concepts/timezone"
|
|
]
|
|
},
|
|
{
|
|
"group": "Project",
|
|
"pages": ["reference/credits"]
|
|
},
|
|
{
|
|
"group": "Release policy",
|
|
"pages": ["reference/RELEASING", "reference/test"]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "Help",
|
|
"groups": [
|
|
{
|
|
"group": "Help",
|
|
"pages": ["help/index", "help/troubleshooting", "help/faq"]
|
|
},
|
|
{
|
|
"group": "Community",
|
|
"pages": ["start/lore"]
|
|
},
|
|
{
|
|
"group": "Environment and debugging",
|
|
"pages": [
|
|
"help/environment",
|
|
"help/debugging",
|
|
"help/testing",
|
|
"help/scripts",
|
|
"debug/node-issue",
|
|
"diagnostics/flags"
|
|
]
|
|
},
|
|
{
|
|
"group": "Compaction internals",
|
|
"pages": ["reference/session-management-compaction"]
|
|
},
|
|
{
|
|
"group": "Developer setup",
|
|
"pages": ["start/setup", "pi-dev"]
|
|
},
|
|
{
|
|
"group": "Contributing",
|
|
"pages": ["ci"]
|
|
},
|
|
{
|
|
"group": "Docs meta",
|
|
"pages": ["start/hubs", "start/docs-directory"]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"language": "zh-Hans",
|
|
"tabs": [
|
|
{
|
|
"tab": "快速开始",
|
|
"groups": [
|
|
{
|
|
"group": "首页",
|
|
"pages": ["zh-CN/index"]
|
|
},
|
|
{
|
|
"group": "概览",
|
|
"pages": ["zh-CN/start/showcase"]
|
|
},
|
|
{
|
|
"group": "核心概念",
|
|
"pages": ["zh-CN/concepts/features"]
|
|
},
|
|
{
|
|
"group": "第一步",
|
|
"pages": [
|
|
"zh-CN/start/getting-started",
|
|
"zh-CN/start/wizard",
|
|
"zh-CN/start/onboarding"
|
|
]
|
|
},
|
|
{
|
|
"group": "指南",
|
|
"pages": ["zh-CN/start/openclaw"]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "安装",
|
|
"groups": [
|
|
{
|
|
"group": "安装概览",
|
|
"pages": ["zh-CN/install/index", "zh-CN/install/installer"]
|
|
},
|
|
{
|
|
"group": "安装方式",
|
|
"pages": [
|
|
"zh-CN/install/docker",
|
|
"zh-CN/install/nix",
|
|
"zh-CN/install/ansible",
|
|
"zh-CN/install/bun"
|
|
]
|
|
},
|
|
{
|
|
"group": "维护",
|
|
"pages": [
|
|
"zh-CN/install/updating",
|
|
"zh-CN/install/migrating",
|
|
"zh-CN/install/uninstall"
|
|
]
|
|
},
|
|
{
|
|
"group": "托管与部署",
|
|
"pages": [
|
|
"zh-CN/vps",
|
|
"zh-CN/install/fly",
|
|
"zh-CN/install/hetzner",
|
|
"zh-CN/install/gcp",
|
|
"zh-CN/install/macos-vm",
|
|
"zh-CN/install/exe-dev",
|
|
"zh-CN/install/railway",
|
|
"zh-CN/install/render",
|
|
"zh-CN/install/northflank"
|
|
]
|
|
},
|
|
{
|
|
"group": "高级",
|
|
"pages": ["zh-CN/install/development-channels"]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "消息渠道",
|
|
"groups": [
|
|
{
|
|
"group": "概览",
|
|
"pages": ["zh-CN/channels/index"]
|
|
},
|
|
{
|
|
"group": "消息平台",
|
|
"pages": [
|
|
"zh-CN/channels/bluebubbles",
|
|
"zh-CN/channels/discord",
|
|
"zh-CN/channels/feishu",
|
|
"zh-CN/channels/grammy",
|
|
"zh-CN/channels/googlechat",
|
|
"zh-CN/channels/imessage",
|
|
"zh-CN/channels/line",
|
|
"zh-CN/channels/matrix",
|
|
"zh-CN/channels/mattermost",
|
|
"zh-CN/channels/msteams",
|
|
"zh-CN/channels/nextcloud-talk",
|
|
"zh-CN/channels/nostr",
|
|
"zh-CN/channels/signal",
|
|
"zh-CN/channels/slack",
|
|
"zh-CN/channels/telegram",
|
|
"zh-CN/channels/tlon",
|
|
"zh-CN/channels/twitch",
|
|
"zh-CN/channels/whatsapp",
|
|
"zh-CN/channels/zalo",
|
|
"zh-CN/channels/zalouser"
|
|
]
|
|
},
|
|
{
|
|
"group": "配置",
|
|
"pages": [
|
|
"zh-CN/channels/pairing",
|
|
"zh-CN/channels/group-messages",
|
|
"zh-CN/channels/groups",
|
|
"zh-CN/channels/broadcast-groups",
|
|
"zh-CN/channels/channel-routing",
|
|
"zh-CN/channels/location",
|
|
"zh-CN/channels/troubleshooting"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "代理",
|
|
"groups": [
|
|
{
|
|
"group": "基础",
|
|
"pages": [
|
|
"zh-CN/pi",
|
|
"zh-CN/concepts/architecture",
|
|
"zh-CN/concepts/agent",
|
|
"zh-CN/concepts/agent-loop",
|
|
"zh-CN/concepts/system-prompt",
|
|
"zh-CN/concepts/context",
|
|
"zh-CN/concepts/agent-workspace",
|
|
"zh-CN/concepts/oauth"
|
|
]
|
|
},
|
|
{
|
|
"group": "引导",
|
|
"pages": ["zh-CN/start/bootstrapping"]
|
|
},
|
|
{
|
|
"group": "会话与记忆",
|
|
"pages": [
|
|
"zh-CN/concepts/session",
|
|
"zh-CN/concepts/session-pruning",
|
|
"zh-CN/concepts/session-tool",
|
|
"zh-CN/concepts/memory",
|
|
"zh-CN/concepts/compaction"
|
|
]
|
|
},
|
|
{
|
|
"group": "多代理",
|
|
"pages": ["zh-CN/concepts/multi-agent", "zh-CN/concepts/presence"]
|
|
},
|
|
{
|
|
"group": "消息与投递",
|
|
"pages": [
|
|
"zh-CN/concepts/messages",
|
|
"zh-CN/concepts/streaming",
|
|
"zh-CN/concepts/retry",
|
|
"zh-CN/concepts/queue"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "工具",
|
|
"groups": [
|
|
{
|
|
"group": "概览",
|
|
"pages": ["zh-CN/tools/index"]
|
|
},
|
|
{
|
|
"group": "内置工具",
|
|
"pages": [
|
|
"zh-CN/tools/apply-patch",
|
|
"zh-CN/brave-search",
|
|
"zh-CN/tools/elevated",
|
|
"zh-CN/tools/exec",
|
|
"zh-CN/tools/exec-approvals",
|
|
"zh-CN/tools/firecrawl",
|
|
"zh-CN/tools/llm-task",
|
|
"zh-CN/tools/lobster",
|
|
"zh-CN/perplexity",
|
|
"zh-CN/tools/reactions",
|
|
"zh-CN/tools/thinking",
|
|
"zh-CN/tools/web"
|
|
]
|
|
},
|
|
{
|
|
"group": "浏览器",
|
|
"pages": [
|
|
"zh-CN/tools/browser",
|
|
"zh-CN/tools/browser-login",
|
|
"zh-CN/tools/browser-linux-troubleshooting"
|
|
]
|
|
},
|
|
{
|
|
"group": "代理协作",
|
|
"pages": [
|
|
"zh-CN/tools/agent-send",
|
|
"zh-CN/tools/subagents",
|
|
"zh-CN/tools/multi-agent-sandbox-tools"
|
|
]
|
|
},
|
|
{
|
|
"group": "技能",
|
|
"pages": [
|
|
"zh-CN/tools/creating-skills",
|
|
"zh-CN/tools/slash-commands",
|
|
"zh-CN/tools/skills",
|
|
"zh-CN/tools/skills-config",
|
|
"zh-CN/tools/clawhub",
|
|
"zh-CN/tools/plugin"
|
|
]
|
|
},
|
|
{
|
|
"group": "扩展",
|
|
"pages": [
|
|
"zh-CN/plugins/voice-call",
|
|
"zh-CN/plugins/zalouser",
|
|
"zh-CN/plugins/manifest",
|
|
"zh-CN/plugins/agent-tools",
|
|
"zh-CN/prose"
|
|
]
|
|
},
|
|
{
|
|
"group": "自动化",
|
|
"pages": [
|
|
"zh-CN/automation/hooks",
|
|
"zh-CN/automation/cron-jobs",
|
|
"zh-CN/automation/cron-vs-heartbeat",
|
|
"zh-CN/automation/troubleshooting",
|
|
"zh-CN/automation/webhook",
|
|
"zh-CN/automation/gmail-pubsub",
|
|
"zh-CN/automation/poll",
|
|
"zh-CN/automation/auth-monitoring"
|
|
]
|
|
},
|
|
{
|
|
"group": "媒体与设备",
|
|
"pages": [
|
|
"zh-CN/nodes/index",
|
|
"zh-CN/nodes/troubleshooting",
|
|
"zh-CN/nodes/media-understanding",
|
|
"zh-CN/nodes/images",
|
|
"zh-CN/nodes/audio",
|
|
"zh-CN/nodes/camera",
|
|
"zh-CN/nodes/talk",
|
|
"zh-CN/nodes/voicewake",
|
|
"zh-CN/nodes/location-command",
|
|
"zh-CN/tts"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "模型",
|
|
"groups": [
|
|
{
|
|
"group": "概览",
|
|
"pages": ["zh-CN/providers/index", "zh-CN/providers/models"]
|
|
},
|
|
{
|
|
"group": "模型概念",
|
|
"pages": ["zh-CN/concepts/models"]
|
|
},
|
|
{
|
|
"group": "配置",
|
|
"pages": ["zh-CN/concepts/model-providers", "zh-CN/concepts/model-failover"]
|
|
},
|
|
{
|
|
"group": "提供商",
|
|
"pages": [
|
|
"zh-CN/providers/anthropic",
|
|
"zh-CN/providers/bedrock",
|
|
"zh-CN/providers/claude-max-api-proxy",
|
|
"zh-CN/providers/deepgram",
|
|
"zh-CN/providers/github-copilot",
|
|
"zh-CN/providers/glm",
|
|
"zh-CN/providers/moonshot",
|
|
"zh-CN/providers/minimax",
|
|
"zh-CN/providers/opencode",
|
|
"zh-CN/providers/ollama",
|
|
"zh-CN/providers/openai",
|
|
"zh-CN/providers/openrouter",
|
|
"zh-CN/providers/qianfan",
|
|
"zh-CN/providers/qwen",
|
|
"zh-CN/providers/synthetic",
|
|
"zh-CN/providers/venice",
|
|
"zh-CN/providers/vercel-ai-gateway",
|
|
"zh-CN/providers/xiaomi",
|
|
"zh-CN/providers/zai"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "平台",
|
|
"groups": [
|
|
{
|
|
"group": "平台概览",
|
|
"pages": [
|
|
"zh-CN/platforms/index",
|
|
"zh-CN/platforms/macos",
|
|
"zh-CN/platforms/linux",
|
|
"zh-CN/platforms/windows",
|
|
"zh-CN/platforms/android",
|
|
"zh-CN/platforms/ios",
|
|
"zh-CN/platforms/digitalocean",
|
|
"zh-CN/platforms/oracle",
|
|
"zh-CN/platforms/raspberry-pi"
|
|
]
|
|
},
|
|
{
|
|
"group": "macOS 配套应用",
|
|
"pages": [
|
|
"zh-CN/platforms/mac/dev-setup",
|
|
"zh-CN/platforms/mac/menu-bar",
|
|
"zh-CN/platforms/mac/voicewake",
|
|
"zh-CN/platforms/mac/voice-overlay",
|
|
"zh-CN/platforms/mac/webchat",
|
|
"zh-CN/platforms/mac/canvas",
|
|
"zh-CN/platforms/mac/child-process",
|
|
"zh-CN/platforms/mac/health",
|
|
"zh-CN/platforms/mac/icon",
|
|
"zh-CN/platforms/mac/logging",
|
|
"zh-CN/platforms/mac/permissions",
|
|
"zh-CN/platforms/mac/remote",
|
|
"zh-CN/platforms/mac/signing",
|
|
"zh-CN/platforms/mac/bundled-gateway",
|
|
"zh-CN/platforms/mac/xpc",
|
|
"zh-CN/platforms/mac/skills",
|
|
"zh-CN/platforms/mac/peekaboo"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "网关与运维",
|
|
"groups": [
|
|
{
|
|
"group": "网关",
|
|
"pages": [
|
|
"zh-CN/gateway/index",
|
|
{
|
|
"group": "配置与运维",
|
|
"pages": [
|
|
"zh-CN/gateway/configuration",
|
|
"zh-CN/gateway/configuration-examples",
|
|
"zh-CN/gateway/authentication",
|
|
"zh-CN/gateway/health",
|
|
"zh-CN/gateway/heartbeat",
|
|
"zh-CN/gateway/doctor",
|
|
"zh-CN/gateway/logging",
|
|
"zh-CN/gateway/gateway-lock",
|
|
"zh-CN/gateway/background-process",
|
|
"zh-CN/gateway/multiple-gateways",
|
|
"zh-CN/gateway/troubleshooting"
|
|
]
|
|
},
|
|
{
|
|
"group": "安全与沙箱",
|
|
"pages": [
|
|
"zh-CN/gateway/security/index",
|
|
"zh-CN/gateway/sandboxing",
|
|
"zh-CN/gateway/sandbox-vs-tool-policy-vs-elevated"
|
|
]
|
|
},
|
|
{
|
|
"group": "协议与 API",
|
|
"pages": [
|
|
"zh-CN/gateway/protocol",
|
|
"zh-CN/gateway/bridge-protocol",
|
|
"zh-CN/gateway/openai-http-api",
|
|
"zh-CN/gateway/openresponses-http-api",
|
|
"zh-CN/gateway/tools-invoke-http-api",
|
|
"zh-CN/gateway/cli-backends",
|
|
"zh-CN/gateway/local-models"
|
|
]
|
|
},
|
|
{
|
|
"group": "网络与发现",
|
|
"pages": [
|
|
"zh-CN/gateway/network-model",
|
|
"zh-CN/gateway/pairing",
|
|
"zh-CN/gateway/discovery",
|
|
"zh-CN/gateway/bonjour"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"group": "远程访问",
|
|
"pages": [
|
|
"zh-CN/gateway/remote",
|
|
"zh-CN/gateway/remote-gateway-readme",
|
|
"zh-CN/gateway/tailscale"
|
|
]
|
|
},
|
|
{
|
|
"group": "运维专题",
|
|
"pages": ["zh-CN/network", "zh-CN/logging"]
|
|
},
|
|
{
|
|
"group": "安全",
|
|
"pages": ["zh-CN/security/formal-verification"]
|
|
},
|
|
{
|
|
"group": "Web 界面",
|
|
"pages": [
|
|
"zh-CN/web/index",
|
|
"zh-CN/web/control-ui",
|
|
"zh-CN/web/dashboard",
|
|
"zh-CN/web/webchat",
|
|
"zh-CN/web/tui"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "参考",
|
|
"groups": [
|
|
{
|
|
"group": "CLI 命令",
|
|
"pages": [
|
|
"zh-CN/cli/index",
|
|
"zh-CN/cli/acp",
|
|
"zh-CN/cli/agent",
|
|
"zh-CN/cli/agents",
|
|
"zh-CN/cli/approvals",
|
|
"zh-CN/cli/browser",
|
|
"zh-CN/cli/channels",
|
|
"zh-CN/cli/config",
|
|
"zh-CN/cli/configure",
|
|
"zh-CN/cli/cron",
|
|
"zh-CN/cli/dashboard",
|
|
"zh-CN/cli/devices",
|
|
"zh-CN/cli/directory",
|
|
"zh-CN/cli/dns",
|
|
"zh-CN/cli/docs",
|
|
"zh-CN/cli/doctor",
|
|
"zh-CN/cli/gateway",
|
|
"zh-CN/cli/health",
|
|
"zh-CN/cli/hooks",
|
|
"zh-CN/cli/logs",
|
|
"zh-CN/cli/memory",
|
|
"zh-CN/cli/message",
|
|
"zh-CN/cli/models",
|
|
"zh-CN/cli/node",
|
|
"zh-CN/cli/nodes",
|
|
"zh-CN/cli/onboard",
|
|
"zh-CN/cli/pairing",
|
|
"zh-CN/cli/plugins",
|
|
"zh-CN/cli/reset",
|
|
"zh-CN/cli/sandbox",
|
|
"zh-CN/cli/security",
|
|
"zh-CN/cli/sessions",
|
|
"zh-CN/cli/setup",
|
|
"zh-CN/cli/skills",
|
|
"zh-CN/cli/status",
|
|
"zh-CN/cli/system",
|
|
"zh-CN/cli/tui",
|
|
"zh-CN/cli/uninstall",
|
|
"zh-CN/cli/update",
|
|
"zh-CN/cli/voicecall",
|
|
"zh-CN/cli/webhooks"
|
|
]
|
|
},
|
|
{
|
|
"group": "RPC 与 API",
|
|
"pages": ["zh-CN/reference/rpc", "zh-CN/reference/device-models"]
|
|
},
|
|
{
|
|
"group": "模板",
|
|
"pages": [
|
|
"zh-CN/reference/AGENTS.default",
|
|
"zh-CN/reference/templates/AGENTS",
|
|
"zh-CN/reference/templates/BOOT",
|
|
"zh-CN/reference/templates/BOOTSTRAP",
|
|
"zh-CN/reference/templates/HEARTBEAT",
|
|
"zh-CN/reference/templates/IDENTITY",
|
|
"zh-CN/reference/templates/SOUL",
|
|
"zh-CN/reference/templates/TOOLS",
|
|
"zh-CN/reference/templates/USER"
|
|
]
|
|
},
|
|
{
|
|
"group": "技术参考",
|
|
"pages": [
|
|
"zh-CN/reference/wizard",
|
|
"zh-CN/reference/token-use",
|
|
"zh-CN/reference/api-usage-costs",
|
|
"zh-CN/reference/transcript-hygiene",
|
|
"zh-CN/date-time"
|
|
]
|
|
},
|
|
{
|
|
"group": "概念内部机制",
|
|
"pages": [
|
|
"zh-CN/concepts/typebox",
|
|
"zh-CN/concepts/markdown-formatting",
|
|
"zh-CN/concepts/typing-indicators",
|
|
"zh-CN/concepts/usage-tracking",
|
|
"zh-CN/concepts/timezone"
|
|
]
|
|
},
|
|
{
|
|
"group": "项目",
|
|
"pages": ["zh-CN/reference/credits"]
|
|
},
|
|
{
|
|
"group": "发布策略",
|
|
"pages": ["zh-CN/reference/RELEASING", "zh-CN/reference/test"]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"tab": "帮助",
|
|
"groups": [
|
|
{
|
|
"group": "帮助",
|
|
"pages": ["zh-CN/help/index", "zh-CN/help/troubleshooting", "zh-CN/help/faq"]
|
|
},
|
|
{
|
|
"group": "社区",
|
|
"pages": ["zh-CN/start/lore"]
|
|
},
|
|
{
|
|
"group": "环境与调试",
|
|
"pages": [
|
|
"zh-CN/help/environment",
|
|
"zh-CN/help/debugging",
|
|
"zh-CN/help/testing",
|
|
"zh-CN/help/scripts",
|
|
"zh-CN/debug/node-issue",
|
|
"zh-CN/diagnostics/flags"
|
|
]
|
|
},
|
|
{
|
|
"group": "Node 运行时",
|
|
"pages": ["zh-CN/install/node"]
|
|
},
|
|
{
|
|
"group": "压缩机制内部参考",
|
|
"pages": ["zh-CN/reference/session-management-compaction"]
|
|
},
|
|
{
|
|
"group": "开发者设置",
|
|
"pages": ["zh-CN/start/setup", "zh-CN/pi-dev"]
|
|
},
|
|
{
|
|
"group": "文档元信息",
|
|
"pages": ["zh-CN/start/hubs", "zh-CN/start/docs-directory", "zh-CN/AGENTS"]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"language": "ja",
|
|
"tabs": [
|
|
{
|
|
"tab": "はじめに",
|
|
"groups": [
|
|
{
|
|
"group": "概要",
|
|
"pages": ["ja-JP/index"]
|
|
},
|
|
{
|
|
"group": "初回セットアップ",
|
|
"pages": ["ja-JP/start/getting-started", "ja-JP/start/wizard"]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|