Installation

Install the Sekuire CLI and SDKs on your platform.

CLI Installation

Quick Install (Recommended)

macOS / Linuxbash
curl -fsSL https://install.sekuire.com | sh
Windows (PowerShell)powershell
irm https://install.sekuire.com/windows | iex

Cargo (Rust toolchain)

bash
cargo install sekuire-agent-cli

Verify Installation

Terminalbash
$ sekuire --version sekuire-agent-cli 0.1.0

SDK Installation

TypeScript / JavaScript

bash
npm install @sekuire/sdk # or pnpm add @sekuire/sdk # or yarn add @sekuire/sdk

Python

bash
pip install sekuire-sdk # or poetry add sekuire-sdk

Rust

Cargo.tomltoml
[dependencies] sekuire-sdk = "0.1" tokio = { version = "1", features = ["full"] }

System Requirements

ComponentRequirement
CLImacOS, Linux, or Windows
TypeScript SDKNode.js 18+
Python SDKPython 3.9+
Rust SDKRust 1.70+

Authentication

After installing the CLI, configure your API key:

  1. Go to Dashboard → Settings → API Keys
  2. Create a new API key
  3. Run sekuire login and 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