13 lines
445 B
JavaScript
13 lines
445 B
JavaScript
/**
|
|
* Federated AgentDB - Main exports
|
|
*
|
|
* Provides secure federated memory for ephemeral agents with:
|
|
* - QUIC-based synchronization
|
|
* - Zero-trust security (mTLS + JWT + AES-256)
|
|
* - Tenant isolation
|
|
* - Vector clock conflict resolution
|
|
*/
|
|
export { EphemeralAgent } from './EphemeralAgent.js';
|
|
export { FederationHub } from './FederationHub.js';
|
|
export { SecurityManager } from './SecurityManager.js';
|
|
//# sourceMappingURL=index.js.map
|