UNPKG

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

270 lines (213 loc) 9.6 kB
# Enhanced AI Prompt Engineering Guide ## Overview The Requirements Gathering Agent now features an advanced prompt engineering system that provides tailored, document-type-specific prompts for AI content generation. This system ensures that each document type receives specialized prompts that generate content directly relevant to its purpose and requirements. ## Key Features ### 🎯 Tailored System Prompts - **Document-specific expertise**: Each document type has a specialized AI persona (e.g., CBAP for BABOK documents, PMP for PMBOK documents) - **Role-based prompting**: AI assumes appropriate professional roles and expertise levels - **Context-aware generation**: Prompts are customized based on project context and document relationships ### 📚 Comprehensive Document Coverage - **BABOK documents**: Business analysis planning, elicitation, collaboration - **DMBOK documents**: Data governance, quality management, architecture - **PMBOK documents**: Project charters, risk management, scope planning - **Requirements documents**: User stories, acceptance criteria, traceability - **Technical documents**: Architecture design, system specifications - **Quality assurance**: Test strategies, quality metrics, validation ### 🔧 Intelligent Prompt Management - **Automatic prompt selection**: Best prompt chosen based on document type and context - **Fallback mechanisms**: Legacy prompts used if enhanced prompts unavailable - **Performance monitoring**: Quality scores and generation metrics tracked - **Continuous improvement**: Analytics help optimize prompt effectiveness ## Architecture ### Core Components 1. **PromptRegistry**: Central repository of all prompt templates 2. **PromptManager**: Intelligent prompt selection and context building 3. **EnhancedAIProcessor**: Advanced AI processing with quality validation 4. **BaseAIProcessor**: Updated base class with enhanced capabilities ### Prompt Template Structure Each prompt template includes: - **System Prompt**: AI role and expertise definition - **User Prompt Template**: Structured request with placeholders - **Structure Instructions**: Required document sections and format - **Quality Criteria**: Standards and validation requirements - **Metadata**: Version, tags, priority, token limits ## Usage ### CLI Commands ```bash # List available document types and categories npm run cli prompts list # List documents in specific category npm run cli prompts list --category babok # Test prompt for specific document type npm run cli prompts test user-stories # Test with custom context npm run cli prompts test business-case --context "Digital transformation project" # View performance analytics npm run cli prompts analytics # Initialize or reset the system npm run cli prompts init --reset ``` ### Programmatic Usage ```typescript import { initializePromptSystem, EnhancedAIProcessor } from './src/modules/ai/prompts/index.js'; // Initialize the system const { enhancedProcessor } = initializePromptSystem(); // Generate document with enhanced prompts const result = await enhancedProcessor.generateDocumentContent( 'user-stories', projectContext, { enableMetrics: true, qualityValidation: { minLength: 500, requiredSections: ['Epic-Level Stories', 'Acceptance Criteria'] } } ); if (result.success) { console.log('Generated content:', result.content); console.log('Quality score:', result.qualityScore); } else { console.error('Generation failed:', result.error); } ``` ### Integration with Existing Processors The enhanced system is backward compatible. Existing processors automatically use enhanced prompts when available: ```typescript export class ProjectManagementProcessor extends BaseAIProcessor { async getUserStories(context: string): Promise<string | null> { // Automatically tries enhanced prompts first, falls back to legacy return this.handleAICallWithFallback( 'user-stories', context, legacyOperation, 'User Stories Generation', { maxResponseTokens: 2500, qualityValidation: { minLength: 500, requiredSections: ['Epic-Level Stories', 'Acceptance Criteria'] } } ); } } ``` ## Document Types and Categories ### BABOK (Business Analysis Body of Knowledge) - `business-analysis-planning-and-monitoring` - `elicitation-and-collaboration` - `requirements-analysis-and-design-definition` - `requirements-life-cycle-management` - `solution-evaluation` - `strategy-analysis` ### DMBOK (Data Management Body of Knowledge) - `data-governance-framework` - `data-governance-plan` - `data-quality-management-plan` - `data-architecture-modeling-guide` - `master-data-management-strategy` - `metadata-management-framework` ### PMBOK (Project Management Body of Knowledge) - `project-charter` - `project-management-plan` - `risk-management-plan` - `scope-management-plan` - `stakeholder-engagement-plan` - `communication-management-plan` ### Requirements Management - `user-stories` - `acceptance-criteria` - `requirements-documentation` - `requirements-traceability-matrix` - `stakeholder-analysis` ### Technical Design - `architecture-design` - `system-design` - `database-schema` - `api-documentation` - `security-design` - `performance-requirements` ### Quality Assurance - `test-strategy` - `test-plan` - `test-cases` - `quality-metrics` - `performance-test-plan` - `security-testing` ## Quality Validation The system includes comprehensive quality validation: ### Automatic Checks - **Minimum length**: Ensures content meets expected size - **Required sections**: Validates presence of key document sections - **Forbidden phrases**: Prevents generic or placeholder content - **Structure validation**: Checks for proper markdown formatting ### Quality Scoring - Content length and completeness (0-100 scale) - Section coverage and organization - Professional language and terminology - Absence of generic placeholders ### Performance Metrics - Generation success rates - Average quality scores - Response times and token usage - Common warnings and issues ## Best Practices ### For Document Generation 1. **Provide rich context**: Include detailed project information 2. **Use appropriate document types**: Select the most specific type available 3. **Review quality scores**: Address warnings and improve context 4. **Iterate and refine**: Use analytics to improve prompt effectiveness ### For Prompt Development 1. **Define clear AI personas**: Specify expertise and certification levels 2. **Structure instructions clearly**: Provide detailed section requirements 3. **Include quality criteria**: Define success metrics and standards 4. **Test thoroughly**: Validate prompts with various project contexts ### For System Administration 1. **Monitor performance**: Regular review of analytics and metrics 2. **Update prompts**: Keep templates current with best practices 3. **Manage categories**: Organize prompts for easy discovery 4. **Backup configurations**: Export settings for disaster recovery ## Troubleshooting ### Common Issues **Prompt not found for document type** - Check available document types: `npm run cli prompts list` - Verify document type spelling and format - Use generic fallback if specific prompt unavailable **Low quality scores** - Provide more detailed project context - Check for missing required sections - Review and address quality warnings **Generation failures** - Verify AI provider configuration - Check network connectivity and API limits - Review error messages for specific issues **Performance issues** - Monitor token usage and response times - Optimize context length and complexity - Consider prompt caching for repeated generations ### Getting Help 1. **Check system status**: `npm run cli prompts analytics` 2. **Test specific prompts**: `npm run cli prompts test <document-type>` 3. **Review logs**: Check console output for detailed error messages 4. **Reset system**: `npm run cli prompts init --reset` for clean start ## Future Enhancements ### Planned Features - **Custom prompt templates**: User-defined prompts for specialized needs - **Prompt versioning**: Track and manage prompt evolution - **A/B testing**: Compare prompt effectiveness - **Machine learning optimization**: Automatic prompt improvement - **Integration APIs**: External system integration - **Advanced analytics**: Detailed performance insights ### Contributing To contribute new prompts or improvements: 1. Follow the existing prompt template structure 2. Include comprehensive testing and validation 3. Document prompt purpose and usage 4. Submit pull requests with detailed descriptions ## Conclusion The enhanced prompt engineering system represents a significant advancement in AI-powered document generation. By providing tailored, expert-level prompts for each document type, the system ensures high-quality, relevant content that meets professional standards and stakeholder expectations. The system's intelligent design, comprehensive coverage, and robust quality validation make it an essential tool for efficient and effective requirements gathering and project documentation.