Sekuire CLI
The command-line interface for the Sekuire Secure Layer - build, sign, and distribute verifiable AI agents.
Quick Install
curl -fsSL https://install.sekuire.ai | sh
Verify installation:
sekuire --version
Core Workflow
Private Registry (Enterprise)
Terminal
# 1. Create a new agent project
sekuire init --name my-agent
# 2. Configure your API key
sekuire login
# 3. Publish to private registry (default)
sekuire publish
# 4. Build and push your Docker image
docker build -t registry.sekuire.ai/org/my-org/my-agent:v1 .
sekuire registry login
docker push registry.sekuire.ai/org/my-org/my-agent:v1
Public Registry (Sekuire Verified)
Terminal
# 1. Create a new agent project
sekuire init --name my-agent
# 2. Configure your API key
sekuire login
# 3. Publish to public registry (Sekuire builds)
sekuire publish --public --repo github.com/my-org/my-agent
# 4. Track build status
sekuire builds status <build_id>
Command Reference
Project Setup
| Command | Description |
|---|---|
| init | Scaffold a new agent project |
| keygen | Generate Ed25519 keypair |
| hash | Calculate Sekuire ID |
API Key Authentication
| Command | Description |
|---|---|
| login | Configure API key |
| logout | Remove API key |
| status | Check API key status |
| auth whoami | Show current user info |
| config | Manage configuration |
Publishing & Registry
| Command | Description |
|---|---|
| push | Push agent to registry (draft mode) |
| publish | Publish to private registry (default) |
| publish --public | Publish to public registry (Sekuire builds) |
| registry login | Authenticate with container registry |
Verification
| Command | Description |
|---|---|
| verify | Verify remote agent identity via handshake |
| verify-agent | Comprehensive security audit ("Bar Exam") |
Analysis & Builds
| Command | Description |
|---|---|
| analysis | View source analysis results |
| builds create | Trigger a new build |
| builds status | Check public registry build status |
| builds list | List recent builds |
Deployment
| Command | Description |
|---|---|
| run | Run agent locally with bootstrap |
| install token | Create install token |
| install bundle | Generate Helm chart (BYOC) |
| install agent | Install agent into workspace |
Policy Management
| Command | Description |
|---|---|
| policy pull | Download workspace policy |
| policy validate | Verify policy integrity |
| policy show | Display policy summary |
Testing & Metrics
| Command | Description |
|---|---|
| test | Run test suites (manifest, policy, endpoints, handshake) |
| metrics | View agent performance metrics |
| leaderboard | View top agents by reputation |
| search | Search registry for agents |
Container Registry
| Command | Description |
|---|---|
| registry login | Authenticate with OCI registry |
| registry push | Push container image |
| registry pull | Pull container image |
| images list | List registry images |
| images scan | Scan image for vulnerabilities |
| images scan-report | View detailed vulnerability report |
| docker-init | Generate Docker/CI files |
Agent Lifecycle
| Command | Description |
|---|---|
| agent-status | Show agent runtime status |
| logs | View recent agent logs |
| stop | Pause an agent |
| resume | Resume a paused agent |
| kill | Terminate an agent |
Extensions
| Command | Description |
|---|---|
| add memory | Add memory backend to project |
Onboarding
| Command | Description |
|---|---|
| adopt | Add Sekuire to existing project |
Project Structure
After running sekuire init:
my-agent/
my-agent/
├── sekuire.yml # Agent configuration
├── system_prompt.md # LLM system prompt
├── tools.json # Tool definitions
├── tools/ # Tool implementations
├── .sekuire/ # Keys (DO NOT COMMIT secret.key)
├── docker-compose.yml # Local dev environment
└── Dockerfile # Production build
warning
Never commit .sekuire/secret.key to version control. Add it to your .gitignore.
Next Steps
- Initialization Guide - Templates and frameworks
- Authentication - API key access
- Publishing & Registry - Two-tier registry model
- Source Analysis - Capability visibility
- Build Status - Public registry builds
- Policy - Workspace compliance