Getting Started
Build and run your first AI agent in 5 minutes.
Prerequisites
- Sekuire CLI installed
- API key from your dashboard
- LLM API key (OpenAI, Anthropic, etc.)
Step 1: Install the CLI
macOS / Linuxbash
curl -fsSL https://install.sekuire.com | shVerify installation:
bash
sekuire --versionStep 2: Authenticate
Terminalbash
sekuire loginThis 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-agentThis creates:
sekuire.yml— Agent configurationsystem_prompt.md— LLM system prompt.sekuire/— Keypair (never commitsecret.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.7Set 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 pushThis 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
- Configuration — sekuire.yml deep dive
- Tools — Add capabilities
- Deployment — Production options