TopRank Skills

Home / Claw Skills / Git / GitHub / fluora-setup
Official OpenClaw rules 54%

fluora-setup

Interactive setup wizard for Fluora marketplace integration. Clones fluora-mcp from GitHub, builds locally, generates wallet, and configures mcporter.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 fluora-setup 技能。 若已安装,则直接安装 fluora-setup 技能。

Overview

Skill Key
chetan-guevara/fluora-setup
Author
chetan-guevara
Source Repo
openclaw/skills
Version
-
Source Path
skills/chetan-guevara/fluora-setup
Latest Commit SHA
313bdb050c24dd03507402c5406f56793a681af9

Extracted Content

SKILL.md excerpt

# Fluora Setup - Interactive Onboarding Wizard (GitHub Version)

Complete setup wizard for accessing the Fluora marketplace. Uses the official GitHub repository for the latest working version.

## What This Skill Does

Automates the entire Fluora setup process:
1. ✅ Clones `fluora-mcp` from GitHub (https://github.com/fluora-ai/fluora-mcp)
2. ✅ Installs dependencies and builds locally
3. ✅ Generates wallet (auto-creates `~/.fluora/wallets.json`)
4. ✅ Extracts wallet address from private key
5. ✅ Displays funding instructions
6. ✅ Configures mcporter with local Fluora registry
7. ✅ Verifies setup is working

## Prerequisites

- Node.js 18+
- npm
- git
- mcporter installed (optional, will guide if missing)

## Usage

### From OpenClaw Agent

```typescript
// Run interactive setup
await setupFluora();

// With options
await setupFluora({
  skipMcporterConfig: false,
  fundingAmount: 10 // in USDC
});
```

### Direct Script Usage

```bash
# Interactive setup (recommended)
node setup.js

# Skip mcporter config
node setup.js --skip-mcporter

# Custom funding amount
node setup.js --funding 10
```

## What Gets Created/Modified

### 1. Local fluora-mcp Repository
```
~/.openclaw/workspace/fluora-mcp/
```

Cloned from GitHub and built locally with all dependencies.

### 2. Wallet File
```
~/.fluora/wallets.json
```

Auto-generated on first run with structure:
```json
{
  "BASE_MAINNET": {
    "privateKey": "0x..."
  }
}
```

### 3. mcporter Config
```
~/.openclaw/workspace/config/mcporter.json
```
(or `~/.mcporter/mcporter.json` if workspace config doesn't exist)

Adds Fluora registry pointing to local build:
```json
{
  "mcpServers": {
    "fluora-registry": {
      "command": "node",
      "args": ["/Users/YOUR_USERNAME/.openclaw/workspace/fluora-mcp/build/index.js"],
      "env": {
        "ENABLE_REQUEST_ELICITATION": "true",
        "ELICITATION_THRESHOLD": "0.01"
      }
    }
  }
}
```

**Note:** Uses the LOCAL GitHub build, not `npx fluora-mcp` from npm, becaus...

Related Claw Skills