| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735 |
- {
- "pageTitle": "Claude Code Hub Usage Documentation",
- "pageDescription": "Complete integration guide for Claude Code, Codex, and Droid CLI",
- "skipLinks": {
- "mainContent": "Jump to main content",
- "tableOfContents": "Jump to table of contents"
- },
- "navigation": {
- "tableOfContents": "On this page",
- "tableOfContentsEmpty": "No sections available on this page",
- "quickLinks": "Quick links",
- "backToDashboard": "Back to dashboard",
- "backToTop": "Back to top",
- "documentNavigation": "Document navigation",
- "openTableOfContents": "Open table of contents",
- "pageNavigation": "Page navigation"
- },
- "codeExamples": {
- "label": "Code example - {language}",
- "description": "Click the code block to copy to clipboard"
- },
- "claudeCode": {
- "title": "Claude Code Usage Guide",
- "description": "Claude Code is Anthropic's official AI programming assistant that supports integration through the cch proxy service. This guide will help you complete installation and configuration on different operating systems.",
- "environmentSetup": {
- "title": "Environment Setup: Install Node.js",
- "description": "claude requires Node.js runtime (v18 or higher).",
- "macos": {
- "homebrew": "Method 1: Using Homebrew (recommended)",
- "official": "Method 2: Download from official website",
- "officialSteps": [
- "Visit https://nodejs.org/",
- "Download the LTS version for macOS (v18 or higher required)",
- "Open the downloaded .pkg file and follow the installation wizard"
- ]
- },
- "windows": {
- "official": "Method 1: Download from official website (recommended)",
- "officialSteps": [
- "Visit https://nodejs.org/",
- "Download the LTS version (v18 or higher required)",
- "Double-click the .msi file and follow the installation wizard (keep default settings)"
- ],
- "packageManager": "Method 2: Using package manager",
- "note": "It's recommended to use PowerShell instead of CMD for a better experience"
- },
- "linux": {
- "official": "Method 1: Using official repository (recommended)",
- "packageManager": "Method 2: Using system package manager"
- },
- "verification": {
- "title": "Verify Node.js Installation",
- "description": "After installation, open terminal/command line and run the following commands to verify:",
- "success": "If version numbers are displayed, the installation was successful!",
- "command1": "node --version",
- "command2": "npm --version"
- }
- },
- "installation": {
- "title": "Install claude",
- "nativeInstall": {
- "title": "Native Install (recommended)",
- "description": "Officially recommended installation method with the following advantages:",
- "advantages": [
- "Single executable file, no Node.js dependency",
- "More stable auto-update mechanism",
- "Faster startup speed"
- ],
- "macos": {
- "homebrew": "Method 1: Homebrew (recommended)",
- "autoUpdate": "Auto-update information",
- "autoUpdateText": "Claude Code installed via Homebrew will auto-update outside the brew directory unless explicitly disabled with the DISABLE_AUTOUPDATER environment variable.",
- "curl": "Method 2: curl script",
- "curls": [
- "# Install stable version (default)",
- "curl -fsSL https://claude.ai/install.sh | bash",
- "",
- "# Install latest version",
- "curl -fsSL https://claude.ai/install.sh | bash -s latest",
- "",
- "# Install specific version",
- "curl -fsSL https://claude.ai/install.sh | bash -s 1.0.58"
- ]
- },
- "linux": {
- "curl": "curl script installation",
- "curls": [
- "# Install stable version (default)",
- "curl -fsSL https://claude.ai/install.sh | bash",
- "",
- "# Install latest version",
- "curl -fsSL https://claude.ai/install.sh | bash -s latest",
- "",
- "# Install specific version",
- "curl -fsSL https://claude.ai/install.sh | bash -s 1.0.58"
- ],
- "alpine": "Alpine Linux special notes",
- "alpineText": "Distributions based on musl/uClibc (such as Alpine Linux) need to install additional dependencies:",
- "alpineCode": ["apk add libgcc libstdc++ ripgrep", "export USE_BUILTIN_RIPGREP=0"]
- },
- "windows": {
- "powershell": "Method 1: PowerShell",
- "powershells": [
- "# Install stable version (default)",
- "irm https://claude.ai/install.ps1 | iex",
- "",
- "# Install latest version",
- "& ([scriptblock]::Create((irm https://claude.ai/install.ps1))) latest",
- "",
- "# Install specific version",
- "& ([scriptblock]::Create((irm https://claude.ai/install.ps1))) 1.0.58"
- ],
- "cmd": "Method 2: CMD",
- "cmds": [
- "REM Install stable version (default)",
- "curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd",
- "",
- "REM Install latest version",
- "curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd latest && del install.cmd",
- "",
- "REM Install specific version",
- "curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd 1.0.58 && del install.cmd"
- ]
- },
- "verification": {
- "title": "Verify Installation",
- "description": "After installation, run the following command to verify:",
- "success": "If the version number is displayed, congratulations! Claude Code has been successfully installed.",
- "command": "claude --version"
- },
- "tip": "Tip",
- "tipText": "Before installation, make sure to remove any outdated aliases or symbolic links. Use the claude doctor command to check the installation type and version."
- },
- "npmInstall": {
- "title": "NPM",
- "description": "Using NPM installation requires Node.js 18 or higher first. Suitable for developers who prefer using NPM package manager.",
- "command": "npm install -g @anthropic-ai/claude-code",
- "warning": "Warning",
- "warningText": "Do NOT use sudo npm install -g, as this may cause permission issues and security risks. If you encounter permission errors, please refer to the NPM official solution.",
- "verification": {
- "title": "Verify Installation",
- "description": "Verify installation",
- "success": "If the version number is displayed, congratulations! Claude Code has been successfully installed."
- },
- "migration": {
- "title": "Migrate to Native Install",
- "description": "If you have already installed globally via NPM, you can use the following command to migrate to Native installation:",
- "command": "claude install",
- "note": "Some users may be automatically migrated to this installation method."
- }
- }
- },
- "configuration": {
- "title": "Connect to cch service",
- "settingsJson": {
- "title": "Method 1: settings.json configuration (recommended)",
- "description": "Configuration file path:",
- "pathNote": "Path explanation",
- "paths": [
- "Windows: C:/Users/your-username/.claude",
- "Linux or macOS: ~/.claude",
- "If the settings.json file does not exist, please create it"
- ],
- "instruction": "Edit the settings.json file and add the following content:",
- "important": "Important note",
- "importantPoints": [
- "Replace your-api-key-here with your actual API key",
- "How to obtain key: Log in to console → API key management → Create key"
- ]
- },
- "envVars": {
- "title": "Method 2: Environment variable configuration",
- "windows": {
- "temporary": "Temporary setting (current session):",
- "permanent": "Permanent setting (user-level):",
- "note": "You need to reopen the PowerShell window for the settings to take effect."
- },
- "unix": {
- "temporary": "Temporary setting (current session):",
- "permanent": "Permanent setting:",
- "permanentNote": "Add to your shell configuration file ({shellConfig}):"
- }
- },
- "verification": {
- "title": "Verify configuration",
- "description": "After configuration, verify that the environment variables are set correctly:",
- "windowsPowerShell": "Execute in PowerShell:",
- "windowsCmd": "Execute in CMD:",
- "expectedOutput": "Expected output example:",
- "note": "Note",
- "noteText": "If the output is empty or shows the variable name itself, it means the environment variable setting failed. Please repeat the steps above."
- }
- },
- "vsCodeExtension": {
- "title": "VS Code Extension Configuration",
- "steps": [
- "Search for and install Claude Code for VS Code in VS Code extensions",
- "Create a config.json file in the ~/.claude directory (if it doesn't exist)",
- "Add the following content:"
- ],
- "configPath": "Configuration file location: {path}",
- "note": "Note",
- "notePoints": [
- "It's config.json, not settings.json",
- "The primaryApiKey field value can be anything as long as it exists"
- ]
- },
- "startup": {
- "title": "Start claude",
- "description": "Run the following command in your project directory:",
- "initNote": "During the first startup, claude will perform initial configuration."
- },
- "commonIssues": {
- "title": "Common questions",
- "commandNotFound": "1. Command not found",
- "commandNotFoundWindows": [
- "Make sure the npm global path (usually C:\\Users\\your-username\\AppData\\Roaming\\npm) has been added to the system PATH",
- "Reopen the PowerShell window"
- ],
- "commandNotFoundUnix": "Check the npm global installation path and add it to PATH (if not already there)",
- "connectionFailed": "2. API connection failed",
- "updateCli": "3. Update claude",
- "updateNote": "Re-run the installation script to update to the latest version."
- }
- },
- "codex": {
- "title": "Codex CLI Usage Guide",
- "description": "Codex is OpenAI's official command-line AI programming assistant that supports integration through the cch proxy. Note: Codex uses OpenAI-compatible format, the endpoint needs to include the /v1 path.",
- "installation": {
- "title": "Install codex",
- "instruction": "Execute:",
- "adminNote": "Run PowerShell as administrator,",
- "verification": "Verify installation:",
- "command": "codex --version"
- },
- "configuration": {
- "title": "Connect to cch service",
- "configFile": {
- "title": "Configuration file setup",
- "steps": [
- "Open file explorer, find the ${configPath} folder (create if it doesn't exist)",
- "Create a config.toml file",
- "Open with text editor and add the following content:"
- ],
- "step4": "Create an auth.json file and add:",
- "important": "Important note",
- "importantPoints": [
- "Replace your-api-key-here with your cch API key",
- "Note: Codex uses OpenAI-compatible format, endpoint includes the /v1 path"
- ]
- },
- "authJson": {
- "title": "Config file method",
- "configTomlDescription": "Create config.toml file (when using auth.json to store the key, env_key field is not required):",
- "note": "Note",
- "noteText": "This method stores the API key in auth.json file, no need to configure env_key field in config.toml."
- },
- "envVars": {
- "title": "Environment variable method",
- "configTomlDescription": "Create config.toml file (when using environment variables, env_key field is required):",
- "windows": {
- "instruction": "Run in PowerShell:",
- "note": "You need to reopen the PowerShell window for the settings to take effect."
- },
- "unix": {
- "instruction": "Set environment variables:"
- }
- }
- },
- "vsCodeExtension": {
- "title": "VS Code Extension Configuration",
- "steps": [
- "Search for and install Codex – OpenAI's coding agent in VS Code extensions",
- "Make sure you have configured config.toml and auth.json according to the steps above",
- "Set the CCH_API_KEY environment variable"
- ],
- "important": "Important",
- "importantText": "env_key can only be an environment variable name (such as CCH_API_KEY), not the complete key. If you directly fill in the key, it will report an error that the token is not found or the token configuration is incorrect."
- },
- "startup": {
- "title": "Start codex",
- "description": "Run the following command in your project directory:",
- "initNote": "During the first startup, codex will perform initial configuration."
- },
- "commonIssues": {
- "title": "Common questions",
- "commandNotFound": "1. Command not found",
- "commandNotFoundWindows": [
- "Make sure the npm global path (usually C:\\Users\\your-username\\AppData\\Roaming\\npm) has been added to the system PATH",
- "Reopen the PowerShell window"
- ],
- "commandNotFoundUnix": "Check the npm global installation path and add it to PATH (if not already there)",
- "connectionFailed": "2. API connection failed",
- "updateCli": "3. Update codex",
- "updateCommand": "npm i -g @openai/codex --registry=https://registry.npmmirror.com"
- }
- },
- "gemini": {
- "title": "Gemini CLI Usage Guide",
- "description": "Gemini CLI is Google's official AI programming assistant command-line tool that supports integration through the cch proxy service. This guide will help you complete installation and configuration on different operating systems.",
- "installation": {
- "title": "Install gemini",
- "instruction": "Make sure you have Node.js 18 or higher installed, then globally install Gemini CLI:",
- "command": "npm install -g @google/gemini-cli",
- "verification": "Verify installation:",
- "verificationCommand": "gemini --version",
- "adminNote": "Run PowerShell as administrator, "
- },
- "configuration": {
- "title": "Connect to cch service",
- "configFile": {
- "title": "Method 1: Configuration File (Recommended)",
- "step1": {
- "title": "Create configuration directory",
- "description": "Gemini CLI configuration files are located in the ~/.gemini/ directory.",
- "macosLinux": "macOS / Linux:",
- "windows": "Windows (PowerShell):"
- },
- "step2": {
- "title": "Create .env configuration file",
- "description": "Create the .env file in the ~/.gemini/ directory:",
- "macosLinuxInstruction": "macOS / Linux:",
- "windowsInstruction": "Windows: Create the .env file in the %USERPROFILE%\\.gemini\\ directory",
- "content": "Add the following content:"
- },
- "step3": {
- "title": "Create settings.json configuration file",
- "description": "Create the settings.json file in the ~/.gemini/ directory:",
- "content": "This configuration file enables IDE integration and sets the authentication method to API Key."
- },
- "parameterNote": "Parameter description",
- "parameters": [
- "GOOGLE_GEMINI_BASE_URL: cch API base URL",
- "GEMINI_API_KEY: Your API key created in the cch console",
- "GEMINI_MODEL: Model to use (default is gemini-2.5-pro)"
- ],
- "important": "Important",
- "importantPoints": [
- "Replace YOUR_API_KEY_HERE with your actual API key",
- "How to obtain the key: Log in to the console → API Key Management → Create Key"
- ]
- },
- "envVars": {
- "title": "Method 2: Environment Variable Configuration",
- "description": "If you only want to use it temporarily, you can configure it via environment variables:",
- "macosLinux": {
- "title": "macOS / Linux:",
- "note": "Environment variables are only valid for the current terminal session. For persistent configuration, use the configuration file method."
- },
- "windows": {
- "powershell": "Windows (PowerShell):",
- "cmd": "Windows (CMD):",
- "note": "Environment variables are only valid for the current terminal session. For persistent configuration, use the configuration file method."
- }
- }
- },
- "startup": {
- "title": "Startup and Verification",
- "startCli": {
- "title": "Start Gemini CLI",
- "description": "Navigate to your project directory and start Gemini CLI:",
- "note": "On first startup, Gemini CLI will read the settings in the configuration file."
- },
- "verification": {
- "title": "Verify Configuration",
- "description": "Try sending a simple request in Gemini CLI to test the connection:",
- "testCommand": "Hello, please help me create a Python hello world program",
- "success": "If Gemini CLI responds normally, the configuration is successful!"
- },
- "agentMode": {
- "title": "Using Agent Mode",
- "description": "Gemini CLI supports Agent Mode, which can automatically plan and execute complex tasks:",
- "command": "gemini --agent",
- "features": "In Agent Mode, Gemini will:",
- "featureList": [
- "Automatically analyze task requirements",
- "Develop execution plans",
- "Execute step by step and verify results",
- "Adjust strategies based on feedback"
- ]
- }
- },
- "commonIssues": {
- "title": "Common Issues",
- "commandNotFound": "1. Command not found",
- "commandNotFoundWindows": [
- "Make sure the npm global path (usually C:\\Users\\your-username\\AppData\\Roaming\\npm) has been added to the system PATH",
- "Reopen the PowerShell window"
- ],
- "commandNotFoundUnix": "Check the npm global installation path and add it to PATH (if not already there)",
- "connectionFailed": "2. API connection failed",
- "connectionSteps": [
- "Check if GEMINI_API_KEY in the environment variables or configuration file is set correctly",
- "Verify if GOOGLE_GEMINI_BASE_URL is correct",
- "Test network connection"
- ],
- "updateCli": "3. Update gemini",
- "updateCommand": "npm install -g @google/gemini-cli"
- }
- },
- "opencode": {
- "title": "OpenCode Usage Guide",
- "description": "OpenCode is a CLI + TUI AI coding agent that runs in your terminal and also provides IDE integrations. You can point OpenCode to cch as a single entry to access Claude, GPT, and Gemini models.",
- "installation": {
- "title": "Install",
- "macos": {
- "description": "On macOS, install OpenCode using one of the following methods:",
- "homebrew": {
- "title": "Option 2: Homebrew",
- "description": "Install via Homebrew:"
- }
- },
- "linux": {
- "description": "On Linux, install OpenCode using one of the following methods:",
- "homebrew": {
- "title": "Option 2: Homebrew",
- "description": "Install via Homebrew:"
- },
- "paru": {
- "title": "Option 5: Paru (Arch Linux)",
- "description": "Install via paru (AUR):"
- }
- },
- "script": {
- "title": "Option 1: Official install script",
- "description": "Run the following command to install the latest version:"
- },
- "npm": {
- "title": "Option 3: npm",
- "description": "Install globally via npm:",
- "note": "Note: Avoid installing opencode-ai via npm mirror registries. Mirror registries may cause missing dependencies; use the official npm registry if you hit issues."
- },
- "bun": {
- "title": "Option 4: Bun",
- "description": "Install globally via Bun:"
- },
- "windows": {
- "description": "On Windows, we recommend a package manager (Chocolatey/Scoop); npm also works:",
- "choco": {
- "title": "Option 1: Chocolatey",
- "description": "Install via Chocolatey:",
- "command": "choco install opencode"
- },
- "scoop": {
- "title": "Option 2: Scoop",
- "description": "Install via Scoop:",
- "command": "scoop bucket add extras\nscoop install extras/opencode"
- },
- "note": "Note: Bun on Windows is still in progress. Use Chocolatey/Scoop/npm, or download a binary from GitHub Releases."
- }
- },
- "configuration": {
- "title": "Connect to cch service",
- "configFile": {
- "title": "Configure opencode.json",
- "path": "Config file path:",
- "instruction": "Edit the file and add the following content (one file covers all models):",
- "important": "Important",
- "importantPoints": [
- "Create an API key in the cch console and set the CCH_API_KEY environment variable",
- "cchClaude/openai use ${resolvedOrigin}/v1; cchGemini uses ${resolvedOrigin}/v1beta",
- "When selecting models, use provider_id/model_id (e.g. openai/gpt-5.2 or cchClaude/claude-sonnet-4-5-20250929)"
- ]
- },
- "modelSelection": {
- "title": "Select a model",
- "description": "After starting OpenCode, use the following command in the TUI to view/select models:",
- "command": "/models"
- }
- },
- "startup": {
- "title": "Start opencode",
- "description": "Run in your project directory:",
- "initNote": "On first launch, opencode loads the config and creates a session."
- },
- "commonIssues": {
- "title": "Common issues",
- "commandNotFound": "1. Command not found",
- "commandNotFoundWindows": [
- "If installed via npm, make sure your global npm bin directory is on PATH",
- "Open a new terminal and try again"
- ],
- "commandNotFoundUnix": "Check the install location and add it to PATH (e.g. ~/.local/bin or npm global bin)",
- "connectionFailed": "2. API connection failed",
- "updateCli": "3. Update opencode"
- }
- },
- "droid": {
- "title": "Droid CLI Usage Guide",
- "description": "Droid is an interactive terminal AI programming assistant developed by Factory AI that supports integration through the cch proxy service. You must register and log in to your Droid official account before use.",
- "installation": {
- "title": "Install droid",
- "linux": {
- "instruction": "Execute:",
- "note": "Linux users need to ensure xdg-utils is installed:",
- "command": "sudo apt-get install xdg-utils"
- },
- "windows": {
- "instruction": "Execute in PowerShell:"
- }
- },
- "configuration": {
- "title": "Connect to cch service",
- "prerequisite": "Prerequisite: Must log in to Droid official account first",
- "prerequisiteSteps": [
- "Run the droid command",
- "Follow the prompts to log in to Factory official account via browser",
- "After successful login, you can continue to configure custom models"
- ],
- "customModels": {
- "title": "Configure custom models",
- "path": "Configuration file path:",
- "instruction": "Edit the configuration file and add the following content:",
- "important": "Important notes",
- "importantPoints": [
- "Replace your-api-key-here with your cch API key",
- "Anthropic format: Use ${resolvedOrigin} (no /v1)",
- "OpenAI format: Use ${resolvedOrigin}/v1 (requires /v1)"
- ]
- },
- "switching": {
- "title": "Switch models",
- "steps": [
- "Restart Droid",
- "Enter the /model command",
- "Select GPT-5-Codex [cch] or Sonnet 4.5 [cch]",
- "Start using!"
- ]
- }
- },
- "startup": {
- "title": "Start droid",
- "description": "Run the following command in your project directory:",
- "initNote": "During the first startup, droid will perform initial configuration."
- },
- "commonIssues": {
- "title": "Common questions",
- "commandNotFound": "1. Command not found",
- "commandNotFoundWindows": [
- "Make sure the npm global path (usually C:\\Users\\your-username\\AppData\\Roaming\\npm) has been added to the system PATH",
- "Reopen the PowerShell window"
- ],
- "commandNotFoundUnix": "Check the npm global installation path and add it to PATH (if not already there)",
- "updateCli": "2. Update droid"
- }
- },
- "commonCommands": {
- "title": "Common commands",
- "description": "After starting Claude Code, you can use the following common commands:",
- "commands": [
- { "command": "/help", "description": "View help information" },
- { "command": "/clear", "description": "Clear chat history and start a new conversation" },
- { "command": "/compact", "description": "Summarize the current conversation" },
- { "command": "/cost", "description": "View the amount spent in the current conversation" },
- { "command": "/model", "description": "Switch models (Droid-specific)" }
- ],
- "moreCommands": "For more commands, see the official documentation"
- },
- "troubleshooting": {
- "title": "General troubleshooting",
- "installationFailed": {
- "title": "Installation failed",
- "steps": [
- "Check if network connection is normal",
- "Make sure you have administrator privileges (Windows) or use sudo (macOS / Linux)",
- "Try using a proxy or mirror source (npm can use the --registry parameter)"
- ]
- },
- "invalidApiKey": {
- "title": "API key is invalid",
- "steps": [
- "Confirm the key has been copied correctly (no extra spaces)",
- "Check if the key is within the validity period",
- "Verify that account permissions are normal",
- "Confirm the correct endpoint format is used (Anthropic no /v1, OpenAI has /v1)"
- ]
- },
- "endpointConfigError": {
- "title": "Endpoint configuration error",
- "points": [
- "Claude Code / Droid Anthropic model: Use ${resolvedOrigin} (no /v1)",
- "Codex / Droid OpenAI model: Use ${resolvedOrigin}/v1 (must include /v1)"
- ]
- }
- },
- "platforms": {
- "macos": "macOS",
- "windows": "Windows",
- "linux": "Linux"
- },
- "placeholders": {
- "windowsUserName": "your-username",
- "shellConfig": {
- "linux": "~/.bashrc",
- "macos": "~/.zshrc"
- },
- "codexVsCodeConfigFiles": "config.toml and auth.json"
- },
- "snippets": {
- "comments": {
- "updateHomebrew": "# Update Homebrew",
- "installNodeJs": "# Install Node.js",
- "usingChocolatey": "# Using Chocolatey",
- "orUsingScoop": "# Or using Scoop",
- "addNodeSourceRepo": "# Add NodeSource repository",
- "ubuntuDebian": "# Ubuntu/Debian",
- "centosRhelFedora": "# CentOS/RHEL/Fedora",
- "addToPathIfMissing": "# Add to PATH (if missing)",
- "checkEnvVar": "# Check environment variable",
- "testNetworkConnection": "# Test network connection"
- }
- },
- "layout": {
- "headerTitle": "Usage Docs",
- "loginConsole": "Log in to console"
- },
- "ui": {
- "mainContent": "Documentation content",
- "main": "main",
- "currentSiteAddress": "Current site address"
- }
- }
|