packfs-core
Version:
Semantic filesystem operations for LLM agent frameworks with natural language understanding. See LLM_AGENT_GUIDE.md for copy-paste examples.
36 lines • 951 B
TypeScript
/**
* AutoGPT plugin implementation for PackFS
*/
import type { AutoGPTPluginConfig } from './types.js';
export declare class PackFSAutoGPTPlugin {
private readonly config;
constructor(config?: AutoGPTPluginConfig);
/**
* Get plugin manifest
*/
getManifest(): {
name: string | undefined;
version: string | undefined;
description: string;
commands: ({
name: string;
description: string;
parameters: {
path: string;
content?: undefined;
};
} | {
name: string;
description: string;
parameters: {
path: string;
content: string;
};
})[];
};
/**
* Execute plugin command
*/
executeCommand(command: string, parameters: Record<string, unknown>): Promise<string>;
}
//# sourceMappingURL=plugin.d.ts.map