trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
16 lines • 597 B
TypeScript
/**
* Idea Garden Plugin
*
* Registers the Idea Garden feature and exposes agent tools to traverse
* and resurrect ideas from the garden.
*
* @module trellis/plugins/idea-garden
*/
import type { PluginDef } from '../../core/plugins/types.js';
import type { TrellisKernel } from '../../core/kernel/trellis-kernel.js';
import type { AgentHarness } from '../../core/agents/harness.js';
import { IdeaGarden } from './api.js';
export declare function createIdeaGardenPlugin(kernel: TrellisKernel, harness: AgentHarness): PluginDef & {
api: IdeaGarden;
};
//# sourceMappingURL=plugin.d.ts.map