Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

paradex-vault-intelligenceParadex Vault 情报

Agent Skill

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

总安装

2,399

周安装

102

GitHub Stars

公开资料未说明

下载量

840
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install paradex-vault-intelligence

简介

用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于 Paradex Vault 的情报发现、比较和分析,包括按风险调整后的回报排名、运营商跟踪记录监控和 TVL 变化追踪。
  • 通过 clawhub 安装,结合来源仓库和原始 README 核验具体用法,支持关键词和任务场景定位。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前主要用于研究检索类任务,需配合其他工具完成数据分析和决策支持工作。

SKILL.md

name
paradex-vault-intelligence
description
>

Paradex Vault Intelligence

Turns raw vault data from Paradex MCP into investment-grade vault analytics. Helps users discover, compare, and monitor vaults for passive income strategies.

Available MCP Tools (data sources)

ToolWhat it gives youKey params
paradex_vaultsVault config, owner, status, kindvault_address, jmespath_filter
paradex_vault_summaryPerformance metrics (ROI, PnL, drawdown, volume, TVL)vault_address, jmespath_filter
paradex_vault_positionsCurrent open positionsvault_address
paradex_vault_balanceAvailable/locked/total balancevault_address
paradex_vault_account_summaryAccount health, margin, exposurevault_address
paradex_vault_transfersDeposit/withdrawal historyvault_address

Capabilities

1. Vault Discovery & Screening

Use paradex_vault_summary with JMESPath to screen the full vault universe:

By performance:

# Top 5 by total ROI
"sort_by([*], &to_number(total_roi))[-5:]"

# Profitable in last 7 days
"[?to_number(roi_7d) > `0`]"

# Best 30-day performers
"sort_by([*], &to_number(roi_30d))[-10:]"

By risk:

# Lowest max drawdown (safer vaults)
"sort_by([*], &to_number(max_drawdown))[:5]"

# Low recent drawdown + positive returns
"[?to_number(max_drawdown_30d) < `0.05` && to_number(roi_30d) > `0`]"

By size/activity:

# Largest by TVL
"reverse(sort_by([*], &to_number(tvl)))"

# Most active by 24h volume
"reverse(sort_by([*], &to_number(volume_24h)))"

# Most depositors (social proof)
"reverse(sort_by([*], &num_depositors))"

2. Vault Deep Dive

For a specific vault, gather comprehensive data:

  1. paradex_vaults — get config: owner, kind, status, creation details
  2. paradex_vault_summary — performance: ROI (24h/7d/30d/total), PnL, drawdowns, volume, TVL, token price
  3. paradex_vault_positions — current holdings: which markets, sizes, unrealized PnL
  4. paradex_vault_account_summary — account health: margin usage, leverage, exposure
  5. paradex_vault_balance — cash position: available vs. locked
  6. paradex_vault_transfers — fund flows: deposit/withdrawal patterns

3. Vault Comparison

When comparing 2+ vaults, build a comparison matrix:

MetricVault AVault BBetter
Total ROIX%Y%✓ higher
30d ROIX%Y%✓ higher
Max DrawdownX%Y%✓ lower
Sharpe-like ratioROI/DDROI/DD✓ higher
TVL$X$Ycontext-dependent
# DepositorsNM✓ higher (social proof)
24h Volume$X$Y✓ higher (activity)
Position countNMcontext-dependent

Risk-adjusted ranking: Compute a simple Sharpe-like ratio: total_roi / max_drawdown (higher = better risk-adjusted returns). For vaults with zero drawdown, use total_roi alone but flag as "insufficient drawdown history."

4. Vault Risk Assessment

For each vault, assess and report:

  • Drawdown risk: max_drawdown vs. max_drawdown_30d — is drawdown getting worse?
  • Concentration risk: from positions — how many markets, what % of exposure is in largest position?
  • Leverage risk: from account_summary — current leverage vs. available margin
  • Liquidity risk: from TVL + transfers — is TVL stable, growing, or declining?
  • Operator activity: from volume — is the vault actively trading or dormant?

Risk score (1-5):

  • 1 (Low): Low drawdown, diversified positions, moderate leverage, stable/growing TVL
  • 3 (Medium): Some drawdown history, concentrated in 2-3 markets, moderate leverage
  • 5 (High): Large drawdowns, single-market concentration, high leverage, declining TVL

5. Vault Monitoring & Alerts

When asked to monitor a vault, check for:

  • ROI dropping below a threshold
  • Drawdown exceeding user-defined limit
  • TVL declining (depositor exodus)
  • Position concentration changing significantly
  • New large positions opened (strategy shift)

6. Vault Recommendation Engine

When a user asks "which vault should I deposit in?", gather their preferences:

Risk tolerance:

  • Conservative: prioritize low drawdown, stable returns, high TVL, many depositors
  • Moderate: balance ROI and drawdown, accept some concentration
  • Aggressive: prioritize highest ROI, accept higher drawdown and concentration

Time horizon:

  • Short-term: weight roi_24h and roi_7d more heavily
  • Medium-term: weight roi_30d and last_month_return
  • Long-term: weight total_roi and max_drawdown

Then screen, score, and present top 3-5 vaults with reasoning.

Output Format

Vault Screening Results

## Paradex Vault Screening — [criteria]

Found N vaults matching criteria. Top picks:

### 1. [Vault Name/Address]
- ROI: 24h X% | 7d X% | 30d X% | Total X%
- Risk: Max DD X% | 30d DD X%
- Size: TVL $X | Depositors: N
- Activity: 24h Vol $X
- Risk Score: X/5

[1-sentence take on this vault]

Vault Deep Dive

## Vault Analysis — [address]

### Performance
[ROI table across timeframes]

### Current Positions
[Position breakdown with market, size, unrealized PnL]

### Account Health
[Margin usage, leverage, available capacity]

### Risk Assessment
[Risk score with reasoning]

### Fund Flows
[Recent deposit/withdrawal trends]

Important Caveats

  • Past vault performance does not guarantee future results — state this clearly
  • Vault token price can decline — depositors can lose money
  • Withdrawal lockup periods apply — mention the vault's specific lockup
  • This is analysis and screening, not investment advice
  • Vault operator strategies are private — positions give clues but not full picture
  • Small TVL vaults may have inflated ROI percentages from small base effects

See scoring.md for detailed risk scoring methodology and JMESPath query cookbook.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.97%
按下载量换算697

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills