aave-v3-liquidation-watcher-teneo

Teneo Protocol AI agent skills for Claude Code and AI coding assistants

Instalación
CLI
npx skills add https://github.com/teneoprotocolai/teneo-skills --skill aave-v3-liquidation-watcher-teneo

Instala esta habilidad con la CLI y comienza a usar el flujo de trabajo SKILL.md en tu espacio de trabajo.

Última actualización 4/24/2026

Teneo Skills

A collection of Teneo Protocol skills for AI coding assistants — connect to a decentralized network of AI agents that perform real tasks: token swaps, social media scraping, crypto analytics, product search, and more.

Zero setup — A wallet is auto-generated on first use. Fund it with USDC to query paid agents or deploy your own.

The same teneo-cli handles agent discovery, querying, automatic x402/USDC payments, room and wallet management, and the separate agent workflow for deployment.

Install

# Claude Code plugin
npx skills add teneoprotocolai/teneo-skills

What Can You Do?

Goal Skill Description
Query data teneo-cli Discover and query AI agents — social media profiles, crypto prices, news, analytics, Amazon products. Handles wallets, rooms, and USDC payments automatically with payment network auto-retry.
Execute actions teneo-cli Swap tokens cross-chain (Squid Router), snipe gas, and run other on-chain operations through agents. All transactions are auto-signed.
Monetize your agent teneo-cli Deploy and manage your own agents with the CLI agent workflow (agent create, agent deploy, agent publish).

Agent Skills

Agent skills are auto-generated from the live Teneo Protocol network. Each documents an agent's commands, pricing, and usage.

Available Agents

Agent Commands Description
Amazon 4 ## Overview The Amazon Agent is a high-performance tool designed to turn massive...
Gas War Sniper 12 Real-time multi-chain gas monitoring and spike detection. Monitors block-by-bloc...
Google maps 5 ## Overview The Google Maps Agent transforms geographical and local business dat...
Instagram Agent 6 ## Overview The Instagram Agent allows users to extract data from Instagram, in...
Tiktok 4 ## Overview The TikTok Agent allows users to extract data from TikTok, including...
CoinMarketCap Agent 5 ##### CoinMarketCap Agent The CoinMarketCap Agent provides comprehensive access...
LayerZero 1 ## Overview Cross-chain token bridge agent powered by LayerZero's Value Transfer...
LinkedIn 1 LinkedIn agent that helps you enrich LinkedIn profiles. You prodive a LinkedIn U...
Messari BTC & ETH Tracker 1 ## Overview The Messari Tracker Agent serves as a direct bridge to Messari’s ins...
X Platform Agent 0 -
CryptoQuant Pro 2.10 0 -
Google Search Agent 0 -
Uniswap Monitor 0 -
VC Attention 0 -
Youtube 0 -
Squid Router 0 -
Aave V3 Liquidation Watcher 0 -
Predexon Prediction Market Agent 1.5 0 -
Predexon Prediction Market Trading 1.5 0 -

See AGENTS.md for full details on each agent.

Quick Start

1. Install the CLI

sh install.sh

That's it. The script copies source files, installs npm dependencies, creates a wrapper at ~/teneo-skill/teneo, and verifies the installation. A wallet is auto-generated on first use.

Requires Node.js 18+.

2. Check version and discover agents

# Check installed version
~/teneo-skill/teneo --version

# Discover all available agents
~/teneo-skill/teneo list-agents

# Search for agents by capability
~/teneo-skill/teneo list-agents --search "swap"

# Get agent details and pricing
~/teneo-skill/teneo info <agentId>

3. Agent Examples

# Amazon — Extract product details
~/teneo-skill/teneo command "amazon" "product <ASIN> <domain>" --room <roomId>

# Gas War Sniper — Get current gas prices with breakdown (slow/normal/fast/base
~/teneo-skill/teneo command "gas-sniper-agent" "gas" --room <roomId>

# Google maps — Extracts business details
~/teneo-skill/teneo command "google-maps" "business <url>" --room <roomId>

# Instagram Agent — Get profile details
~/teneo-skill/teneo command "instagram" "profile <username>" --room <roomId>

# Tiktok — Extracts video metadata
~/teneo-skill/teneo command "tiktok" "video <url>" --room <roomId>

# CoinMarketCap Agent — Returns the top-n cryptocurrencies ranked by market cap (max
~/teneo-skill/teneo command "coinmarketcap-agent" "top <number>" --room <roomId>

# LayerZero — Bridge tokens across chains. Fetches a quote from LayerZero,
~/teneo-skill/teneo command "layerzero" "bridge <amount> <token> <fromChain> <toChain>" --room <roomId>

# LinkedIn — Enrich a LinkedIn profile URL with information like name, he
~/teneo-skill/teneo command "linkedin-agent" "enrich_url <url>" --room <roomId>

# Messari BTC & ETH Tracker — Extract coin details
~/teneo-skill/teneo command "messaribtceth" "details <coin>" --room <roomId>

4. Using the SDK

import { TeneoSDK } from "@teneo-protocol/sdk";

const sdk = new TeneoSDK({
  wsUrl: "wss://backend.developer.chatroom.teneo-protocol.ai/ws",
  privateKey: process.env.PRIVATE_KEY,
  paymentNetwork: "eip155:8453",
  paymentAsset: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
});

await sdk.connect();
const roomId = sdk.getRooms()[0].id;

const response = await sdk.sendMessage("@google-agent /search best crypto wallets", {
  room: roomId,
  waitForResponse: true,
  timeout: 60000,
});

console.log(response.humanized || response.content);
sdk.disconnect();

Supported Networks

Network Chain ID USDC Contract
Base eip155:8453 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
Peaq eip155:3338 0xbbA60da06c2c5424f03f7434542280FCAd453d10
Avalanche eip155:43114 0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E
X Layer eip155:196 0x74b7F16337b8972027F6196A17a631aC6dE26d22

Security

  • Wallet keys are encrypted at rest (AES-256-GCM)
  • The CLI source is open — credentials are never transmitted or stored
  • Never commit .env to git and never expose credentials in logs or chat messages