@hashgraphonline/standards-agent-kit
Version:
A modular SDK for building on-chain autonomous agents using Hashgraph Online Standards, including HCS-10 for agent discovery and communication.
20 lines (19 loc) • 415 B
JavaScript
class BasePlugin {
/**
* Initialize the plugin with the provided context
* @param context The context containing shared resources
*/
async initialize(context) {
this.context = context;
}
/**
* Clean up resources when the plugin is unloaded
* Default implementation does nothing
*/
async cleanup() {
}
}
export {
BasePlugin
};
//# sourceMappingURL=standards-agent-kit.es19.js.map