Catalog
github/code-exemplars-blueprint-generator

github

code-exemplars-blueprint-generator

Technology-agnostic prompt generator that creates customizable AI prompts for scanning codebases and identifying high-quality code exemplars. Supports multiple programming languages (.NET, Java, JavaScript, TypeScript, React, Angular, Python) with configurable analysis depth, categorization methods, and documentation formats to establish coding standards and maintain consistency across development teams.

v1.0Latest
New~1.7kUpdated Jun 26, 2026

Code Exemplars Blueprint Generator

Configuration Variables

${PROJECT_TYPE="Auto-detect|.NET|Java|JavaScript|TypeScript|React|Angular|Python|Other"} ${SCAN_DEPTH="Basic|Standard|Comprehensive"} ${INCLUDE_CODE_SNIPPETS=true|false} ${CATEGORIZATION="Pattern Type|Architecture Layer|File Type"} ${MAX_EXAMPLES_PER_CATEGORY=3} ${INCLUDE_COMMENTS=true|false}

Generated Prompt

"Scan this codebase and generate an exemplars.md file that identifies high-quality, representative code examples. The exemplars should demonstrate our coding standards and patterns to help maintain consistency. Use the following approach:

1. Codebase Analysis Phase

  • ${PROJECT_TYPE == "Auto-detect" ? "Automatically detect primary programming languages and frameworks by scanning file extensions and configuration files" : Focus on ${PROJECT_TYPE} code files}
  • Identify files with high-quality implementation, good documentation, and clear structure
  • Look for commonly used patterns, architecture components, and well-structured implementations
  • Prioritize files that demonstrate best practices for our technology stack
  • Only reference actual files that exist in the codebase - no hypothetical examples

2. Exemplar Identification Criteria

  • Well-structured, readable code with clear naming conventions
  • Comprehensive comments and documentation
  • Proper error handling and validation
  • Adherence to design patterns and architectural principles
  • Separation of concerns and single responsibility principle
  • Efficient implementation without code smells
  • Representative of our standard approaches

3. Core Pattern Categories

${PROJECT_TYPE == ".NET" || PROJECT_TYPE == "Auto-detect" ? `#### .NET Exemplars (if detected)

  • Domain Models: Find entities that properly implement encapsulation and domain logic
  • Repository Implementations: Examples of our data access approach
  • Service Layer Components: Well-structured business logic implementations
  • Controller Patterns: Clean API controllers with proper validation and responses
  • Dependency Injection Usage: Good examples of DI configuration and usage
  • Middleware Components: Custom middleware implementations
  • Unit Test Patterns: Well-structured tests with proper arrangement and assertions` : ""}

${(PROJECT_TYPE == "JavaScript" || PROJECT_TYPE == "TypeScript" || PROJECT_TYPE == "React" || PROJECT_TYPE == "Angular" || PROJECT_TYPE == "Auto-detect") ? `#### Frontend Exemplars (if detected)

  • Component Structure: Clean, well-structured components
  • State Management: Good examples of state handling
  • API Integration: Well-implemented service calls and data handling
  • Form Handling: Validation and submission patterns
  • Routing Implementation: Navigation and route configuration
  • UI Components: Reusable, well-structured UI elements
  • Unit Test Examples: Component and service tests` : ""}

${PROJECT_TYPE == "Java" || PROJECT_TYPE == "Auto-detect" ? `#### Java Exemplars (if detected)

  • Entity Classes: Well-designed JPA entities or domain models
  • Service Implementations: Clean service layer components
  • Repository Patterns: Data access implementations
  • Controller/Resource Classes: API endpoint implementations
  • Configuration Classes: Application configuration
  • Unit Tests: Well-structured JUnit tests` : ""}

${PROJECT_TYPE == "Python" || PROJECT_TYPE == "Auto-detect" ? `#### Python Exemplars (if detected)

  • Class Definitions: Well-structured classes with proper documentation
  • API Routes/Views: Clean API implementations
  • Data Models: ORM model definitions
  • Service Functions: Business logic implementations
  • Utility Modules: Helper and utility functions
  • Test Cases: Well-structured unit tests` : ""}

4. Architecture Layer Exemplars

  • Presentation Layer:

    • User interface components
    • Controllers/API endpoints
    • View models/DTOs
  • Business Logic Layer:

    • Service implementations
    • Business logic components
    • Workflow orchestration
  • Data Access Layer:

    • Repository implementations
    • Data models
    • Query patterns
  • Cross-Cutting Concerns:

    • Logging implementations
    • Error handling
    • Authentication/authorization
    • Validation

