The command-line interface for the Sekuire Trust Protocol.
curl -fsSL https://install.sekuire.ai | shVerify installation:
sekuire --versionirm https://install.sekuire.ai/windows | iexRequires Rust 1.70+ and Cargo.
git clone https://github.com/sekuire/cli.git
cd cli
cargo build --release
sudo mv target/release/sekuire /usr/local/bin/For manual binary downloads, see GitHub Releases.
Create a new agent identity and scaffold a project in your preferred language.
# Interactive mode
sekuire init
# Non-interactive mode
sekuire init --name MyAgent --language pythonSupported languages:
- Python: Generates
main.pyandrequirements.txt - Rust: Generates a Cargo project
- TypeScript: Generates a Node.js project with
package.json
Generate your agent's cryptographic identity (Ed25519).
sekuire keygen- Creates
.sekuire/secret.key(Keep this safe!) - Creates
.sekuire/public.key
Register your agent with the Sekuire Registry.
sekuire pushExecute your agent with automatic workspace integration.
sekuire runVerify the identity of other agents.
sekuire verify --url http://other-agent.comFull documentation: https://docs.sekuire.ai/docs/cli