🚀 DAY 3 OF LAUNCH WEEK: Introducing Webhook Events for Pull Request Scans.Learn more →
Socket
Book a DemoInstallSign in
Socket

@skynetxbt/flow-ai-investor

Package Overview
Dependencies
Maintainers
2
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@skynetxbt/flow-ai-investor

Crypto data insights flow for Skynet

latest
npmnpm
Version
1.4.39
Version published
Maintainers
2
Created
Source

AI Investor Flow

A SkynetXBT flow for intelligent cryptocurrency analysis and insights. This flow analyzes and provides data about various coins and tokens using AI-powered analysis.

Features

  • Cryptocurrency data analysis
  • Token information retrieval
  • Multi-source data aggregation (CoinMarketCap, GeckoTerminal)
  • AI-powered summaries in simple language
  • Real-time token validation
  • Cross-chain token support

Installation

npm install @skynetxbt/flow-ai-investor
# or
yarn add @skynetxbt/flow-ai-investor

Dependencies

  • @skynetxbt/core
  • @skynetxbt/plugin-coin-data

Usage

import { CryptoDataInsightsFlow } from '@skynetxbt/flow-ai-investor';

// Initialize with CoinMarketCap
const flow = new CryptoDataInsightsFlow({
  apiKey: 'your-cmc-api-key',
  type: 'cmc',
  systemPrompt: 'You are a crypto analyst'
});

// Initialize with GeckoTerminal
const flow = new CryptoDataInsightsFlow({
  apiKey: 'your-api-key',
  type: 'geckoterminal',
  systemPrompt: 'You are a crypto analyst'
});

Data Sources

CoinMarketCap Analysis

// Analyze by coin name
const result = await flow.execute({
  message: "analyze Bitcoin"
});

GeckoTerminal Analysis

// Analyze by contract address and chain
const result = await flow.execute({
  message: "chain: base, coin address: 0x940181a94a35a4569e4529a3cdfb74e38fd98631"
});

Response Format

The flow returns simplified summaries in single paragraphs:

  • Cryptocurrency name highlighted
  • Key metrics like price changes emphasized
  • Technical jargon avoided
  • Focus on most important takeaways

Supported Chains

  • Base
  • Ethereum
  • Arbitrum
  • Optimism
  • And more (via GeckoTerminal)

Examples

  • "analyze this coin"
  • "find token info of Bitcoin"
  • "what is Ethereum"
  • "fetch token data for 0x..."
  • "tell me about this coin"

FAQs

Package last updated on 26 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts