Installation
Install with CLI
Recommended
gh skills-hub install openapi-to-application-code Don't have the extension? Run gh extension install samueltauil/skills-hub first.
Download and extract to your repository:
.github/skills/openapi-to-application-code/ Extract the ZIP to .github/skills/ in your repo. The folder name must match openapi-to-application-code for Copilot to auto-discover it.
Skill Files (1)
SKILL.md 4.5 KB
---
name: openapi-to-application-code
description: 'Generate a complete, production-ready application from an OpenAPI specification'
---
# Generate Application from OpenAPI Spec
Your goal is to generate a complete, working application from an OpenAPI specification using the active framework's conventions and best practices.
## Input Requirements
1. **OpenAPI Specification**: Provide either:
- A URL to the OpenAPI spec (e.g., `https://api.example.com/openapi.json`)
- A local file path to the OpenAPI spec
- The full OpenAPI specification content pasted directly
2. **Project Details** (if not in spec):
- Project name and description
- Target framework and version
- Package/namespace naming conventions
- Authentication method (if not specified in OpenAPI)
## Generation Process
### Step 1: Analyze the OpenAPI Specification
- Validate the OpenAPI spec for completeness and correctness
- Identify all endpoints, HTTP methods, request/response schemas
- Extract authentication requirements and security schemes
- Note data model relationships and constraints
- Flag any ambiguities or incomplete definitions
### Step 2: Design Application Architecture
- Plan directory structure appropriate for the framework
- Identify controller/handler grouping by resource or domain
- Design service layer organization for business logic
- Plan data models and entity relationships
- Design configuration and initialization strategy
### Step 3: Generate Application Code
- Create project structure with build/package configuration files
- Generate models/DTOs from OpenAPI schemas
- Generate controllers/handlers with route mappings
- Generate service layer with business logic
- Generate repository/data access layer if applicable
- Add error handling, validation, and logging
- Generate configuration and startup code
### Step 4: Add Supporting Files
- Generate appropriate unit tests for services and controllers
- Create README with setup and running instructions
- Add .gitignore and environment configuration templates
- Generate API documentation files
- Create example requests/integration tests
## Output Structure
The generated application will include:
```
project-name/
โโโ README.md # Setup and usage instructions
โโโ [build-config] # Framework-specific build files (pom.xml, build.gradle, package.json, etc.)
โโโ src/
โ โโโ main/
โ โ โโโ [language]/
โ โ โ โโโ controllers/ # HTTP endpoint handlers
โ โ โ โโโ services/ # Business logic
โ โ โ โโโ models/ # Data models and DTOs
โ โ โ โโโ repositories/ # Data access (if applicable)
โ โ โ โโโ config/ # Application configuration
โ โ โโโ resources/ # Configuration files
โ โโโ test/
โ โโโ [language]/
โ โ โโโ controllers/ # Controller tests
โ โ โโโ services/ # Service tests
โ โโโ resources/ # Test configuration
โโโ .gitignore
โโโ .env.example # Environment variables template
โโโ docker-compose.yml # Optional: Docker setup (if applicable)
```
## Best Practices Applied
- **Framework Conventions**: Follows framework-specific naming, structure, and patterns
- **Separation of Concerns**: Clear layers with controllers, services, and repositories
- **Error Handling**: Comprehensive error handling with meaningful responses
- **Validation**: Input validation and schema validation throughout
- **Logging**: Structured logging for debugging and monitoring
- **Testing**: Unit tests for services and controllers
- **Documentation**: Inline code documentation and setup instructions
- **Security**: Implements authentication/authorization from OpenAPI spec
- **Scalability**: Design patterns support growth and maintenance
## Next Steps
After generation:
1. Review the generated code structure and make customizations as needed
2. Install dependencies according to framework requirements
3. Configure environment variables and database connections
4. Run tests to verify generated code
5. Start the development server
6. Test endpoints using the provided examples
## Questions to Ask if Needed
- Should the application include database/ORM setup, or just in-memory/mock data?
- Do you want Docker configuration for containerization?
- Should authentication be JWT, OAuth2, API keys, or basic auth?
- Do you need integration tests or just unit tests?
- Any specific database technology preferences?
- Should the API include pagination, filtering, and sorting examples?
License (MIT)
View full license text
MIT License Copyright GitHub, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.