返回顶部
d

decentralized-agent-cloud去中心化代理云

Decentralized compute and data marketplace for AI agents with spot pricing | 去中心化 AI Agent 计算和数据市场,支持 Spot 动态定价

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
254
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

decentralized-agent-cloud

Decentralized Agent Cloud

去中心化 Agent 云平台

Decentralized compute and data marketplace for AI agents with spot pricing
为 AI Agent 提供去中心化计算和数据市场,支持动态 Spot 定价


🌟 What is This? | 这是什么?

English:
A peer-to-peer marketplace where AI agents can discover and execute computational skills (video generation, data processing, ML inference, etc.) with real-time spot pricing. Like Uber for AI compute - agents can instantly buy computing resources at market prices.

中文:
一个点对点的市场平台,AI Agent 可以发现和执行计算技能(视频生成、数据处理、机器学习推理等),使用实时 Spot 定价。就像 Uber 一样,但用于 AI 计算 - Agent 可以按市场价格即时购买计算资源。



🎯 Core Features | 核心功能

English:

  • - 🤖 Agent-First Design - Built for autonomous AI agents
  • 💰 Spot Pricing - Dynamic pricing saves 60-90% vs on-demand
  • 🔄 Decentralized - No single point of failure
  • 📦 Skill Marketplace - Discover and execute 100+ pre-built skills
  • Instant Execution - Smart matching finds optimal provider in <1s
  • 💳 Pay-Per-Second - Granular billing, no minimum commitment

中文:

  • - 🤖 AI Agent 优先设计 - 专为自主 AI Agent 构建
  • 💰 Spot 动态定价 - 相比按需定价节省 60-90% 成本
  • 🔄 去中心化 - 无单点故障
  • 📦 技能市场 - 发现并执行 100+ 预构建技能
  • 即时执行 - 智能匹配在 1 秒内找到最优提供者
  • 💳 按秒计费 - 精细计费,无最低承诺

🚀 Quick Start | 快速开始

Installation | 安装

English:
bash

Via npm


npm install openclaw-decentralized-agent-cloud

Via ClawHub

clawhub install decentralized-agent-cloud

中文:
bash

通过 npm


npm install openclaw-decentralized-agent-cloud

通过 ClawHub

clawhub install decentralized-agent-cloud

Usage Example | 使用示例

English:
typescript
import { createAgentClient } from openclaw-decentralized-agent-cloud;

// Initialize client
const client = createAgentClient({
apiKey: your-api-key,
agentId: my-agent,
});

// Execute video generation skill
const task = await client.executeSkill(video-generator, {
script: AI is changing the world. Three breakthroughs happened today.,
voice: nova,
speed: 1.15,
});

// Wait for result
const result = await client.waitForTask(task.id);
console.log(result.output.videoUrl);
// Output: https://storage.agent-cloud.io/videos/abc123.mp4

中文:
typescript
import { createAgentClient } from openclaw-decentralized-agent-cloud;

// 初始化客户端
const client = createAgentClient({
apiKey: your-api-key,
agentId: my-agent,
});

// 执行视频生成技能
const task = await client.executeSkill(video-generator, {
script: AI 正在改变世界。今天发生了三个突破。,
voice: nova,
speed: 1.15,
});

// 等待结果
const result = await client.waitForTask(task.id);
console.log(result.output.videoUrl);
// 输出: https://storage.agent-cloud.io/videos/abc123.mp4



💡 Use Cases | 使用场景

English:

1. AI Video Generation
typescript
// Generate professional short videos from text
const video = await client.executeSkill(video-generator, {
script: Your marketing message here...,
voice: nova,
});

2. Data Processing
typescript
// Process large datasets with auto-scaling compute
const result = await client.executeSkill(data-processor, {
dataset: s3://my-bucket/data.csv,
operation: analyze,
resourceRequirements: {
compute: { type: GPU, memory: 16 }
}
});

3. ML Model Inference
typescript
// Run inference on available GPU clusters
const prediction = await client.executeSkill(llm-inference, {
model: gpt-4,
prompt: Explain quantum computing,
maxPrice: 0.50 // bid up to $0.50/hour
});

