curl -fsSL https://install.sekuire.ai | shVerify installation:
sekuire --versioncurl -fsSL https://install.sekuire.ai | shThis installer:
- Detects your platform and architecture
- Downloads the latest Sekuire CLI binary
- Verifies the download with SHA256 checksum
- Installs to
~/.sekuire/bin/ - Adds to your PATH automatically
Download the latest release from GitHub Releases.
Verify the download (recommended):
# Download SHA256 checksum
curl -LO https://github.com/YOUR_ORG/agent/releases/latest/download/sekuire-darwin-arm64.tar.gz.sha256
# Verify
sha256sum -c sekuire-darwin-arm64.tar.gz.sha256If you have Rust installed:
cargo install sekuire-cligit clone https://github.com/YOUR_ORG/agent.git
cd agent/packages/cli
cargo build --release
sudo cp target/release/sekuire /usr/local/bin/sekuire --version
# Output: sekuire 0.2.0sekuire login --registry https://registry.sekuire.aiThis will open your browser to authenticate. Once complete, you'll be ready to publish agents.
mkdir my-agent
cd my-agent
sekuire init --name "MyAgent"sekuire keygenImportant: Keep your .sekuire/secret.key file safe! This is your agent's private key.
- macOS/Linux:
~/.sekuire/config.json - Windows:
%USERPROFILE%\.sekuire\config.json
{
"default_registry": "https://registry.sekuire.ai",
"editor": "code",
"auto_update_check": true
}Download and replace the binary with the new version.
cargo install sekuire-cli --forcesudo rm /usr/local/bin/sekuirerm -rf ~/.sekuireMake sure ~/.sekuire/bin is in your PATH:
echo $PATH | grep "$HOME/.sekuire/bin"If not, add to your shell config:
# For bash
echo 'export PATH="$HOME/.sekuire/bin:$PATH"' >> ~/.bashrc
# For zsh
echo 'export PATH="$HOME/.sekuire/bin:$PATH"' >> ~/.zshrcOn macOS Catalina+, you may need to allow the binary:
xattr -d com.apple.quarantine ~/.sekuire/bin/sekuireOr go to System Preferences → Security & Privacy and click "Allow Anyway".
Install OpenSSL development libraries:
# Ubuntu/Debian
sudo apt-get install libssl-dev pkg-config
# Fedora/RHEL
sudo dnf install openssl-devel- Documentation: https://docs.sekuire.ai
- Issues: https://github.com/YOUR_ORG/agent/issues
- Discord: https://discord.gg/sekuire