CLI Commands Reference

Complete reference for all Sekuire CLI commands.

Global Options

OptionDescription
--help, -hShow help for command
--version, -VShow CLI version

init

Scaffold a new agent project.

bash
sekuire init [OPTIONS]
OptionDescription
--name <NAME>Project name
--language <LANG>typescript, python, rust
--provider <PROVIDER>openai, anthropic, google, ollama
--forceOverwrite existing files

Full documentation →


login

Configure API key for authentication.

bash
sekuire login [OPTIONS]
OptionDescription
--web-url <URL>Web app URL (default: http://localhost:5555)

Full documentation →


logout

Remove stored API key.

bash
sekuire logout

status

Check current authentication status.

bash
sekuire status

hash

Calculate the deterministic Sekuire ID from the current project.

bash
sekuire hash

push

Push agent to registry (draft).

bash
sekuire push [OPTIONS]
OptionDescription
--registry <URL>Registry URL
--workspace <ID>Target workspace for policy validation
--skip-policySkip policy validation

Full documentation →


verify

Verify a remote agent's identity.

bash
sekuire verify [OPTIONS]
OptionDescription
--agent-id <ID>Sekuire ID to verify
--registry <URL>Registry URL

run

Run agent locally with automatic bootstrap.

bash
sekuire run [OPTIONS]
OptionDescription
--cmd <CMD>Agent start command (default: from sekuire.yml)
--workspace <ID>Target workspace
--heartbeat-interval <SEC>Heartbeat interval (default: 30)

Full documentation →


config

Manage CLI configuration.

bash
sekuire config <COMMAND>
SubcommandDescription
showShow all config values
get <KEY>Get a specific value
set <KEY> <VALUE>Set a value

Full documentation →


policy

Workspace policy operations.

bash
sekuire policy <COMMAND>
SubcommandDescription
pullDownload workspace policy
validateVerify policy integrity
showDisplay policy summary

Full documentation →


install

Installation helpers.

bash
sekuire install <COMMAND>
SubcommandDescription
tokenCreate workspace-scoped install token
bundleGenerate Helm chart for BYOC
agentInstall agent into workspace

Full documentation →