Skip to main content

Getting Started with Starfort

Follow these steps to integrate Starfort into your environment.

Prerequisites

Before you begin, ensure you have the following:
  • An active AIM Intelligence account
  • Access to your AI model infrastructure

Installation

Install the Starfort SDK using your preferred package manager.
npm install @aim-intelligence/starfort
Obtain your API keys from the AIM Intelligence dashboard and configure them in your environment.
export STARFORT_API_KEY="your_api_key_here"

Usage

Initialize the Starfort client to start monitoring your AI models.
import { Starfort } from '@aim-intelligence/starfort';

const client = new Starfort({
  apiKey: process.env.STARFORT_API_KEY
});

// Start protection
client.protect();

Next Steps