Installation
Install the Sekuire CLI and SDKs on your platform.
CLI Installation
Quick Install (Recommended)
macOS / Linuxbash
curl -fsSL https://install.sekuire.com | shWindows (PowerShell)powershell
irm https://install.sekuire.com/windows | iexCargo (Rust toolchain)
bash
cargo install sekuire-agent-cliVerify Installation
Terminalbash
$ sekuire --version
sekuire-agent-cli 0.1.0SDK Installation
TypeScript / JavaScript
bash
npm install @sekuire/sdk
# or
pnpm add @sekuire/sdk
# or
yarn add @sekuire/sdkPython
bash
pip install sekuire-sdk
# or
poetry add sekuire-sdkRust
Cargo.tomltoml
[dependencies]
sekuire-sdk = "0.1"
tokio = { version = "1", features = ["full"] }System Requirements
| Component | Requirement |
|---|---|
| CLI | macOS, Linux, or Windows |
| TypeScript SDK | Node.js 18+ |
| Python SDK | Python 3.9+ |
| Rust SDK | Rust 1.70+ |
Authentication
After installing the CLI, configure your API key:
- Go to Dashboard → Settings → API Keys
- Create a new API key
- Run
sekuire loginand paste your key
Terminalbash
$ sekuire login
🔐 Sekuire Login
Enter your API Key: sk_live_...
✅ Login successful!💡See the Authentication docs for environment variable and CI/CD setup.
Next Steps
- Quick Start — Build your first agent
- Concepts — Understand the architecture
- CLI Reference — All commands