You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the ability to extend GenAIScript's core contexts (global, host, workspace, parsers) through a plugin system, enabling users to add custom functionality without modifying core code.
Motivation
Currently, extending GenAIScript requires modifying core files or creating wrapper implementations. Users should be able to:
Add the ability to extend GenAIScript's core contexts (global, host, workspace, parsers) through a plugin system, enabling users to add custom functionality without modifying core code.
Motivation
Currently, extending GenAIScript requires modifying core files or creating wrapper implementations. Users should be able to:
.proto,.graphql, custom formats)Proposed Solution
Allow plugins to be registered via configuration file:
{ "plugins": ["./plugins/my-plugin.js", "genaiscript-plugin-database"] }Plugin API:
Benefits
Thoughts