中文:

1. AI 视频生成
typescript
// 从文本生成专业短视频
const video = await client.executeSkill(video-generator, {
script: 您的营销信息...,
voice: nova,
});

2. 数据处理
typescript
// 使用自动扩展计算处理大型数据集
const result = await client.executeSkill(data-processor, {
dataset: s3://my-bucket/data.csv,
operation: analyze,
resourceRequirements: {
compute: { type: GPU, memory: 16 }
}
});

3. ML 模型推理
typescript
// 在可用的 GPU 集群上运行推理
const prediction = await client.executeSkill(llm-inference, {
model: gpt-4,
prompt: 解释量子计算,
maxPrice: 0.50 // 出价最高 $0.50/小时
});



📊 Pricing Comparison | 价格对比

English:

Traditional Cloud (AWS):

  • - On-Demand GPU: $3.06/hour
  • Reserved GPU (1 year): $1.50/hour

Decentralized Agent Cloud:

  • - Spot GPU: $0.30-1.20/hour (60-90% savings)
  • Dynamic pricing based on real-time market conditions

ResourceTraditionalSpot PriceSavings
CPU (4 cores, 8GB)$0.20/hr$0.05/hr75%
GPU (V100 16GB)
$3.06/hr | $0.50/hr | 84% |
| GPU (A100 40GB) | $5.50/hr | $1.20/hr | 78% |

中文:

传统云(AWS)

  • - 按需 GPU:$3.06/小时
  • 预留 GPU(1年):$1.50/小时

去中心化 Agent 云

  • - Spot GPU:$0.30-1.20/小时(节省 60-90%)
  • 基于实时市场状况的动态定价

资源传统云Spot 价格节省
CPU (4核, 8GB)$0.20/时$0.05/时75%
GPU (V100 16GB)
$3.06/时 | $0.50/时 | 84% |
| GPU (A100 40GB) | $5.50/时 | $1.20/时 | 78% |


🏗️ Architecture | 架构

English:

┌─────────────────────────────────────────────────┐
│ DECENTRALIZED AGENT CLOUD │
│ │
│ ┌──────────────┐ ┌──────────────┐ │
│ │Skill Registry│ │Spot Pricing │ │
│ │ │ │ Engine │ │
│ │• Discovery │ │• Supply/ │ │
│ │• Validation │ │ Demand │ │
│ └──────────────┘ └──────────────┘ │
│ │
│ ┌──────────────┐ ┌──────────────┐ │
│ │Task Scheduler│ │Resource │ │
│ │ │ │Marketplace │ │
│ │• Matching │ │• Providers │ │
│ │• Execution │ │• Consumers │ │
│ └──────────────┘ └──────────────┘ │
└─────────────────────────────────────────────────┘
▲ ▲
│ │
┌────┴────┐ ┌─────┴─────┐
│ Agents │ │ Providers │
│(Buyers) │ │ (Sellers) │
└─────────┘ └───────────┘

Core Components:

  1. 1. Skill Registry - Central catalog of available skills
  2. Spot Pricing Engine - Dynamic pricing based on supply/demand
  3. Task Scheduler - Matches tasks with optimal providers
  4. Agent SDK - Client library for

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 decentralized-agent-cloud-1776120367 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 decentralized-agent-cloud-1776120367 技能

通过命令行安装

skillhub install decentralized-agent-cloud-1776120367

下载

⬇ 下载 decentralized-agent-cloud v1.0.0(免费)

文件大小: 6.82 KB | 发布时间: 2026-4-15 12:26

v1.0.0 最新 2026-4-15 12:26
Initial release of Decentralized Agent Cloud, a marketplace for AI agent compute and data.

- Launch of decentralized, peer-to-peer spot-priced compute and data marketplace for AI agents
- Agent-first design with instant skill discovery, execution, and smart provider matching
- Supports dynamic spot pricing for major cost savings vs. traditional clouds
- Multilingual documentation (English/中文) and usage examples provided
- Simple integration via npm or ClawHub; SDK available for quick start
- Showcases use cases: AI video generation, data processing, and ML inference with pay-per-second billing

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部