# Expanso Quick Install

## Step 1: Create Expanso Cloud Account
Go to https://cloud.expanso.io and sign up.
Note your endpoint URL (e.g., https://abc123.us1.cloud.expanso.io)

## Step 2: Install Tools

# Install Expanso Edge (local runtime)
curl -fsSL https://get.expanso.io/edge/install.sh | bash

# Install Expanso CLI (deploy to cloud)
curl -fsSL https://get.expanso.io/cli/install.sh | sh

## Step 3: Get Bootstrap Token
1. In Expanso Cloud, go to Settings → Edge Nodes
2. Click "Add Edge Node"
3. Copy the Bootstrap Token (starts with exp_...)

## Step 4: Connect Edge to Cloud

# Set your cloud endpoint
export EXPANSO_CLI_ENDPOINT="https://YOUR-INSTANCE.us1.cloud.expanso.io"

# Register your Edge with the bootstrap token
expanso-edge init --token YOUR_BOOTSTRAP_TOKEN

## Step 5: Deploy a Skill

expanso-cli job deploy https://skills.expanso.io/text-summarize/pipeline-cli.yaml

## Verify Installation

expanso-edge --version
expanso-cli --version
expanso-edge status  # Should show "connected"
