Quick Start

Build the Framework

To transpile the TypeScript code into JavaScript, run:

npm run build

Available Commands

  1. List Available Agents View all configured AI agents and their personalities:

    npm run list-agents
  2. Monitor New Token Creations Watch for new token creations with AI commentary:

    npm run watch-tokens <agent-name>

    Example:

    npm run watch-tokens Nebula
  3. Monitor Token Trading Activity Track specific token trades with AI insights:

    npm run watch-token-trades <agent-name> <token-address>

    Example:

    npm run watch-token-trades Matrix SOL_TOKEN_ADDRESS
  4. Monitor Account Trading Activity Track account-specific trading with AI analysis:

    npm run watch-account-trades <agent-name> <account-address>

    Example:

    npm run watch-account-trades Stella WALLET_ADDRESS
  5. Monitor Raydium Liquidity Events Track liquidity pool activities with AI commentary:

    npm run watch-liquidity <agent-name>

    Example:

    npm run watch-liquidity Lumina
  6. Agent Interaction Engage in direct conversation with an agent:

    npm run agent-talk <agent-name>

    Example:

    npm run agent-talk Matrix

🔍 Output Format

Each command prints out AI-generated insights, status messages, or interactive prompts (depending on the command). You can pipe or redirect these outputs as needed for logging and analysis.

Last updated