/** * Wiki Engine Agent * * Implements Sisyphus orchestration pattern for multi-agent wiki collaboration * Supports synchronous, asynchronous, and review workflow collaboration modes * * Skills: * - Page management (create, read, update, delete) * - Version control (track all changes) * - Conflict detection and resolution * - Collaboration mode support (sync, async, review) */ export interface WikiPage { id: string; title: string; content: string; author: string; created_at: Date; updated_at: Date; versions: WikiVersion[]; status: 'draft' | 'pending_review' | 'approved' | 'published'; } export interface WikiVersion { version_number: number; content: string; author: string; timestamp: Date; changelog?: string; parent_version?: number; } /** * Creates a new wiki page using Sisyphus orchestration */ export declare function createPage(title: string, content: string, author: string, status?: 'draft' | 'pending_review' | 'approved' | 'published'): Promise; /** * Updates an existing wiki page using Sisyphus orchestration */ export declare function updatePage(pageId: string, content: string, author: string, changelog?: string): Promise; /** * Retrieves a wiki page using Sisyphus orchestration */ export declare function getPage(pageId: string): Promise; /** * Searches wiki pages using Sisyphus orchestration */ export declare function searchPages(query: string): Promise; /** * Lists all wiki pages using Sisyphus orchestration */ export declare function listPages(): Promise; //# sourceMappingURL=wiki-engine-agent.d.ts.map