openagent-weave (Rust)
Weave/libp2p transport adapter for the OpenAgent Core Protocol. INFORMATIVE (Phase 2): mid-migration to the Section 15 identity flow and does not currently compile; the normative binding is HTTP.
Purpose
Weave/libp2p transport adapter for the OpenAgent Core Protocol. INFORMATIVE (Phase 2): mid-migration to the Section 15 identity flow and does not currently compile; the normative binding is HTTP.
Read the protocol adapters guide.
Source contract
| Field | Value |
|---|---|
| Package | openagent-weave |
| Version | 0.1.0 |
| Language | Rust |
| Runtime floor | 1.78 |
| Manifest | openagent-sdk/adapters/weave/Cargo.toml |
| Distribution | Source package; registry publication not verified |
Manifest SHA-256: 85db4eabca334017dc870acd4f3738103f9fc11e2a2ed33aaa5b54370c281b2b. 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.
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/adapters/weave/src/lib.rs
Source SHA-256: f6ff34beea33ace1e6cf696d32d2ae99a199db8044efea61e6dad53ed3b486a9.
pub mod codec;
pub mod config;
pub mod error;
pub mod handler;
pub mod peer_auth;
pub mod protocol;
pub mod transport;
pub use config::WeaveAuthConfig;
pub use error::WeaveAuthError;
pub use handler::HandshakeHandler;
pub use peer_auth::{PeerAuthState, PeerAuthStore};
pub use protocol::{
HandshakeRequest, HandshakeResponse, WeaveAuthBehaviour, WeaveAuthEvent,
OPENAGENT_AUTH_PROTOCOL,
};
pub use transport::WeaveTransport;Module signatures and options
Browse the declared public source modules. This includes signatures, struct fields, enums, traits, method declarations, source comments and conditional attributes.
@openagentid/http (TypeScript)
HTTP adapter for the OpenAgent Auth Protocol (OAAP). Middleware, client, and discovery for agent-to-service mutual authentication.
openagent-ws (Rust)
WebSocket adapter for the OpenAgent Auth Protocol (OAAP) — maps the 4-step OAAP handshake onto WebSocket connections for real-time agent-to-agent communication.