From openapi-to-application-python-fastapi
Generates complete production-ready backend application from OpenAPI spec using target framework conventions. Includes models, controllers, services, repos, tests, config, and docs.
npx claudepluginhub passelin/marketplace-test --plugin openapi-to-application-python-fastapiThis skill uses the workspace's default tool permissions.
Your goal is to generate a complete, working application from an OpenAPI specification using the active framework's conventions and best practices.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Analyzes competition with Porter's Five Forces, Blue Ocean Strategy, and positioning maps to identify differentiation opportunities and market positioning for startups and pitches.
Your goal is to generate a complete, working application from an OpenAPI specification using the active framework's conventions and best practices.
OpenAPI Specification: Provide either:
https://api.example.com/openapi.json)Project Details (if not in spec):
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)
After generation: