Installation Guide

Get started with MoleWhisperer's AI agents in your project. Follow these steps to install and configure the agents.

Quick Start

# Install via npm
npm install @molewhisperer/agents

# Or using yarn
yarn add @molewhisperer/agents

# Initialize configuration
npx molewhisperer init

Configuration

Create a configuration file in your project root:

// molewhisperer.config.js
module.exports = {
  agents: {
    whisperMind: {
      enabled: true,
      config: {
        neuralDepth: 7,
        quantumLayers: 3
      }
    },
    dataHarvester: {
      enabled: true,
      config: {
        sources: ["api", "database"]
      }
    }
  },
  security: {
    encryption: "aes-256-gcm",
    authentication: true
  }
}