# yaml-language-server: $schema=https://schema.zeabur.app/template.json
apiVersion: zeabur.com/v1
kind: Template
metadata:
    name: PicoClaw
spec:
    description: |
        PicoClaw is an ultra-lightweight personal AI agent written in Go. Sub-second startup, under 20MB RAM, supports multi-model smart routing, MCP protocol, and integrations with Telegram, Discord, Slack, Matrix, WeChat and more.
    coverImage: https://raw.githubusercontent.com/sipeed/picoclaw/main/assets/launcher-webui.jpg
    icon: https://raw.githubusercontent.com/sipeed/picoclaw/main/assets/logo.webp
    variables:
        - key: PUBLIC_DOMAIN
          type: DOMAIN
          name: Domain
          description: The domain to access PicoClaw Gateway
    tags:
        - AI
        - Tool
    readme: |
        # PicoClaw

        An ultra-lightweight personal AI agent written in Go. Boots in under 1 second, uses less than 20MB of RAM, and runs anywhere — from $10 RISC-V boards to cloud containers.

        ## Features

        - **Multi-model smart routing** — supports OpenAI, Anthropic, Gemini, DeepSeek, and more
        - **MCP (Model Context Protocol)** — extend agent capabilities with external tools
        - **Multi-channel integrations** — Telegram, Discord, Slack, Matrix, WeChat, Feishu, IRC, WhatsApp
        - **Built-in memory** — persistent conversation memory with local SQLite
        - **Sub-agent spawning** — orchestrate multiple agents for complex tasks
        - **Cron scheduling** — automate recurring tasks

        ## Prerequisites

        PicoClaw requires **at least one LLM API key** to function:

        - Recommended: [Zeabur AI Hub](https://zeabur.com/ai-hub?referralCode=futurizerush) — get your API key directly on Zeabur, supports Claude, GPT, Gemini and more
        - Or use [OpenAI](https://platform.openai.com/), [Anthropic](https://console.anthropic.com/), [Google AI](https://aistudio.google.com/), [DeepSeek](https://platform.deepseek.com/), or other providers

        After deployment, add your API key in Zeabur **Service > Variables**:
        - `OPENAI_API_KEY` for OpenAI / Zeabur AI Hub
        - `ANTHROPIC_API_KEY` for Anthropic Claude
        - `GEMINI_API_KEY` for Google Gemini

        ## What You Can Do After Deployment

        1. **Access the Web UI** — open your domain to manage and interact with PicoClaw
        2. **Connect chat channels** — add bot tokens for Telegram, Discord, Slack, etc. in Variables
        3. **Configure MCP servers** — extend capabilities with external tool integrations
        4. **Set up cron jobs** — automate recurring AI tasks

        ## Environment Variables

        | Variable | Description |
        |----------|-------------|
        | `OPENAI_API_KEY` | OpenAI / Zeabur AI Hub API key |
        | `ANTHROPIC_API_KEY` | Anthropic Claude API key |
        | `GEMINI_API_KEY` | Google Gemini API key |
        | `TELEGRAM_BOT_TOKEN` | Telegram bot token (optional) |
        | `DISCORD_BOT_TOKEN` | Discord bot token (optional) |

        ## Important Notes

        - PicoClaw is pre-v1.0 (v0.2.4) — suitable for experimentation, not production-critical workloads
        - At least one LLM API key must be configured for the agent to function
        - The Launcher Web UI is exposed on this domain

        ## License

        MIT — [GitHub](https://github.com/sipeed/picoclaw)
    services:
        - name: picoclaw
          icon: https://raw.githubusercontent.com/sipeed/picoclaw/main/assets/logo.webp
          template: PREBUILT_V2
          spec:
            id: picoclaw
            source:
                image: sipeed/picoclaw:v0.2.4-launcher
                command:
                    - sh
                    - -c
                    - mkdir -p /root/.picoclaw/workspace && [ ! -f /root/.picoclaw/config.json ] && echo '{"version":1,"agents":{"defaults":{"workspace":"/root/.picoclaw/workspace","restrict_to_workspace":true,"max_tokens":32768,"max_tool_iterations":50}},"model_list":[],"gateway":{"host":"0.0.0.0","port":18790,"log_level":"warn"},"tools":{"web":{"enabled":true},"cron":{"enabled":true},"exec":{"enabled":true}},"heartbeat":{"enabled":true,"interval":30}}' > /root/.picoclaw/config.json ; exec picoclaw-launcher -public -no-browser
            ports:
                - id: web
                  port: 18800
                  type: HTTP
            volumes:
                - id: data
                  dir: /root/.picoclaw
            env:
                ANTHROPIC_API_KEY:
                    default: ""
                GEMINI_API_KEY:
                    default: ""
                OPENAI_API_KEY:
                    default: ""
                TZ:
                    default: UTC
            healthCheck:
                type: HTTP
                port: web
                http:
                    path: /
          domainKey: PUBLIC_DOMAIN
localization:
    es-ES:
        description: |
            PicoClaw es un agente personal de IA ultraligero escrito en Go. Arranque en menos de 1 segundo, menos de 20MB de RAM, enrutamiento inteligente multi-modelo, protocolo MCP e integraciones con Telegram, Discord, Slack, Matrix y mas.
        variables:
            - key: PUBLIC_DOMAIN
              type: STRING
              name: Dominio
              description: El dominio para acceder al Gateway de PicoClaw
        readme: |
            # PicoClaw

            Agente personal de IA ultraligero escrito en Go. Arranca en menos de 1 segundo, usa menos de 20MB de RAM, y funciona en cualquier lugar — desde placas RISC-V de $10 hasta contenedores en la nube.

            ## Caracteristicas

            - **Enrutamiento inteligente multi-modelo** — soporta OpenAI, Anthropic, Gemini, DeepSeek y mas
            - **MCP (Model Context Protocol)** — extiende las capacidades del agente con herramientas externas
            - **Integraciones multi-canal** — Telegram, Discord, Slack, Matrix, WeChat, Feishu, IRC, WhatsApp
            - **Memoria integrada** — memoria de conversacion persistente con SQLite local
            - **Sub-agentes** — orquesta multiples agentes para tareas complejas
            - **Programacion de tareas** — automatiza tareas de IA periodicas

            ## Requisitos previos

            PicoClaw requiere **al menos una clave API de LLM** para funcionar:

            - Recomendado: [Zeabur AI Hub](https://zeabur.com/ai-hub?referralCode=futurizerush) — obtene tu API key directamente en Zeabur, compatible con Claude, GPT, Gemini y mas
            - O usa [OpenAI](https://platform.openai.com/), [Anthropic](https://console.anthropic.com/), [Google AI](https://aistudio.google.com/), [DeepSeek](https://platform.deepseek.com/) u otros

            Despues del despliegue, agrega tu API key en Zeabur **Service > Variables**:
            - `OPENAI_API_KEY` — OpenAI / Zeabur AI Hub
            - `ANTHROPIC_API_KEY` — Anthropic Claude
            - `GEMINI_API_KEY` — Google Gemini

            ## Que puedes hacer despues del despliegue

            1. **Acceder al Web UI** — abre tu dominio para gestionar e interactuar con PicoClaw
            2. **Conectar canales de chat** — agrega tokens de bot para Telegram, Discord, Slack, etc. en Variables
            3. **Configurar servidores MCP** — extiende funcionalidades con integraciones de herramientas externas
            4. **Programar tareas** — automatiza tareas de IA periodicas

            ## Notas importantes

            - PicoClaw es pre-v1.0 (v0.2.4) — adecuado para experimentacion, no para cargas de produccion criticas
            - Se requiere al menos una clave API de LLM configurada
            - El Launcher Web UI se expone en este dominio

            ## Licencia

            MIT — [GitHub](https://github.com/sipeed/picoclaw)
    id-ID:
        description: |
            PicoClaw adalah agen AI personal ultra-ringan yang ditulis dalam Go. Boot kurang dari 1 detik, RAM kurang dari 20MB, mendukung routing multi-model cerdas, protokol MCP, dan integrasi Telegram, Discord, Slack, Matrix, dan lainnya.
        variables:
            - key: PUBLIC_DOMAIN
              type: STRING
              name: Domain
              description: Domain untuk mengakses PicoClaw Gateway
        readme: |
            # PicoClaw

            Agen AI personal ultra-ringan yang ditulis dalam Go. Boot kurang dari 1 detik, menggunakan kurang dari 20MB RAM, dan berjalan di mana saja — dari board RISC-V $10 hingga container cloud.

            ## Fitur

            - **Routing multi-model cerdas** — mendukung OpenAI, Anthropic, Gemini, DeepSeek, dan lainnya
            - **MCP (Model Context Protocol)** — perluas kemampuan agen dengan alat eksternal
            - **Integrasi multi-channel** — Telegram, Discord, Slack, Matrix, WeChat, Feishu, IRC, WhatsApp
            - **Memori bawaan** — memori percakapan persisten dengan SQLite lokal
            - **Sub-agen** — orkestrasikan beberapa agen untuk tugas kompleks
            - **Penjadwalan tugas** — otomatisasi tugas AI berkala

            ## Prasyarat

            PicoClaw memerlukan **minimal satu API key LLM** untuk berfungsi:

            - Direkomendasikan: [Zeabur AI Hub](https://zeabur.com/ai-hub?referralCode=futurizerush) — dapatkan API key langsung di Zeabur, mendukung Claude, GPT, Gemini, dan lainnya
            - Atau gunakan [OpenAI](https://platform.openai.com/), [Anthropic](https://console.anthropic.com/), [Google AI](https://aistudio.google.com/), [DeepSeek](https://platform.deepseek.com/), atau lainnya

            Setelah deploy, tambahkan API key di Zeabur **Service > Variables**:
            - `OPENAI_API_KEY` — OpenAI / Zeabur AI Hub
            - `ANTHROPIC_API_KEY` — Anthropic Claude
            - `GEMINI_API_KEY` — Google Gemini

            ## Yang Dapat Dilakukan Setelah Deploy

            1. **Akses Web UI** — buka domain untuk mengelola dan berinteraksi dengan PicoClaw
            2. **Hubungkan channel chat** — tambahkan token bot Telegram, Discord, Slack, dll. di Variables
            3. **Konfigurasi server MCP** — perluas fungsionalitas dengan integrasi alat eksternal
            4. **Atur jadwal tugas** — otomatisasi tugas AI berkala

            ## Catatan Penting

            - PicoClaw masih pre-v1.0 (v0.2.4) — cocok untuk eksperimen, belum untuk beban produksi kritis
            - Minimal satu API key LLM harus dikonfigurasi
            - Launcher Web UI tersedia di domain ini

            ## Lisensi

            MIT — [GitHub](https://github.com/sipeed/picoclaw)
    ja-JP:
        description: |
            PicoClaw はGoで書かれた超軽量パーソナルAIエージェントです。起動1秒未満、メモリ20MB未満、マルチモデルスマートルーティング、MCPプロトコル、Telegram・Discord・Slack・Matrix等の統合をサポート。
        variables:
            - key: PUBLIC_DOMAIN
              type: STRING
              name: ドメイン
              description: PicoClaw Gatewayにアクセスするためのドメイン
        readme: |
            # PicoClaw

            Goで書かれた超軽量パーソナルAIエージェント。起動1秒未満、メモリ20MB未満、10ドルのRISC-Vボードからクラウドコンテナまでどこでも動作。

            ## 機能

            - **マルチモデルスマートルーティング** — OpenAI、Anthropic、Gemini、DeepSeek等に対応
            - **MCP（Model Context Protocol）** — 外部ツールでエージェント機能を拡張
            - **マルチチャンネル統合** — Telegram、Discord、Slack、Matrix、WeChat、Feishu、IRC、WhatsApp
            - **内蔵メモリ** — ローカルSQLiteによる永続的な会話メモリ
            - **サブエージェント** — 複雑なタスクに対して複数エージェントを調整
            - **スケジュール実行** — 定期的なAIタスクを自動化

            ## 前提条件

            PicoClaw は**最低1つのLLM APIキー**が必要です：

            - おすすめ：[Zeabur AI Hub](https://zeabur.com/ai-hub?referralCode=futurizerush) — Zeabur上で直接APIキーを取得、Claude・GPT・Gemini等に対応
            - または[OpenAI](https://platform.openai.com/)、[Anthropic](https://console.anthropic.com/)、[Google AI](https://aistudio.google.com/)、[DeepSeek](https://platform.deepseek.com/)等を使用

            デプロイ後、Zeabur の **Service > Variables** でAPIキーを追加：
            - `OPENAI_API_KEY` — OpenAI / Zeabur AI Hub
            - `ANTHROPIC_API_KEY` — Anthropic Claude
            - `GEMINI_API_KEY` — Google Gemini

            ## デプロイ後にできること

            1. **Web UIにアクセス** — ドメインを開いてPicoClawを管理・操作
            2. **チャットチャンネル接続** — VariablesでTelegram、Discord、Slack等のbotトークンを追加
            3. **MCPサーバー設定** — 外部ツール統合で機能を拡張
            4. **スケジュールタスク設定** — 定期的なAIタスクを自動化

            ## 注意事項

            - PicoClawはpre-v1.0（v0.2.4）のため、実験用途向けで本番環境には不向き
            - 最低1つのLLM APIキーの設定が必要
            - Launcher Web UIはこのドメインで提供

            ## ライセンス

            MIT — [GitHub](https://github.com/sipeed/picoclaw)
    ko-KR:
        description: |
            PicoClaw는 Go로 작성된 초경량 개인 AI 에이전트입니다. 1초 미만 부팅, 20MB 미만 메모리, 다중 모델 스마트 라우팅, MCP 프로토콜, Telegram·Discord·Slack·Matrix 등 채널 통합 지원.
        variables:
            - key: PUBLIC_DOMAIN
              type: STRING
              name: 도메인
              description: PicoClaw Gateway에 접속할 도메인
        readme: |
            # PicoClaw

            Go로 작성된 초경량 개인 AI 에이전트. 1초 미만 부팅, 20MB 미만 메모리, $10 RISC-V 보드부터 클라우드 컨테이너까지 어디서나 실행 가능.

            ## 기능

            - **다중 모델 스마트 라우팅** — OpenAI, Anthropic, Gemini, DeepSeek 등 지원
            - **MCP (Model Context Protocol)** — 외부 도구로 에이전트 기능 확장
            - **다중 채널 통합** — Telegram, Discord, Slack, Matrix, WeChat, Feishu, IRC, WhatsApp
            - **내장 메모리** — 로컬 SQLite 기반 영구 대화 메모리
            - **서브 에이전트** — 복잡한 작업을 위한 다중 에이전트 조율
            - **스케줄 실행** — 정기적인 AI 작업 자동화

            ## 사전 요구사항

            PicoClaw는 **최소 1개의 LLM API 키**가 필요합니다:

            - 추천: [Zeabur AI Hub](https://zeabur.com/ai-hub?referralCode=futurizerush) — Zeabur에서 직접 API 키 발급, Claude·GPT·Gemini 등 지원
            - 또는 [OpenAI](https://platform.openai.com/), [Anthropic](https://console.anthropic.com/), [Google AI](https://aistudio.google.com/), [DeepSeek](https://platform.deepseek.com/) 등 사용

            배포 후 Zeabur의 **Service > Variables**에서 API 키 추가:
            - `OPENAI_API_KEY` — OpenAI / Zeabur AI Hub
            - `ANTHROPIC_API_KEY` — Anthropic Claude
            - `GEMINI_API_KEY` — Google Gemini

            ## 배포 후 할 수 있는 것

            1. **Web UI 접속** — 도메인을 열어 PicoClaw를 관리하고 대화
            2. **채팅 채널 연결** — Variables에서 Telegram, Discord, Slack 등 bot 토큰 추가
            3. **MCP 서버 설정** — 외부 도구 통합으로 기능 확장
            4. **스케줄 작업 설정** — 정기적인 AI 작업 자동화

            ## 주의사항

            - PicoClaw는 pre-v1.0(v0.2.4)으로 실험용이며 프로덕션에는 부적합
            - 최소 1개의 LLM API 키 설정 필요
            - Launcher Web UI는 이 도메인에서 제공

            ## 라이선스

            MIT — [GitHub](https://github.com/sipeed/picoclaw)
    th-TH:
        description: |
            PicoClaw เป็นเอเจนต์ AI ส่วนตัวน้ำหนักเบาพิเศษเขียนด้วย Go บูตไม่ถึง 1 วินาที RAM ไม่ถึง 20MB รองรับ smart routing หลายโมเดล, โปรโตคอล MCP และการเชื่อมต่อ Telegram, Discord, Slack, Matrix และอื่นๆ
        variables:
            - key: PUBLIC_DOMAIN
              type: STRING
              name: โดเมน
              description: โดเมนสำหรับเข้าถึง PicoClaw Gateway
        readme: |
            # PicoClaw

            เอเจนต์ AI ส่วนตัวน้ำหนักเบาพิเศษเขียนด้วย Go บูตไม่ถึง 1 วินาที ใช้ RAM ไม่ถึง 20MB ทำงานได้ทุกที่ ตั้งแต่บอร์ด RISC-V $10 ไปจนถึงคอนเทนเนอร์บนคลาวด์

            ## คุณสมบัติ

            - **Smart routing หลายโมเดล** — รองรับ OpenAI, Anthropic, Gemini, DeepSeek และอื่นๆ
            - **MCP (Model Context Protocol)** — ขยายความสามารถเอเจนต์ด้วยเครื่องมือภายนอก
            - **เชื่อมต่อหลายช่องทาง** — Telegram, Discord, Slack, Matrix, WeChat, Feishu, IRC, WhatsApp
            - **หน่วยความจำในตัว** — หน่วยความจำการสนทนาถาวรด้วย SQLite
            - **ซับเอเจนต์** — ประสานงานหลายเอเจนต์สำหรับงานที่ซับซ้อน
            - **ตั้งเวลาทำงาน** — อัตโนมัติงาน AI ตามกำหนด

            ## ข้อกำหนดเบื้องต้น

            PicoClaw ต้องใช้ **อย่างน้อย 1 API key LLM** จึงจะทำงานได้:

            - แนะนำ: [Zeabur AI Hub](https://zeabur.com/ai-hub?referralCode=futurizerush) — รับ API key ได้โดยตรงบน Zeabur รองรับ Claude, GPT, Gemini และอื่นๆ
            - หรือใช้ [OpenAI](https://platform.openai.com/), [Anthropic](https://console.anthropic.com/), [Google AI](https://aistudio.google.com/), [DeepSeek](https://platform.deepseek.com/) หรืออื่นๆ

            หลังจาก Deploy เพิ่ม API key ที่ Zeabur **Service > Variables**:
            - `OPENAI_API_KEY` — OpenAI / Zeabur AI Hub
            - `ANTHROPIC_API_KEY` — Anthropic Claude
            - `GEMINI_API_KEY` — Google Gemini

            ## สิ่งที่ทำได้หลังจาก Deploy

            1. **เข้าถึง Web UI** — เปิดโดเมนเพื่อจัดการและสนทนากับ PicoClaw
            2. **เชื่อมต่อช่องแชท** — เพิ่ม bot token ของ Telegram, Discord, Slack ฯลฯ ใน Variables
            3. **ตั้งค่า MCP server** — ขยายฟังก์ชันด้วยการเชื่อมต่อเครื่องมือภายนอก
            4. **ตั้งเวลาทำงาน** — อัตโนมัติงาน AI ตามกำหนด

            ## หมายเหตุสำคัญ

            - PicoClaw เป็น pre-v1.0 (v0.2.4) เหมาะสำหรับทดลอง ไม่แนะนำสำหรับ production
            - ต้องตั้งค่าอย่างน้อย 1 API key LLM
            - Launcher Web UI เข้าถึงได้ผ่านโดเมนนี้

            ## สัญญาอนุญาต

            MIT — [GitHub](https://github.com/sipeed/picoclaw)
    zh-CN:
        description: |
            PicoClaw 是用 Go 语言写的超轻量个人 AI Agent。启动不到 1 秒、内存不到 20MB，支持多模型智能路由、MCP 协议，以及 Telegram、Discord、Slack、Matrix、微信等频道集成。
        variables:
            - key: PUBLIC_DOMAIN
              type: STRING
              name: 域名
              description: 访问 PicoClaw Gateway 的域名
        readme: |
            # PicoClaw

            用 Go 语言写的超轻量个人 AI Agent。启动不到 1 秒、内存不到 20MB，从 10 美元的 RISC-V 开发板到云端容器都能跑。

            ## 功能特色

            - **多模型智能路由** — 支持 OpenAI、Anthropic、Gemini、DeepSeek 等
            - **MCP（Model Context Protocol）** — 通过外部工具扩展 Agent 能力
            - **多频道集成** — Telegram、Discord、Slack、Matrix、微信、飞书、IRC、WhatsApp
            - **内建记忆** — 使用本地 SQLite 的持久化对话记忆
            - **子 Agent 调度** — 协调多个 Agent 处理复杂任务
            - **定时任务** — 自动化定期 AI 工作

            ## 前置需求

            PicoClaw 需要**至少一个 LLM API Key** 才能运作：

            - 推荐使用 [Zeabur AI Hub](https://zeabur.com/ai-hub?referralCode=futurizerush) — 直接在 Zeabur 平台获取，支持 Claude、GPT、Gemini 等模型
            - 或使用 [OpenAI](https://platform.openai.com/)、[Anthropic](https://console.anthropic.com/)、[Google AI](https://aistudio.google.com/)、[DeepSeek](https://platform.deepseek.com/) 等服务

            部署后，在 Zeabur 的 **Service > Variables** 中加入 API Key：
            - `OPENAI_API_KEY` — OpenAI / Zeabur AI Hub
            - `ANTHROPIC_API_KEY` — Anthropic Claude
            - `GEMINI_API_KEY` — Google Gemini

            ## 部署后可以做什么

            1. **访问 Web UI** — 打开域名管理并与 PicoClaw 交互
            2. **连接聊天频道** — 在 Variables 中加入 Telegram、Discord、Slack 等 bot token
            3. **配置 MCP 服务器** — 通过外部工具集成扩展功能
            4. **创建定时任务** — 自动化定期 AI 工作

            ## 注意事项

            - PicoClaw 目前为 pre-v1.0（v0.2.4），适合实验用途，不建议用于生产环境
            - 至少需要配置一个 LLM API Key 才能运作
            - Launcher Web UI 通过此域名提供访问

            ## 授权

            MIT — [GitHub](https://github.com/sipeed/picoclaw)
    zh-TW:
        description: |
            PicoClaw 是用 Go 語言寫的超輕量個人 AI Agent。啟動不到 1 秒、記憶體不到 20MB，支援多模型智慧路由、MCP 協定，以及 Telegram、Discord、Slack、Matrix、微信等頻道整合。
        variables:
            - key: PUBLIC_DOMAIN
              type: STRING
              name: 網域
              description: 存取 PicoClaw Gateway 的網域
        readme: |
            # PicoClaw

            用 Go 語言寫的超輕量個人 AI Agent。啟動不到 1 秒、記憶體不到 20MB，從 10 美元的 RISC-V 開發板到雲端容器都能跑。

            ## 功能特色

            - **多模型智慧路由** — 支援 OpenAI、Anthropic、Gemini、DeepSeek 等
            - **MCP（Model Context Protocol）** — 透過外部工具擴展 Agent 能力
            - **多頻道整合** — Telegram、Discord、Slack、Matrix、微信、飛書、IRC、WhatsApp
            - **內建記憶** — 使用本機 SQLite 的持久化對話記憶
            - **子 Agent 調度** — 協調多個 Agent 處理複雜任務
            - **排程任務** — 自動化定期 AI 工作

            ## 前置需求

            PicoClaw 需要**至少一個 LLM API Key** 才能運作：

            - 推薦使用 [Zeabur AI Hub](https://zeabur.com/ai-hub?referralCode=futurizerush) — 直接在 Zeabur 平台取得，支援 Claude、GPT、Gemini 等模型
            - 或使用 [OpenAI](https://platform.openai.com/)、[Anthropic](https://console.anthropic.com/)、[Google AI](https://aistudio.google.com/)、[DeepSeek](https://platform.deepseek.com/) 等服務

            部署後，在 Zeabur 的 **Service > Variables** 中加入 API Key：
            - `OPENAI_API_KEY` — OpenAI / Zeabur AI Hub
            - `ANTHROPIC_API_KEY` — Anthropic Claude
            - `GEMINI_API_KEY` — Google Gemini

            ## 部署後可以做什麼

            1. **存取 Web UI** — 開啟網域管理並與 PicoClaw 互動
            2. **連接聊天頻道** — 在 Variables 中加入 Telegram、Discord、Slack 等 bot token
            3. **設定 MCP 伺服器** — 透過外部工具整合擴展功能
            4. **建立排程任務** — 自動化定期 AI 工作

            ## 注意事項

            - PicoClaw 目前為 pre-v1.0（v0.2.4），適合實驗用途，不建議用於正式環境
            - 至少需要設定一個 LLM API Key 才能運作
            - Launcher Web UI 透過此網域提供存取

            ## 授權

            MIT — [GitHub](https://github.com/sipeed/picoclaw)
