================================================================================
  SindByte MCP Server -- OpenCode CLI Quick Start
  For First-Time Users
================================================================================
Version: 1.9.09  |  Date: 2026-04-19

--------------------------------------------------------------------------------
 1. INSTALL OPENCODE
--------------------------------------------------------------------------------
    npm install -g opencode-ai

--------------------------------------------------------------------------------
 2. START SINDBYTE
--------------------------------------------------------------------------------
    Make sure SindByte is running (check your system tray).
    It must be running BEFORE you start OpenCode.

--------------------------------------------------------------------------------
 3. CHOOSE HOW TO CONNECT
--------------------------------------------------------------------------------

    A) API ENDPOINT -- SindByte is your AI + Tools (easiest)
       URL: http://127.0.0.1:8091/v1

    B) MCP SERVER -- You bring your own AI, SindByte gives you Tools
       URL: http://127.0.0.1:5555/mcp

--------------------------------------------------------------------------------
 4. METHOD A: API ENDPOINT (3 Steps)
--------------------------------------------------------------------------------

 Step 1: Set provider
    opencode config set provider sindbyte-mcp

 Step 2: Pick a model
    opencode config set model sindbyte-mcp/LMDirect

    Other models:
      sindbyte-mcp/LMDirect          -- Fast, no IQ tools
      sindbyte-mcp/LMDirect_Tools    -- Fast + tool calls
      sindbyte-mcp/IQTools_Full      -- Full reasoning pipeline
      sindbyte-mcp/iq/off            -- Same as LMDirect

 Step 3: Start coding
    opencode

--------------------------------------------------------------------------------
 5. METHOD B: MCP SERVER (4 Steps)
--------------------------------------------------------------------------------

 Step 1: Set your AI provider (example: LM Studio)
    opencode config set provider lmstudio
    opencode config set model lmstudio/qwen3.6-35b-a3b

 Step 2: Add SindByte MCP to your config file
    Edit: %USERPROFILE%\.config\opencode\opencode.json

    Add this block inside the root { }:
      "mcp": {
        "sindbyte": {
          "type": "remote",
          "url": "http://127.0.0.1:5555/mcp",
          "enabled": true
        }
      }

 Step 3: Start coding
    opencode

 Step 4: Verify (inside OpenCode)
    opencode mcp list
    --> Should show "sindbyte" as connected

--------------------------------------------------------------------------------
 6. SWITCH BETWEEN METHODS
--------------------------------------------------------------------------------

    To Endpoint mode:
      opencode config set provider sindbyte-mcp
      opencode config set model sindbyte-mcp/LMDirect

    To MCP mode:
      opencode config set provider lmstudio
      opencode config set model lmstudio/qwen3.6-35b-a3b

--------------------------------------------------------------------------------
 7. NEED HELP?
--------------------------------------------------------------------------------

    "Cannot connect"           --> Start SindByte first
    "Model not found"          --> Use exact alias from Section 4
    "No tools showing" (MCP)   --> Run: opencode mcp list
    "Takes too long"           --> Switch to sindbyte-mcp/LMDirect

 For detailed docs, see:
    SindByte_OpenCode_UserGuide.txt
    SindByte_OpenCode_TechnicalReference.txt

================================================================================
  END OF QUICK START
================================================================================
