OpenAgentID documentation
Source referencesPackage entries

openagent-sdk (Rust)

OpenAgent SDK — Clerk for autonomous agents. One import for OAS identity, Arsenal credentials, and AEGIS verification.

Purpose

OpenAgent SDK — Clerk for autonomous agents. One import for OAS identity, Arsenal credentials, and AEGIS verification.

Read the unified sdks guide.

Source contract

FieldValue
Packageopenagent-sdk
Version0.1.0
LanguageRust
Runtime floor1.78
Manifestopenagent-sdk/sdks/rust/Cargo.toml
DistributionSource package; registry publication not verified

Manifest SHA-256: f8d57ec13e688d7f15603eab61d362842cd8b5bc64a4f172f36a95e5c5cb9fee. The recorded Git revision identifies the containing repository; the manifest and entry-point hashes identify this working-tree snapshot.

Integration

Use the package root above from an authorized source checkout. Preserve sibling dependencies and their version/feature requirements. Install the runtime and compile the selected package before using its generated artifacts. The task guide describes configuration, trust boundaries, and error behavior. Test/conformance and deployment packages are supporting tools, not interchangeable production identity providers.

Features and optional dependencies

{
  "default": [],
  "aegis": [
    "dep:openagent-aegis-sdk",
    "dep:openagent-aegis-core"
  ],
  "arsenal": [
    "dep:arsenal-sdk",
    "dep:arsenal-core"
  ],
  "axum": [
    "dep:axum"
  ],
  "full": [
    "aegis",
    "arsenal",
    "axum"
  ]
}

Exported entry points

The declarations below are extracted from the named entry files. This is a navigable source reference, not compiler-generated documentation of every transitive module. Feature gates and runtime requirements still apply. Private implementation files are not promoted to public APIs merely because they contain a public declaration.

openagent-sdk/sdks/rust/src/lib.rs

Source SHA-256: a08e99ea97d2d8baf98b88b5fc13588ae769ec424219aaba3b1cd1d7a78b22ae.

pub mod act;
pub mod agent;
pub mod builder;
pub mod config;
pub mod credentials;
pub mod errors;
pub mod identity;
pub mod skills;
pub mod verification;
pub use agent::authenticate_with_verifier;
pub use agent::{CreateAgentOptions, OpenAgent};
pub use builder::OpenAgentBuilder;
pub use config::{BrokerMtlsConfig, OpenAgentConfig};
pub use credentials::CredentialClient;
pub use errors::{OpenAgentError, Result};
pub use identity::{AgentIdentityRecord, ParsedDid};
pub use skills::{AllowListPolicy, SkillsPolicy, SkillsPolicyHandle};
pub use verification::{
    authority_context_from_oas, LineageAuthorityContext, VerifiedContext, Verifier,
};
pub use arsenal_sdk;
pub use oas_sdk;
pub use openagent_aegis_sdk;
pub mod sync {

Module signatures and options

Browse the declared public source modules. This includes signatures, struct fields, enums, traits, method declarations, source comments and conditional attributes.

On this page