openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > expanso

Data processing pipelines for OpenClaw. Deploy skills from the Expanso marketplace to transform, analyze, and process data locally.

开发与 DevOps

作者:Expanso @aronchick

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.2

统计:⭐ 0 · 1.8k · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :可疑 · OpenClaw :可疑

Package:aronchick/expanso-edge

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :可疑

OpenClaw 评估

The skill's requirements and instructions are coherent with deploying an Expanso Edge node, but it asks you to run remote install scripts (curl | bash) and to provide a bootstrap token that grants the cloud authority to deploy pipelines to your machine — both reasonable for this purpose but high‑risk and worth caution.

目的

The name/description (deploy and run Expanso pipelines locally) matches the declared requirements: curl and the EXPANSO_EDGE_BOOTSTRAP_URL / EXPANSO_EDGE_BOOTSTRAP_TOKEN environment variables are exactly what a cloud‑managed edge node would need.

说明范围

SKILL.md stays within the stated purpose: it instructs you to install the Edge and CLI, set bootstrap URL/token, start expanso-edge, and deploy pipelines from the marketplace. However, starting the Edge registers the node with Expanso Cloud and allows remote pipeline deployments — this is expected but grants the cloud the ability to run code on your machine, so the instructions have significant operational impact.

安装机制

The instructions use curl -fsSL https://get.expanso.io/... | bash (and sh) — i.e., download-and-pipe-to-shell. Even if the domain matches other Expanso domains in the SKILL.md, piping remote install scripts to a shell is high-risk because it executes code fetched at install time without local review.

证书

The skill requires a bootstrap URL and token (EXPANSO_EDGE_BOOTSTRAP_URL and EXPANSO_EDGE_BOOTSTRAP_TOKEN) and designates the token as the primary credential. Those are necessary for the stated cloud-managed workflow, but the bootstrap token is a high‑privilege credential (it lets the cloud deploy pipelines to your Edge). Requesting that token is proportionate to the purpose, but it represents a sensitive capability and should be treated as such.

持久

always is false and the skill doesn't request system paths or to modify other skills. No persistent or force-included privilege is requested by the skill metadata.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「expanso」。简介:Data processing pipelines for OpenClaw. Deploy skills from the Expanso marketpl…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aronchick/expanso-edge/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: expanso
description: Data processing pipelines for OpenClaw. Deploy skills from the Expanso marketplace to transform, analyze, and process data locally.
homepage: https://skills.expanso.io
emoji: "⚡"
metadata:
  clawdis:
    always: false
    primaryEnv: EXPANSO_EDGE_BOOTSTRAP_TOKEN
    requires:
      bins:
        - curl
      env:
        - EXPANSO_EDGE_BOOTSTRAP_URL
        - EXPANSO_EDGE_BOOTSTRAP_TOKEN
    install:
      - curl -fsSL https://get.expanso.io/edge/install.sh | bash
      - curl -fsSL https://get.expanso.io/cli/install.sh | sh
    config:
      requiredEnv:
        - name: EXPANSO_EDGE_BOOTSTRAP_URL
          description: Bootstrap URL from Expanso Cloud (e.g., https://start.cloud.expanso.io)
        - name: EXPANSO_EDGE_BOOTSTRAP_TOKEN
          description: Bootstrap token from Expanso Cloud Settings → Edge Nodes
---

# Expanso Skills for OpenClaw

Deploy data processing pipelines to your local Expanso Edge. Skills run locally, keeping credentials secure and enabling offline operation.

## What is Expanso?

- **Expanso Edge** — Local runtime that executes pipelines on your machine
- **Expanso Cloud** — Orchestrates and deploys pipelines to your Edge nodes
- **Expanso Skills** — Pre-built pipelines for common data tasks

## Setup

### 1. Create an Expanso Cloud account

1. Go to [cloud.expanso.io](https://cloud.expanso.io) and sign up
2. Create a new organization (or use an existing one)
3. Note your **Cloud Endpoint URL** (e.g., `https://abc123.us1.cloud.expanso.io`)

### 2. Install the tools

```bash
# 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
```

### 3. Get a Bootstrap Token

1. In Expanso Cloud, go to **Settings → Edge Nodes**
2. Click **"Add Edge Node"**
3. Copy the **Bootstrap URL** and **Bootstrap Token**

### 4. Connect your Edge to the Cloud

```bash
# Set the bootstrap URL and token from Expanso Cloud
export EXPANSO_EDGE_BOOTSTRAP_URL="https://start.cloud.expanso.io"
export EXPANSO_EDGE_BOOTSTRAP_TOKEN="your-token-from-cloud"

# Start Edge (it will register automatically)
expanso-edge
```

This connects your local Edge node to your Expanso Cloud organization. Your Edge will now receive pipeline deployments from the cloud.

### 5. Deploy a skill

```bash
# Browse skills at https://skills.expanso.io
# Then deploy one:
expanso-cli job deploy https://skills.expanso.io/text-summarize/pipeline-cli.yaml
```

The pipeline will be deployed through Expanso Cloud to your local Edge node.

## Available Skills

Browse 172+ skills at **[skills.expanso.io](https://skills.expanso.io)**:

| Category | Examples |
|----------|----------|
| **AI** | text-summarize, image-describe, audio-transcribe |
| **Security** | pii-redact, secrets-scan, hash-digest |
| **Transforms** | json-pretty, csv-to-json, array-filter |
| **Utilities** | uuid-generate, email-validate, mime-type |

## Example: PII Redaction

Ask OpenClaw to redact sensitive data:

> "Redact the PII from this customer feedback"

OpenClaw will use the `pii-redact` skill running on your local Expanso Edge to process the data — your API keys and data never leave your machine.

## How It Works

```
┌─────────────┐     ┌───────────────┐     ┌──────────────┐
│  OpenClaw   │────▶│ Expanso Edge  │────▶│ Your Data    │
│  (asks)     │     │ (processes)   │     │ (stays local)│
└─────────────┘     └───────────────┘     └──────────────┘
                           │
                    ┌──────┴──────┐
                    │Expanso Cloud│
                    │(orchestrates)│
                    └─────────────┘
```

## Resources

- [Skills Marketplace](https://skills.expanso.io) — Browse and deploy skills
- [Expanso Cloud](https://cloud.expanso.io) — Manage your Edge nodes
- [Documentation](https://docs.expanso.io) — Full guides and API reference
- [GitHub](https://github.com/expanso-io/expanso-skills) — Skill source code