Install
$ agentstack add skill-canddao1-dotcom-flare-agent-skills-ftso ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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 historyor 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.
- Author: canddao1-dotcom
- Source: canddao1-dotcom/flare-agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.