AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Price

skill-canddao1-dotcom-flare-agent-skills-ftso · by canddao1-dotcom

Get real-time token prices from Flare FTSO oracle. Query current prices, historical data, list supported symbols. Triggers on "/price", "ftso price", "token price", "what's the price of".

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add skill-canddao1-dotcom-flare-agent-skills-ftso

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-canddao1-dotcom-flare-agent-skills-ftso)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Price? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Price Skill (FTSO)

Unified interface for FTSO price feeds on Flare network.

Quick Command

node skills/ftso/scripts/ftso.js 

Subcommands

| Command | Description | |---------|-------------| | ` | Get current price for symbol | | ... | Get multiple prices at once | | history [period] | Historical price data | | list` | List all supported symbols |

Usage Examples

# Single price
/price FLR

# Multiple prices
/price FLR XRP ETH BTC

# JSON output
/price FLR --json

# Historical data
/price history FLR 7d
/price history XRP 30d

# List all symbols
/price list

Symbol Aliases

These aliases are automatically resolved:

| Alias | Resolves To | |-------|-------------| | WFLR | FLR | | SFLR | FLR | | FXRP | XRP | | USD₮0 | USDT | | USDT0 | USDT |

Supported Symbols

Crypto

  • FLR, XRP, ETH, BTC, LTC
  • XLM, DOGE, ADA, ALGO
  • ARB, AVAX, BNB, FIL
  • LINK, MATIC, SOL
  • USDC, USDT

Data Source

  • On-chain only - no external APIs
  • FtsoV2 Contract - official Flare oracle
  • ~90 second updates - prices update each voting epoch

Historical Data

The history daemon polls FTSO every 5 minutes and stores locally:

# Start daemon (if not running)
skills/ftso-history/scripts/ensure-daemon.sh

# Query history
/price history FLR 7d
/price history XRP 30d

Periods: 1d, 7d, 14d, 30d, 90d

Integration

Use in other scripts:

const { getPrice, getPrices } = require('skills/ftso/scripts/price.js');

const flrPrice = await getPrice('FLR');
const prices = await getPrices(['FLR', 'XRP', 'ETH']);

Contract Reference

| Contract | Address | |----------|---------| | FlareContractRegistry | 0xaD67FE66660Fb8dFE9d6b1b4240d8650e30F6019 | | FtsoV2 | Resolved dynamically from registry |


Routing Guide

Don't use when...

  • Need historical price charts (use /price history or external charting)
  • Want to execute trades (use /swap)
  • Checking portfolio value (use /portfolio)

Use when...

  • Getting current token price from FTSO oracle
  • Querying multiple prices at once
  • Listing supported FTSO feed symbols

Edge Cases

  • Symbol aliases auto-resolve: WFLR→FLR, FXRP→XRP, USDT0→USDT
  • FTSO updates every ~90 seconds — prices may lag vs CEX
  • Some symbols may not have feeds (check /price list)

Success Criteria

  • Returns price with timestamp and voting round
  • Multiple symbols return in single response
  • JSON mode outputs parseable data

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.