Publishing & Verification
Push your agent to the registry and verify remote agents.
Commands
- sekuire push â Push agent to registry
- sekuire verify â Verify remote agent
- sekuire verify-agent â Comprehensive security check
push
Push your agent manifest to the Sekuire Registry as a draft.
bash
sekuire push [OPTIONS]Options
| Option | Description |
|---|---|
-r, --registry <URL> | Registry URL (default: http://localhost:5556) |
--workspace <ID> | Validate against workspace policy |
--policy <PATH> | Local policy file (default: policy.json) |
--force | Push even if policy validation fails |
Process
- Calculates Sekuire ID from manifest
- Signs the hash with your private key
- Validates against workspace policy (if specified)
- 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
| Option | Description |
|---|---|
-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 matchesverify-agent
Comprehensive security verification ("The Bar Exam") â full audit of an agent.
bash
sekuire verify-agent [OPTIONS]Options
| Option | Description |
|---|---|
-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
- Identity â Valid Sekuire ID and signature
- Registry â Entry exists and matches
- Source â Code matches published manifest
- 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