CAT
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Tenero

aibtcdev/skills
141 installs6 stars
Summary

This is a comprehensive market analytics interface for the Stacks ecosystem and related chains like Spark and SportsFun. You get token prices, market stats, top movers, wallet holdings and trades, trending DEX pools, whale activity, and holder distribution, all without needing an API key. The wallet integration is smart: if you have a wallet unlocked, commands like wallet-holdings just work without passing addresses around. It's the kind of tool you'd want if you're building trading bots, portfolio trackers, or just need to query on-chain market data without wrestling with multiple APIs. Covers eleven different endpoints through a clean CLI interface that returns structured JSON you can pipe directly into other tools.

Install to Claude Code

npx -y skills add aibtcdev/skills --skill tenero --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Files
SKILL.mdView on GitHub

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:

{
  "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:

{
  "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:

{
  "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:

[
  {
    "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:

[
  {
    "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:

{
  "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:

[
  {
    "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:

[
  {
    "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:

[
  {
    "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:

{
  "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:

{
  "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
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
First SeenJun 3, 2026
View on GitHub

Recommended

caveman

juliusbrussee/caveman

Ultra-compressed communication mode cutting token usage ~75% while preserving technical accuracy.
203.4k
67.8k
grill-me

mattpocock/skills

Relentless interviewing skill that stress-tests plans and designs through systematic questioning.
250.9k
114.5k
improve

shadcn/improve

Survey any codebase as a senior advisor and produce prioritized, self-contained implementation plans for other models/agents to execute.
10
205
systematic-debugging

obra/superpowers

Structured debugging methodology that mandates root cause investigation before attempting any fixes.
124.6k
215.9k
karpathy-guidelines

forrestchang/andrej-karpathy-skills

Behavioral guidelines to reduce common LLM coding mistakes through explicit assumptions, simplicity, and verifiable success criteria.
13.9k
165.4k
find-skills

vercel-labs/skills

Discover and install specialized agent skills from the open ecosystem when users need extended capabilities.
1.8M
21.1k