# Send vibetrading-global-signals to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vibetrading-global-signals",
    "name": "vibetrading-global-signals",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/liuhaonan00/vibetrading-global-signals",
    "canonicalUrl": "https://clawhub.ai/liuhaonan00/vibetrading-global-signals",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/vibetrading-global-signals",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vibetrading-global-signals",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "package-lock.json",
      "package.json",
      "SKILL.md",
      "scripts/get_signals_by_type.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vibetrading-global-signals"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vibetrading-global-signals",
    "downloadUrl": "https://openagent3.xyz/downloads/vibetrading-global-signals",
    "agentUrl": "https://openagent3.xyz/skills/vibetrading-global-signals/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vibetrading-global-signals/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vibetrading-global-signals/agent.md"
  }
}
```
## Documentation

### VibeTrading Global Signals

Query AI-generated trading signals from vibetrading-datahub. Signals are produced by autonomous agents analyzing whale activity, news, funding rates, and technical indicators.

### Setup

No authentication required! The API is now open and accessible without any API token.

Simply run the scripts directly:

### 1. Get Latest Signals (Multi-Symbol)

Fetch latest signals for multiple symbols, grouped by symbol.

Example Usage:

# Get latest signals for BTC and ETH, all types
curl 'https://vibetrading.dev/api/v1/signals/latest?symbols=BTC,ETH'

# Get only whale and news signals from last 24h
curl 'https://vibetrading.dev/api/v1/signals/latest?symbols=BTC,ETH,SOL&signal_types=WHALE_ACTIVITY,NEWS_ANALYSIS&hours=24'

### 2. Get Signals by Symbol

Fetch signals for a single symbol.

Example Usage:

curl 'https://vibetrading.dev/api/v1/signals/BTC?signal_types=TECHNICAL_INDICATOR&limit=5&hours=48'

### 3. Get Signals by Symbol and Type

Fetch signals for a specific symbol and signal type combination.

Example Usage:

curl 'https://vibetrading.dev/api/v1/signals/ETH/FUNDING_RATE?limit=3'

### Signal Types

signal_typeDescriptionWHALE_ACTIVITYWhale wallet movement analysisNEWS_ANALYSISCrypto news sentimentFUNDING_RATEPerpetual funding rate signalsTECHNICAL_INDICATORMulti-timeframe technical analysis

### 1. Query Signals

Use the provided scripts to query signals:

scripts/get_latest_signals.js - Get latest signals for multiple symbols
scripts/get_signals_by_symbol.js - Get signals for a specific symbol
scripts/get_signals_by_type.js - Get signals by symbol and type

### 3. Analyze Results

Review the signal payloads for:

Sentiment: BULLISH, BEARISH, or NEUTRAL
Analysis: Detailed markdown analysis
Timestamp: When the analysis was performed

### 4. Schedule Monitoring

Set up cron jobs for regular signal monitoring:

# Example: Check BTC/ETH signals every hour
0 * * * * /path/to/scripts/get_latest_signals.js BTC,ETH

### Scripts

scripts/get_latest_signals.js - Query latest signals for multiple symbols
scripts/get_signals_by_symbol.js - Query signals for a single symbol
scripts/get_signals_by_type.js - Query signals by symbol and type

### Quick Signal Check

# Check BTC signals
node scripts/get_signals_by_symbol.js BTC

# Check latest BTC and ETH signals
node scripts/get_latest_signals.js BTC,ETH

# Check ETH funding rate signals
node scripts/get_signals_by_type.js ETH FUNDING_RATE

### Advanced Filtering

# Get whale activity signals from last 48 hours
node scripts/get_latest_signals.js BTC,ETH,SOL WHALE_ACTIVITY 48

# Get multiple signal types
node scripts/get_latest_signals.js BTC "WHALE_ACTIVITY,NEWS_ANALYSIS" 24

### Response Format

All API responses include:

symbols: Array of symbols queried
signals: Object with signals grouped by symbol
metadata: Query metadata (time window, signal types, etc.)

Each signal contains:

id: Unique signal ID
symbol: Trading symbol
signal_type: Type of signal
author: Agent that generated the signal
signal_payload: Detailed analysis with sentiment and markdown
created_at: Timestamp

### Integration with Trading Strategies

Use these signals to:

Confirm trade ideas with AI-generated analysis
Monitor market sentiment across multiple dimensions
Set alerts for specific signal types
Combine with other data for comprehensive analysis

### Troubleshooting

Common Issues:

404 Not Found: No signals available for the query parameters
Rate limiting: API may have rate limits, adjust query frequency
Network issues: Check your internet connection

Debug Commands:

# Test API connectivity
curl 'https://vibetrading.dev/api/v1/signals/latest?symbols=BTC' -v

# Simple ping test
curl -I 'https://vibetrading.dev/api/v1/signals/latest?symbols=BTC'

### Notes

API responses are cached for performance
Signal timestamps are in UTC
Always verify signals with other data sources
Use appropriate risk management with any trading decisions
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: liuhaonan00
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vibetrading-global-signals)
- [Send to Agent page](https://openagent3.xyz/skills/vibetrading-global-signals/agent)
- [JSON manifest](https://openagent3.xyz/skills/vibetrading-global-signals/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vibetrading-global-signals/agent.md)
- [Download page](https://openagent3.xyz/downloads/vibetrading-global-signals)