Quick Start
Build and run your first AI agent in 5 minutes.
1. Install the CLI
macOS / Linuxbash
curl -fsSL https://install.sekuire.com | shWindowspowershell
irm https://install.sekuire.com/windows | iexVerify installation:
bash
sekuire --version2. 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 prompted3. Create a Project
Terminalbash
sekuire init --name my-agent --language typescript
cd my-agentThis 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 projects4. 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 pushThis 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