tenero
Tenero (formerly STXTools) market analytics — token info, market stats, top gainers/losers, wallet holdings and trades, trending DEX pools, whale trades, holder distribution, and search. Covers Stacks, Spark, and SportsFun chains. No API key required.
What this skill does
# Tenero Skill
Provides real-time market analytics for tokens, wallets, DEXs, and markets via the Tenero API (formerly STXTools). All endpoints are read-only and require no authentication. Data covers Stacks, Spark, and SportsFun chains.
## Usage
```
bun run tenero/tenero.ts <subcommand> [options]
```
## Subcommands
### token-info
Get token details including metadata, price, and volume.
```
bun run tenero/tenero.ts token-info --token <address> [--chain <chain>]
```
Options:
- `--token` (required) — Token contract address (e.g. `SP1AY6K3PQV5MRT6R4S671NWW2FRVPKM0BR162CT6.leo-token`)
- `--chain` (optional) — Chain to query (default: `stacks`)
Output:
```json
{
"contract_id": "SP1AY6K3PQV5MRT6R4S671NWW2FRVPKM0BR162CT6.leo-token",
"symbol": "LEO",
"name": "Leo",
"decimals": 6,
"price_usd": "0.0012",
"price_stx": "0.0042",
"volume_24h_usd": "45000",
"market_cap_usd": "1200000"
}
```
### market-summary
Get token market summary including price history, volume, and liquidity.
```
bun run tenero/tenero.ts market-summary --token <address> [--chain <chain>]
```
Options:
- `--token` (required) — Token contract address
- `--chain` (optional) — Chain to query (default: `stacks`)
Output:
```json
{
"contract_id": "SP1AY6K3PQV5MRT6R4S671NWW2FRVPKM0BR162CT6.leo-token",
"price_usd": "0.0012",
"price_change_1h": "1.2",
"price_change_24h": "-3.5",
"price_change_7d": "12.4",
"volume_24h_usd": "45000",
"liquidity_usd": "350000",
"holders": 1842
}
```
### market-stats
Get overall market statistics including total volume, market cap, and active tokens.
```
bun run tenero/tenero.ts market-stats [--chain <chain>]
```
Options:
- `--chain` (optional) — Chain to query (default: `stacks`)
Output:
```json
{
"total_volume_24h_usd": "2500000",
"total_market_cap_usd": "85000000",
"active_tokens": 342,
"total_trades_24h": 18420,
"unique_traders_24h": 3210
}
```
### top-gainers
Get top gaining tokens by price change percentage over the past 24 hours.
```
bun run tenero/tenero.ts top-gainers [--chain <chain>] [--limit <number>]
```
Options:
- `--chain` (optional) — Chain to query (default: `stacks`)
- `--limit` (optional) — Maximum number of results (default: `10`)
Output:
```json
[
{
"contract_id": "SP1AY6K3PQV5MRT6R4S671NWW2FRVPKM0BR162CT6.leo-token",
"symbol": "LEO",
"price_usd": "0.0012",
"price_change_24h": "42.5",
"volume_24h_usd": "45000"
}
]
```
### top-losers
Get top losing tokens by price change percentage over the past 24 hours.
```
bun run tenero/tenero.ts top-losers [--chain <chain>] [--limit <number>]
```
Options:
- `--chain` (optional) — Chain to query (default: `stacks`)
- `--limit` (optional) — Maximum number of results (default: `10`)
Output:
```json
[
{
"contract_id": "SP2C2YFP12AJZB4MABJBAJ55XECVS7E4PMMZ89YZR.arkadiko-token",
"symbol": "DIKO",
"price_usd": "0.045",
"price_change_24h": "-18.3",
"volume_24h_usd": "12000"
}
]
```
### wallet-holdings
Get wallet token holdings with current USD value. Uses the active wallet address if `--address` is omitted.
```
bun run tenero/tenero.ts wallet-holdings [--address <stx_address>] [--chain <chain>]
```
Options:
- `--address` (optional) — Stacks address to check (uses active wallet if omitted)
- `--chain` (optional) — Chain to query (default: `stacks`)
Output:
```json
{
"address": "SP2X0TZ59D5SZ8ACQ6YMCHHNR2ZN51Z32E2CJ173",
"total_value_usd": "1250.42",
"holdings": [
{
"contract_id": "SP1AY6K3PQV5MRT6R4S671NWW2FRVPKM0BR162CT6.leo-token",
"symbol": "LEO",
"balance": "1000000",
"value_usd": "1.20"
}
]
}
```
### wallet-trades
Get wallet trade history. Uses the active wallet address if `--address` is omitted.
```
bun run tenero/tenero.ts wallet-trades [--address <stx_address>] [--chain <chain>] [--limit <number>]
```
Options:
- `--address` (optional) — Stacks address to check (uses active wallet if omitted)
- `--chain` (optional) — Chain to query (default: `stacks`)
- `--limit` (optional) — Maximum number of results (default: `20`)
Output:
```json
[
{
"tx_id": "0xabc123...",
"timestamp": "2024-01-15T12:00:00Z",
"type": "swap",
"token_in": "STX",
"token_out": "LEO",
"amount_in_usd": "10.00",
"amount_out_usd": "9.85"
}
]
```
### trending-pools
Get trending DEX pools by volume within a timeframe.
```
bun run tenero/tenero.ts trending-pools [--timeframe <1h|6h|24h>] [--chain <chain>] [--limit <number>]
```
Options:
- `--timeframe` (optional) — Time window: `1h`, `6h`, or `24h` (default: `24h`)
- `--chain` (optional) — Chain to query (default: `stacks`)
- `--limit` (optional) — Maximum number of results (default: `10`)
Output:
```json
[
{
"pool_id": "SP1Y5YSTAHZ88XYK1VPDH24GY0HPX5J4JECTMY4A1.univ2-share-fee-to",
"token_x": "STX",
"token_y": "LEO",
"volume_usd": "85000",
"liquidity_usd": "420000",
"fee_24h_usd": "255"
}
]
```
### whale-trades
Get large/whale trades above a threshold value.
```
bun run tenero/tenero.ts whale-trades [--chain <chain>] [--limit <number>]
```
Options:
- `--chain` (optional) — Chain to query (default: `stacks`)
- `--limit` (optional) — Maximum number of results (default: `10`)
Output:
```json
[
{
"tx_id": "0xdef456...",
"timestamp": "2024-01-15T11:45:00Z",
"wallet": "SP2X0TZ59D5SZ8ACQ6YMCHHNR2ZN51Z32E2CJ173",
"type": "buy",
"token": "ALEX",
"amount_usd": "25000"
}
]
```
### holder-stats
Get token holder distribution and statistics.
```
bun run tenero/tenero.ts holder-stats --token <address> [--chain <chain>]
```
Options:
- `--token` (required) — Token contract address
- `--chain` (optional) — Chain to query (default: `stacks`)
Output:
```json
{
"contract_id": "SP1AY6K3PQV5MRT6R4S671NWW2FRVPKM0BR162CT6.leo-token",
"total_holders": 1842,
"top_10_concentration": "45.2",
"top_25_concentration": "62.8",
"top_holders": [
{
"address": "SP2X0TZ59D5SZ8ACQ6YMCHHNR2ZN51Z32E2CJ173",
"balance": "50000000",
"percentage": "5.0"
}
]
}
```
### search
Search tokens, pools, and wallets by name or address fragment.
```
bun run tenero/tenero.ts search --query <string> [--chain <chain>]
```
Options:
- `--query` (required) — Search query string (token name, symbol, or address)
- `--chain` (optional) — Chain to query (default: `stacks`)
Output:
```json
{
"tokens": [
{
"contract_id": "SP1AY6K3PQV5MRT6R4S671NWW2FRVPKM0BR162CT6.leo-token",
"symbol": "LEO",
"name": "Leo"
}
],
"pools": [],
"wallets": []
}
```
## Notes
- All endpoints are read-only — no API key or wallet required for most subcommands
- `wallet-holdings` and `wallet-trades` use the active unlocked wallet address when `--address` is omitted
- The `--chain` option supports `stacks` (default), `spark`, and `sportsfun`
- Response data is passed through directly from the Tenero API `data` field
- Base URL: `https://api.tenero.io`
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.