← back

Install AgentBoot

Six rails. All free. Pick the one that fits your device.

Progressive Web App (PWA)recommended

The fastest way: works on iOS, Android, desktop — same URL, no store, no signing.

  1. Open /chat in your browser.
  2. iOS Safari: Share → "Add to Home Screen". Android Chrome: menu → "Install app".
  3. An AgentBoot icon appears on your home screen. Tap to launch.

Browser extension (Chrome / Edge / Firefox)

Adds AgentBoot as a side panel. One keystroke — it opens next to your tab.

git clone https://github.com/Agnuxo1/AgentBoot-app cd AgentBoot-app/extension # Chrome / Edge: chrome://extensions → Developer mode → Load unpacked → select this folder # Firefox:       about:debugging → This Firefox → Load Temporary Add-on → manifest.json

Submission to the Chrome Web Store usesCHROME_STORE_LISTING.md as its listing copy.

Android APK

Same PWA, wrapped in a native Android container via Capacitor. Sideloads cleanly, ships on F-Droid, ready for Play Store.

bash scripts/build-android.sh adb install -r AgentBoot-debug.apk

Requires Android Studio + JDK 17 + ANDROID_HOME.

Desktop (Windows · macOS · Linux)

Native window via Tauri. Tiny footprint (~5 MB binary), no Electron, full system tray.

cd platforms/tauri npm install npm run tauri build # binaries land in src-tauri/target/release/bundle/

Termux one-liner (Android, no store)

curl -sSL https://raw.githubusercontent.com/Agnuxo1/AgentBoot/main/install/termux.sh | bash agentboot-app           # opens the PWA agentboot-app --cli     # full Python CLI from agentboot-ai

Continue.dev (VS Code / JetBrains)

Wire AgentBoot into your IDE assistant. Drop this into ~/.continue/config.json:

{
  "models": [
    {
      "title": "AgentBoot",
      "provider": "openai",
      "apiBase": "https://agentboot.pages.dev/api/chat",
      "model": "agentboot-router",
      "apiKey": "your-key-here"
    }
  ]
}

Full guide: platforms/continue/README.md