> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tryliate.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

<div id="install-binary" className="scroll-mt-24 mb-10">
  <h2 className="text-xl font-bold text-black dark:text-white mb-4">1. Install Liate Binary</h2>

  <div className="text-sm text-black/70 dark:text-white/70 mb-4">
    Liate is distributed as a single standalone executable. Download the latest release for your platform and add it to your system PATH.
  </div>

  <div className="rounded-xl overflow-hidden border border-black/10 dark:border-white/10 bg-[#0A0A0A] shadow-lg mb-4">
    <div className="flex items-center justify-between px-4 py-2 border-b border-white/10 bg-white/5">
      <div className="flex items-center gap-2">
        <Terminal className="w-3.5 h-3.5 text-white/50" />

        <span className="text-xs font-mono text-white/50">macOS / Linux</span>
      </div>

      <button className="text-white/50 hover:text-white transition-colors" title="Copy to clipboard">
        <Copy className="w-3.5 h-3.5" />
      </button>
    </div>

    <div className="p-4 overflow-x-auto custom-scrollbar">
      <pre className="text-sm font-mono text-white/90">
        <code>curl -fsSL [https://liate.dev/install.sh](https://liate.dev/install.sh) | bash</code>
      </pre>
    </div>
  </div>
</div>

<div id="init-project" className="scroll-mt-24 mb-10">
  <h2 className="text-xl font-bold text-black dark:text-white mb-4">2. Initialize Project</h2>

  <div className="text-sm text-black/70 dark:text-white/70 mb-4">
    Navigate to your project directory and initialize a new Liate agent environment. This will generate the `liate.json` configuration file.
  </div>

  <div className="rounded-xl overflow-hidden border border-black/10 dark:border-white/10 bg-[#0A0A0A] shadow-lg mb-4">
    <div className="flex items-center justify-between px-4 py-2 border-b border-white/10 bg-white/5">
      <div className="flex items-center gap-2">
        <Terminal className="w-3.5 h-3.5 text-white/50" />

        <span className="text-xs font-mono text-white/50">terminal</span>
      </div>

      <button className="text-white/50 hover:text-white transition-colors" title="Copy to clipboard">
        <Copy className="w-3.5 h-3.5" />
      </button>
    </div>

    <div className="p-4 overflow-x-auto custom-scrollbar">
      <pre className="text-sm font-mono text-white/90">
        <code>liate init --name "my-agent"</code>
      </pre>
    </div>
  </div>
</div>

<div id="run-agent" className="scroll-mt-24 mb-10">
  <h2 className="text-xl font-bold text-black dark:text-white mb-4">3. Run Sovereign Agent</h2>

  <div className="text-sm text-black/70 dark:text-white/70 mb-4">
    Execute your agent using the default Sarvam AI endpoints. Ensure your `LIATE_API_KEY` is exported in your environment.
  </div>

  <div className="rounded-xl overflow-hidden border border-black/10 dark:border-white/10 bg-[#0A0A0A] shadow-lg mb-4">
    <div className="flex items-center justify-between px-4 py-2 border-b border-white/10 bg-white/5">
      <div className="flex items-center gap-2">
        <Terminal className="w-3.5 h-3.5 text-white/50" />

        <span className="text-xs font-mono text-white/50">terminal</span>
      </div>

      <button className="text-white/50 hover:text-white transition-colors" title="Copy to clipboard">
        <Copy className="w-3.5 h-3.5" />
      </button>
    </div>

    <div className="p-4 overflow-x-auto custom-scrollbar">
      <pre className="text-sm font-mono text-white/90">
        <code>liate run --prompt "Analyze system logs and report anomalies"</code>
      </pre>
    </div>
  </div>
</div>
