13 lines
582 B
TypeScript
13 lines
582 B
TypeScript
/**
|
|
* 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, type EphemeralAgentConfig, type AgentContext } from './EphemeralAgent.js';
|
|
export { FederationHub, type FederationHubConfig, type SyncMessage } from './FederationHub.js';
|
|
export { SecurityManager, type AgentTokenPayload, type EncryptionKeys } from './SecurityManager.js';
|
|
//# sourceMappingURL=index.d.ts.map
|