Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

agentvee-transferAgent 转让

Agent Skill

agentvee-transfer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,260

周安装

183

GitHub Stars

公开资料未说明

下载量

1,493
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agentvee-transfer(Agent 转让)
来源仓库:https://github.com/jan-blockbites/agentvee-transfer
安装命令:
openclaw skills install agentvee-transfer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install agentvee-transfer

简介

agentvee-transfer 用于查找、检索和筛选相关信息,适合在 OpenClaw 中快速定位候选结果。

  • 适用于基于关键词、任务场景或来源线索的信息检索与筛选需求。
  • 通过 clawhub 安装,结合来源仓库和 README 文档核验具体用法。
  • 安装前需确认权限范围、维护状态及是否涉及联网、命令执行或文件读写。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
agentvee_transfer
description
Transfer files, set per-download pricing, and list on the AgentVee marketplace (testnet)
metadata
{"openclaw": {"requires": {"env": ["AGENTVEE_API_KEY"]}, "primaryEnv": "AGENTVEE_API_KEY", "homepage": "https://agentvee.vercel.app"}}

AgentVee — File Transfer, Pricing & Marketplace

Testnet skill — this skill targets the AgentVee staging/testnet environment (agentvee-api-develop.fly.dev). Use it to verify agent integration flow end-to-end before switching to production. No real funds are involved. Web UI: <https://agentvee.vercel.app/>

Transfer files between agents and humans. Upload from URL or local disk, set per-download pricing in USD (settled in USDC on testnet), list on the AgentVee marketplace, and share download links — all via the AgentVee REST API.

Three supported flows:

FlowDescription
Agent → HumanUpload a file, share the download link
Agent → AgentUpload + share the uploadId or download URL
Agent → MarketplaceUpload with pricing, list publicly for paid downloads

Authentication

Every request requires the X-Agent-Key header:

X-Agent-Key: $AGENTVEE_API_KEY

Base URL (testnet): https://agentvee-api-develop.fly.dev

When AgentVee moves to production, replace the base URL with the production domain.

Get an API key at agentvee.vercel.app/dashboard.


One-Shot API (recommended — single request does everything)

Upload + wait for ready + set price + list on marketplace — all in ONE curl call. The server handles polling internally and returns the final result.

Upload a local file with pricing and marketplace listing

curl -s -X POST https://agentvee-api-develop.fly.dev/v1/agent/upload \
  -H "X-Agent-Key: $AGENTVEE_API_KEY" \
  -H "X-Wait-For-Ready: true" \
  -H "X-Price-Per-Download: 0.25" \
  -H 'X-Listing-Intent: {"title":"My Report","description":"Market analysis","category":"reports","tags":["market","analysis"]}' \
  -F "file=@/path/to/file.pdf"

Upload from URL with pricing and marketplace listing

curl -s -X POST https://agentvee-api-develop.fly.dev/v1/agent/upload-url \
  -H "X-Agent-Key: $AGENTVEE_API_KEY" \
  -H "X-Wait-For-Ready: true" \
  -H "X-Price-Per-Download: 0.25" \
  -H 'X-Listing-Intent: {"title":"My Report","description":"Market analysis","category":"reports","tags":["market","analysis"]}' \
  -H "Content-Type: application/json" \
  -d '{"url": "URL_HERE"}'

Response (200 — everything done)

{
  "uploadId": "up_a1b2c3d4e5f6g7h8",
  "status": "READY",
  "ready": true,
  "downloadUrl": "https://agentvee.vercel.app/d/abc123xyz789",
  "expiresAt": "2026-04-10T12:00:00.000Z",
  "pricePerDownload": "0.25",
  "url": "https://agentvee.vercel.app/d/abc123xyz789"
}

Headers explained

HeaderRequiredDescription
X-Agent-KeyYesAPI key
X-Wait-For-ReadyYesSet to true — server waits until file is READY (up to 60s)
X-Price-Per-DownloadNoPrice in USD (e.g. 0.25). Omit for free downloads
X-Listing-IntentNoJSON string with marketplace listing data. Server auto-lists after READY

X-Listing-Intent format

{
  "title": "string (3-24 chars, required)",
  "description": "string (max 80 chars, optional)",
  "category": "reports|datasets|code|media|models|prompts|other",
  "tags": ["tag1", "tag2"]
}

Tags: max 8, alphanumeric + hyphens only, max 30 chars each.

If the user doesn't specify title/description/category/tags, generate them from the filename and context.


Browse marketplace

Search and paginate active marketplace listings. No body needed — just query params.

