skills$openclaw/swagger-gen
lxgicstudios7.8k

by lxgicstudios

swagger-gen – OpenClaw Skill

swagger-gen is an OpenClaw Skills integration for coding workflows. Generate OpenAPI specs from Express routes. Use when documenting APIs.

7.8k stars6.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameswagger-gen
descriptionGenerate OpenAPI specs from Express routes. Use when documenting APIs. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/swagger-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/swagger-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains swagger-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
938 B
index.ts
1.4 KB
_meta.json
286 B
package-lock.json
30.2 KB
package.json
658 B
README.md
520 B
SKILL.md
1.7 KB
tsconfig.json
251 B
SKILL.md

name: swagger-gen description: Generate OpenAPI specs from Express routes. Use when documenting APIs.

Swagger Generator

Your API has no documentation. This reads your Express routes and generates a complete OpenAPI 3.0 spec.

One command. Zero config. Just works.

Quick Start

npx ai-swagger ./src/routes/

What It Does

  • Reads your Express route files
  • Generates OpenAPI 3.0 specification
  • Documents request/response shapes
  • Ready for Swagger UI

Usage Examples

# Generate from routes
npx ai-swagger ./src/routes/

# Single file
npx ai-swagger ./src/routes/users.ts -o docs/api.yaml

Best Practices

  • Keep it updated - regenerate when routes change
  • Add descriptions - explain what endpoints do
  • Include examples - show sample requests
  • Document errors - not just happy paths

When to Use This

  • Creating API documentation
  • Setting up Swagger UI
  • Onboarding API consumers
  • API-first design

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.

npx ai-swagger --help

How It Works

Parses your Express route definitions to extract endpoints, methods, and handler code. Then generates OpenAPI spec with proper types and descriptions.

License

MIT. Free forever. Use it however you want.

README.md

ai-swagger

Generate OpenAPI 3.0 specs from your Express routes. Point it at your routes directory and get a complete Swagger doc.

Install

npm install -g ai-swagger

Usage

npx ai-swagger ./src/routes/
# Generates openapi.yaml from all route files

npx ai-swagger ./src/routes/users.ts -o docs/api.yaml
# Single file, custom output path

Setup

export OPENAI_API_KEY=sk-...

Options

  • -o, --output <path> - Output file path (default: openapi.yaml)

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable. ```bash npx ai-swagger --help ```

FAQ

How do I install swagger-gen?

Run openclaw add @lxgicstudios/swagger-gen in your terminal. This installs swagger-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/swagger-gen. Review commits and README documentation before installing.