5. Exemplar Documentation Format

For each identified exemplar, document:

  • File path (relative to repository root)
  • Brief description of what makes it exemplary
  • Pattern or component type it represents ${INCLUDE_COMMENTS ? "- Key implementation details and coding principles demonstrated" : ""} ${INCLUDE_CODE_SNIPPETS ? "- Small, representative code snippet (if applicable)" : ""}

${SCAN_DEPTH == "Comprehensive" ? `### 6. Additional Documentation

  • Consistency Patterns: Note consistent patterns observed across the codebase
  • Architecture Observations: Document architectural patterns evident in the code
  • Implementation Conventions: Identify naming and structural conventions
  • Anti-patterns to Avoid: Note any areas where the codebase deviates from best practices` : ""}

${SCAN_DEPTH == "Comprehensive" ? "7" : "6"}. Output Format

Create exemplars.md with:

  1. Introduction explaining the purpose of the document
  2. Table of contents with links to categories
  3. Organized sections based on ${CATEGORIZATION}
  4. Up to ${MAX_EXAMPLES_PER_CATEGORY} exemplars per category
  5. Conclusion with recommendations for maintaining code quality

The document should be actionable for developers needing guidance on implementing new features consistent with existing patterns.

Important: Only include actual files from the codebase. Verify all file paths exist. Do not include placeholder or hypothetical examples. "

Expected Output

Upon running this prompt, GitHub Copilot will scan your codebase and generate an exemplars.md file containing real references to high-quality code examples in your repository, organized according to your selected parameters.

Files1
1 files · 1.0 KB

Select a file to preview

Overall Score

76/100

Grade

B

Good

Safety

87

Quality

72

Clarity

82

Completeness

68

Summary

This skill generates customizable AI prompts for scanning codebases and identifying high-quality code exemplars across multiple languages (.NET, Java, JavaScript, Python, etc.). It uses configuration variables to control analysis depth, output format, and categorization method, then produces a structured prompt that AI tools (like Copilot) can execute to create an exemplars.md documentation file showing coding standards and best practices within a repository.

Detected Capabilities

prompt generationcode analysis guidancedocumentation creationmulti-language supportconfigurable template expansionconditional logic for technology-specific sections

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

identify code exemplarsdocument coding standardsanalyze codebase patternscreate exemplars guideestablish reference examples

Use Cases

  • Establish coding standards by documenting existing high-quality code patterns in a repository
  • Onboard new developers by providing real examples of recommended implementation approaches
  • Maintain consistency across teams by creating a central reference guide for exemplary code
  • Generate architecture documentation that shows how different layers and patterns are implemented in practice
  • Create custom analysis workflows for different technology stacks with adjustable analysis depth and categorization

Quality Notes

  • Strength: Well-documented configuration variables with clear enumerated options (PROJECT_TYPE, SCAN_DEPTH, CATEGORIZATION) make it easy to understand customization possibilities
  • Strength: Explicit requirement that 'Only include actual files from the codebase. Verify all file paths exist. Do not include placeholder or hypothetical examples' ensures outputs are grounded in reality and maintainable
  • Strength: Comprehensive technology coverage (.NET, Java, JavaScript, TypeScript, React, Angular, Python) with category examples tailored to each language's patterns (e.g., JPA entities for Java, components for React)
  • Strength: Architecture-layer organization (presentation, business logic, data access, cross-cutting concerns) provides a framework applicable across all technology stacks
  • Strength: Clear distinction between output configurations (INCLUDE_CODE_SNIPPETS, INCLUDE_COMMENTS, MAX_EXAMPLES_PER_CATEGORY) allows fine-tuning of documentation detail and length
  • Weakness: The skill produces a prompt for external AI tools (GitHub Copilot) rather than instructions an agent can execute directly—this creates a usage friction point where an agent generates the prompt but then must pass it to a separate system
  • Weakness: No guidance on how to validate that identified exemplars are actually representative or maintain their relevance over time as code evolves
  • Weakness: Missing error handling scenarios (e.g., what if the auto-detect finds multiple conflicting project types, or if no exemplars meet the criteria in a category)
  • Weakness: The SCAN_DEPTH parameter controls whether to include section 6 (Additional Documentation) but does not explicitly describe what additional analysis effort or time the 'Comprehensive' option requires
  • Weakness: No mention of how to handle legacy code or codebases with mixed quality patterns—the skill assumes code worthy of exemplar status exists across all categories
Model: claude-haiku-4-5-20251001Analyzed: Jun 26, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Use github/code-exemplars-blueprint-generator in your dev environment

Command Palette

Search for a command to run...