Add install script and update domain to droidclaw.ai

One-liner install: curl -fsSL https://droidclaw.ai/install.sh | sh
Auto-installs bun and adb, clones repo, sets up .env.
Updated site meta tags and canonical URL to droidclaw.ai.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sanju Sivalingam
2026-02-16 13:41:48 +05:30
parent 75fb725744
commit 04a60af082
3 changed files with 138 additions and 20 deletions

View File

@@ -32,13 +32,16 @@ action: done (412ms)
## setup
you need **bun**, **adb**, and either [ollama](https://ollama.com) for local models or an api key for a cloud provider.
```bash
curl -fsSL https://droidclaw.ai/install.sh | sh
```
installs bun and adb if missing, clones the repo, sets up `.env`. or do it manually:
```bash
# install adb if you don't have it
brew install android-platform-tools
bun install
brew install android-platform-tools # adb
git clone https://github.com/unitedbyai/droidclaw.git
cd droidclaw && bun install
cp .env.example .env
```