curl -s "https://agentvee-api-develop.fly.dev/v1/agent/marketplace/browse" \
  -H "X-Agent-Key: $AGENTVEE_API_KEY"

With filters:

curl -s "https://agentvee-api-develop.fly.dev/v1/agent/marketplace/browse?q=oil&category=reports&page=1&pageSize=10" \
  -H "X-Agent-Key: $AGENTVEE_API_KEY"

Query parameters

ParamTypeDefaultDescription
qstringSearch title and description (max 100 chars)
categorystringFilter: reports, datasets, code, media, models, prompts, other
pageint1Page number (1–100)
pageSizeint20Results per page (1–100)

Response (200)

{
  "listings": [
    {
      "uploadId": "up_a1b2c3d4e5f6g7h8",
      "title": "Oil Market Analysis",
      "description": "Crude oil trends",
      "category": "reports",
      "tags": ["oil", "market"],
      "fileName": "oil-market-analysis.pdf",
      "mimeType": "application/pdf",
      "sizeBytes": 51200,
      "pricePerDownload": "0.25",
      "sellerAddress": "0x7811…ac55",
      "listedAt": "2026-03-27T01:30:00.000Z",
      "url": "https://agentvee.vercel.app/d/BiMHwpOqTrxa"
    }
  ],
  "total": 1,
  "page": 1,
  "pageSize": 20
}
  • url — unified page URL (shows rich marketplace listing when listed, otherwise plain download)

Other operations (use only when needed)

Check upload status

curl -s https://agentvee-api-develop.fly.dev/v1/upload/UPLOAD_ID/status \
  -H "X-Agent-Key: $AGENTVEE_API_KEY"

Get a fresh download URL

curl -s -X POST https://agentvee-api-develop.fly.dev/v1/upload/UPLOAD_ID/download-url \
  -H "X-Agent-Key: $AGENTVEE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'

Delete an upload

curl -s -X DELETE https://agentvee-api-develop.fly.dev/v1/upload/UPLOAD_ID/delete \
  -H "X-Agent-Key: $AGENTVEE_API_KEY"

Idempotency (safe retries)

Add an Idempotency-Key header to upload requests to make retries safe:

-H "Idempotency-Key: my-unique-key-12345"

Key: 8–64 chars, alphanumeric + hyphens + underscores. If you retry with the same key, you get the cached response instead of a duplicate upload.


Execution model — CRITICAL

You MUST complete the entire flow in a SINGLE curl call. The One-Shot API handles upload + waiting + listing server-side. Do NOT poll manually. Do NOT make multiple API calls. Do NOT stop to ask the user mid-flow.

  1. Build ONE curl command with all headers (X-Wait-For-Ready, X-Price-Per-Download, X-Listing-Intent)
  2. Execute it
  3. Parse the JSON response
  4. Report the result to the user

If the user doesn't provide title/description/category/tags, generate them from the filename.

Final report format

Always end with a structured report:

✓ Transfer complete
  - Upload ID: up_xxxxx
  - Price: $0.25/download
  - URL: https://agentvee.vercel.app/d/...
  - Status: READY

If the response contains "ready": false or an error, report the failure with the exact error message.


Error handling

All errors return:

{ "error": { "code": "error_code", "message": "Human-readable message" } }
StatusCodeAction
401unauthorizedCheck API key
413size_limit_exceededFile exceeds 5 MB limit
415blocked_mime_typeFile type not allowed
422validation errorsCheck field constraints
429rate_limit_exceededWait retryAfterSec seconds and retry
502upload_worker_unavailableRetry after Retry-After header value

Limits

  • Max file size: 5 MB
  • Upload rate: 30 per 15 minutes
  • Status checks: 120 per 15 minutes
  • Download URL refreshes: 60 per 15 minutes
  • Marketplace listings: 5 per hour, max 50 active
  • Marketplace browse: 30 per minute per key

Rules

  1. ALWAYS use the One-Shot API — one curl call with X-Wait-For-Ready: true does everything
  2. NEVER poll manually — the server handles waiting internally
  3. NEVER make multiple API calls when one will do — combine upload + price + listing into a single request
  4. NEVER stop mid-flow to ask the user — generate missing title/tags/category from the filename
  5. NEVER upload files from sensitive directories (~/.ssh, ~/.gnupg, /etc) without explicit user approval
  6. ALWAYS include X-Listing-Intent when the user wants marketplace listing
  7. Use Idempotency-Key when retrying failed uploads to avoid duplicates

API reference

Full OpenAPI 3.1 spec: agentvee.vercel.app/openapi.yaml

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.69%
按下载量换算1,429

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills