adpa-enterprise-framework-automation
Version:
Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe
37 lines • 1.36 kB
TypeScript
/**
* File Utilities Module for Requirements Gathering Agent
*
* Provides comprehensive file management and document generation utilities
* for creating structured project documentation and PMBOK-compliant outputs.
*
* @version 2.1.3
* @author Requirements Gathering Agent Team
* @created 2024
* @updated June 2025
*
* Key Features:
* - Markdown file generation with automatic extension handling
* - Batch file operations with directory structure creation
* - Structured project documentation organization
* - PMBOK document categorization and placement
* - Error handling and logging for file operations
*
* @filepath c:\Users\menno\Source\Repos\requirements-gathering-agent\src\modules\fileUtils.ts
*/
/**
* Generate a markdown file with the specified content
*/
export declare function generateMarkdownFile(filename: string, content: string): Promise<void>;
/**
* Generate multiple markdown files in a specified directory
*/
export declare function generateMarkdownFiles(directory: string, files: Array<{
name: string;
content: string;
}>): Promise<void>;
/**
* Generate a structured project documentation folder
*/
export declare function generateProjectDocumentation(projectName: string, documents: Record<string, string>): Promise<void>;
export declare const fileUtilsVersion = "2.1.3";
//# sourceMappingURL=fileUtils.d.ts.map