.claude/skills.nouse/openapi-to-application-code/SKILL.md
Generate a complete, production-ready application from an OpenAPI specification. Use when creating controllers, services, models, and configurations from an OpenAPI/Swagger spec.
npx skillsauth add taewook486/real-estate-mcp openapi-to-application-codeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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
├── [build-config]
├── src/
│ ├── main/
│ │ ├── [language]/
│ │ │ ├── controllers/
│ │ │ ├── services/
│ │ │ ├── models/
│ │ │ ├── repositories/
│ │ │ └── config/
│ │ └── resources/
│ └── test/
│ ├── [language]/
│ │ ├── controllers/
│ │ └── services/
│ └── resources/
├── .localdocs
├── .env.example
└── docker-compose.yml
testing
--- name: worklog description: Update worklog files by moving tasks between todo/doing/done states. Use when recording task progress, starting new work, or marking tasks complete. Requires explicit arguments: worklog [done|doing|todo] [description]. --- # Worklog Update task state in worklog files. Requires explicit arguments. ## Worklog Files - `localdocs/worklog.todo.md` — backlog - `localdocs/worklog.doing.md` — in progress - `localdocs/worklog.done.md` — completed (grouped by date, appen
development
Test-Driven Development workflow. Use for ALL code changes - features, bug fixes, refactoring. TDD is non-negotiable.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
Refactoring assessment and patterns. Use after tests pass (GREEN phase) to assess improvement opportunities.