skills$openclaw/middleware-gen
lxgicstudios557

by lxgicstudios

middleware-gen – OpenClaw Skill

middleware-gen is an OpenClaw Skills integration for coding workflows. Generate Express middleware from plain English. Use when building API middleware.

557 stars2.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namemiddleware-gen
descriptionGenerate Express middleware from plain English. Use when building API middleware. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/middleware-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/middleware-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains middleware-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
983 B
index.ts
872 B
_meta.json
292 B
package-lock.json
30.2 KB
package.json
604 B
README.md
545 B
SKILL.md
2.1 KB
tsconfig.json
251 B
SKILL.md

name: middleware-gen description: Generate Express middleware from plain English. Use when building API middleware.

Middleware Generator

Writing middleware means handling edge cases, async errors, and weird Express patterns. Describe what you need and get production-ready middleware.

One command. Zero config. Just works.

Quick Start

npx ai-middleware "rate limit 100 req/min per IP"

What It Does

  • Generates Express middleware from descriptions
  • Handles rate limiting, auth, logging, and more
  • Includes proper error handling
  • TypeScript support built in

Usage Examples

# Rate limiting
npx ai-middleware "rate limit 100 req/min per IP"

# JWT auth
npx ai-middleware "JWT auth with role-based access" -t

# Request logging
npx ai-middleware "request logging with response time" -o logger.ts -t

# API key validation
npx ai-middleware "validate API key from header"

Best Practices

  • Order matters - put auth before route handlers
  • Handle errors - don't let middleware crash the server
  • Keep it focused - one middleware, one job
  • Test thoroughly - middleware affects every request

When to Use This

  • Adding new middleware to an API
  • Need common patterns like rate limiting
  • Learning middleware best practices
  • Prototyping API features quickly

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-middleware --help

How It Works

Takes your plain English description and generates Express-compatible middleware code. The AI knows common patterns and includes proper async handling, error handling, and TypeScript types.

License

MIT. Free forever. Use it however you want.

README.md

ai-middleware

Generate Express middleware from plain English descriptions. Rate limiting, auth, logging, whatever you need.

Install

npm install -g ai-middleware

Usage

npx ai-middleware "rate limit 100 req/min per IP"
npx ai-middleware "JWT auth with role-based access" -t
npx ai-middleware "request logging with response time" -o logger.ts -t

Options

  • -t, --typescript - Generate TypeScript
  • -o, --output <file> - Write to file

Setup

export OPENAI_API_KEY=sk-...

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-middleware --help ```

FAQ

How do I install middleware-gen?

Run openclaw add @lxgicstudios/middleware-gen in your terminal. This installs middleware-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/middleware-gen. Review commits and README documentation before installing.