For Internal Teams

The SDK for Your
Organization's Agent Fleet

Build internal agents that are secure by default. Sekuire handles the identity, policy, and audit logs so you can ship without getting blocked by InfoSec.

$npm install @sekuire/sdk
Read the Docs

The "Get Out of Jail Free" Card

Stop fighting with governance teams. Use the blessed SDK and get automatic deployment approval.

>
Agent Boots
SDK initializes
~
Beacon Fires
Phones home
#
Registry Validates
Identity check
+
Dashboard: Online
Visible to admins
01

Install the SDK

Add the Sekuire SDK to your project. It's the 'Golden Path' library that wraps your agent with required security controls.

npm install @sekuire/sdk
02

Bootstrap Identity

Inject standard environment variables. Your agent automatically authenticates with your organization's control plane.

export SEKUIRE_AGENT_ID=billing-service
03

Get Automatic Approval

Because your agent enforces policy at runtime, it's 'born compliant'. No manual security reviews required.

sdk.start() // Ready for production

Native in Your Stack

The SDK handles all the complexity: bootstrap via install token, credential rotation, heartbeat loops, and policy caching. All you do is call start().

import { SekuireSDK } from '@sekuire/sdk';
const sdk = SekuireSDK.fromEnv();
await sdk.start();
terminal
$npm install @sekuire/sdk
Added 1 package
$export SEKUIRE_AGENT_ID=billing-agent
$export SEKUIRE_INSTALL_TOKEN=tok_...
$ts-node agent.ts
[SekuireSDK] Connected to control plane. Policy version: v21

Easy Local Dev

Test your agents with full governance on localhost. The SDK auto-detects environment and works seamlessly in development, CI, and production.

sekuire.yml
# Agent governance policy
version: "2.0"
rules:
- name: "block-external-data"
match: "action.type == 'http_request'"
condition: "!destination.is_internal"
effect: deny
- name: "require-approval-pii"
match: "data.contains_pii == true"
effect: require_approval
DENIED
agent/shadow-crawler attempted external HTTP request

Everything You Need to Ship

Focus on your agent's logic. Let Sekuire handle the safety, identity, and compliance.

Type-safe SDKs

Full type coverage. Autocomplete and compile-time safety for every integration point.

Private Registry

Publish to your organization's private registry. Discoverable by internal agents, invisible to the world.

Policy-as-Code

Local policy engine enforces rules in <1ms. Network boundaries, PII checks, and more.

Distributed Tracing

SDK automatically instruments agent actions and maps them to OpenTelemetry traces.

Secret Management

Never hardcode keys. SDK retrieves runtime secrets securely from the control plane.

Golden Path

Standardize agent identity and behavior across teams. If it uses the SDK, it's approved.

Stop Fighting InfoSec

Stop wasting time on auth, logging, and policy negotiations. Ship your agents today with Sekuire.