Quickstart Guide

Welcome to the AIEA Agents Documentation. This guide will walk you through initializing your first intelligent node array and authenticating your API requests.

1. Obtain your API Key

Log into your AIEA Developer Dashboard and generate a new secure connection token. Keep this key secret, as it provides administrative access to your agent clusters.

2. Install the SDK

We provide native SDKs for Node.js, Python, and Go. To install the Node package:

npm install @aiea-agents/sdk

3. Initialize the Client

Require the client in your application and initialize it using your key:

import { AIEAClient } from '@aiea-agents/sdk'; const client = new AIEAClient({ apiKey: process.env.AIEA_API_KEY });

4. Spawn Your First Agent

Once authenticated, you can instantiate any agent from the registry. Here's how to spawn the Research Agent:

const agent = await client.spawn('research-agent'); const result = await agent.run({ query: 'Latest advances in multimodal AI', depth: 'comprehensive', outputFormat: 'markdown' }); console.log(result.output);

5. Next Steps

Explore the full Agent Registry to discover all available nodes. Visit the Swarm Orchestration guide to learn how to chain multiple agents together for complex workflows.