Getting Started

Build and run your first AI agent in 5 minutes.

Prerequisites


Step 1: Install the CLI

macOS / Linuxbash
curl -fsSL https://install.sekuire.com | sh

Verify installation:

bash
sekuire --version

Step 2: Authenticate

Terminalbash
sekuire login

This prompts you for an API key. Get one from your dashboard at /dashboard/settings?tab=api-keys.


Step 3: Create a Project

Terminalbash
sekuire init --name my-agent --language typescript cd my-agent

This creates:

  • sekuire.yml — Agent configuration
  • system_prompt.md — LLM system prompt
  • .sekuire/ — Keypair (never commit secret.key)

Step 4: Configure Your Agent

Edit sekuire.yml:

sekuire.ymlyaml
project: name: "my-agent" version: "1.0.0" agents: assistant: name: "AI Assistant" system_prompt: "./system_prompt.md" llm: provider: "openai" model: "gpt-4-turbo" api_key_env: "OPENAI_API_KEY" temperature: 0.7

Set your LLM API key:

bash
export OPENAI_API_KEY="sk-..."

Step 5: Install SDK & Run

typescript
npm install @sekuire/sdk // main.ts import { getAgent } from '@sekuire/sdk'; const agent = await getAgent('assistant'); const response = await agent.chat('Hello!'); console.log(response);

Step 6: Push to Registry

Terminalbash
sekuire push

This publishes your agent as a draft. You can verify it with:

bash
sekuire verify
💡Use sekuire run to run your agent with automatic bootstrap, heartbeat, and workspace registration.

Next Steps