Publishing & Verification

Push your agent to the registry and verify remote agents.

Commands


push

Push your agent manifest to the Sekuire Registry as a draft.

bash
sekuire push [OPTIONS]

Options

OptionDescription
-r, --registry <URL>Registry URL (default: http://localhost:5556)
--workspace <ID>Validate against workspace policy
--policy <PATH>Local policy file (default: policy.json)
--forcePush even if policy validation fails

Process

  1. Calculates Sekuire ID from manifest
  2. Signs the hash with your private key
  3. Validates against workspace policy (if specified)
  4. Pushes to registry as draft

Example

Terminalbash
$ sekuire push --workspace ws_abc123 🆔 Identity: 7f8a9b3c2d1e... 🔐 Signature: a1b2c3d4... 🔒 Validating active policy for workspace ws_abc123... ✅ Policy policy_123 (v1) verified 📝 Pushing agent as DRAFT... ✅ Agent pushed successfully!
â„šī¸When --workspace is specified, the CLI fetches the active policy and validates your manifest against it.

verify

Verify a remote agent's identity via handshake protocol.

bash
sekuire verify [OPTIONS]

Options

OptionDescription
-u, --url <URL>Agent URL (required)
-i, --id <ID>Expected Agent ID (optional)
-r, --registry <URL>Registry URL

Example

Terminalbash
$ sekuire verify --url http://localhost:8000 --id 7f8a9b3c... 🔍 Verifying agent at http://localhost:8000... ✅ Identity confirmed: 7f8a9b3c... ✅ Signature valid ✅ Registry entry matches

verify-agent

Comprehensive security verification ("The Bar Exam") — full audit of an agent.

bash
sekuire verify-agent [OPTIONS]

Options

OptionDescription
-r, --registry <URL>Registry URL
--repo-url <URL>Repository URL (defaults to git remote)
--compliance <FRAMEWORK>Compliance check: hipaa, soc2, gdpr, pci-dss

Checks Performed

  1. Identity — Valid Sekuire ID and signature
  2. Registry — Entry exists and matches
  3. Source — Code matches published manifest
  4. Compliance — Framework-specific requirements

Example

Terminalbash
$ sekuire verify-agent --compliance hipaa 🔒 Running comprehensive verification... ✅ Identity verification passed ✅ Registry entry valid ✅ Source code matches manifest âš ī¸ HIPAA compliance: 2 warnings - Audit logging not configured - Data encryption not specified Overall: PASSED with warnings