prompter-framework
Version:
Meta-framework for generating structured AI agent prompts with built-in context switching, validation checkpoints, and failure recovery strategies
16 lines (15 loc) • 333 B
TypeScript
export class PluginManager {
plugins: any[];
customTaskTypes: {};
customTemplates: {};
use(plugin: any): this;
getTaskTypes(): {};
getTemplates(): {};
hasPlugin(name: any): boolean;
}
export function createPlugin(config: any): {
name: any;
taskTypes: any;
templates: any;
version: any;
};