Installation

The CMD Framework is a modular and robust framework designed for deploying, interacting with, and managing AI agents and tokens. This guide will walk you through the installation process

Prerequisites

Before installing and using the CMD Framework, ensure you have the following:

  • Node.js: Install the latest stable version of Node.js. You can download it from Node.js Official Website.

    • Confirm installation by running:

      Copy

      node -v
  • npm: Node Package Manager (npm) is installed along with Node.js.

    • Confirm installation by running:

      Copy

      npm -v
  • Git: Ensure Git is installed to clone the repository. You can download it from Git Official Website.

    • Confirm installation by running:

      Copy

      git --version

Installation

To get started, clone the CMD Framework repository and install its dependencies:

  1. Clone the repository:

    Copy

    git clone https://github.com/ChainMindNetwork/cmd-fw-v1
  2. Navigate into the cloned directory:

    Copy

    cd cmd-fw-v1
  3. Install dependencies:

    Copy

    npm install

Alternative

Copy

npm i @chain-mind-org/sdk

Last updated