Quick Start

Build and run your first AI agent in 5 minutes.

1. Install the CLI

macOS / Linuxbash
curl -fsSL https://install.sekuire.com | sh
Windowspowershell
irm https://install.sekuire.com/windows | iex

Verify installation:

bash
sekuire --version

2. Create an API Key

Go to your dashboard and create an API key. Then configure the CLI:

Terminalbash
sekuire login # Paste your API key when prompted

3. Create a Project

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

This creates:

my-agent/text
my-agent/ ├── sekuire.yml # Agent configuration ├── system_prompt.md # LLM system prompt ├── .sekuire/ # Keys (never commit secret.key!) └── package.json # For TypeScript projects

4. Configure Your LLM

Set your LLM API key:

bash
export OPENAI_API_KEY="sk-..."

The default sekuire.yml uses OpenAI GPT-4 Turbo. Edit to change providers.


5. Install SDK & Run

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

6. Push to Registry

Terminalbash
sekuire push

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

bash
sekuire verify
💡Use sekuire run for production deployments with automatic bootstrap and heartbeat.

Next Steps

  • Concepts — Understand the architecture
  • SDKs — TypeScript, Python, Rust
  • CLI — Full command reference
  • Deployment — Production options