skills$openclaw/comment-gen
lxgicstudios6.6k

by lxgicstudios

comment-gen – OpenClaw Skill

comment-gen is an OpenClaw Skills integration for coding workflows. Add meaningful inline comments to complex code. Use when documentation is lacking.

6.6k stars3.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namecomment-gen
descriptionAdd meaningful inline comments to complex code. Use when documentation is lacking. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/comment-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/comment-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains comment-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
1.0 KB
index.ts
867 B
_meta.json
291 B
package-lock.json
30.2 KB
package.json
704 B
README.md
639 B
SKILL.md
2.2 KB
tsconfig.json
217 B
SKILL.md

name: comment-gen description: Add meaningful inline comments to complex code. Use when documentation is lacking.

Comment Generator

Good comments explain WHY, not WHAT. This tool reads your code, understands the intent, and adds comments that actually help future readers.

One command. Zero config. Just works.

Quick Start

npx ai-comment ./src/algorithm.ts

What It Does

  • Adds inline comments explaining the reasoning behind complex code
  • Focuses on WHY the code does something, not WHAT it does
  • Supports multiple verbosity levels for different audiences
  • Preserves your existing formatting

Usage Examples

# Add concise comments
npx ai-comment ./src/algorithm.ts

# More detailed explanations
npx ai-comment ./src/utils.js --style detailed

# For junior developer onboarding
npx ai-comment ./src/parser.ts --style beginner

# Preview without changing files
npx ai-comment ./src/complex.ts --dry-run

Best Practices

  • Don't over-comment - simple code doesn't need comments
  • Focus on complex logic - business rules, edge cases, workarounds
  • Review the output - make sure comments are accurate
  • Update when code changes - stale comments are worse than none

When to Use This

  • Inherited a codebase with no documentation
  • Onboarding new team members
  • Complex algorithms that need explanation
  • Before going on vacation so others can maintain your code

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

How It Works

Reads your code file, sends it to GPT-4o-mini, and receives the same code with meaningful inline comments added. The AI analyzes control flow, business logic, and edge cases to explain the reasoning.

License

MIT. Free forever. Use it however you want.

README.md

ai-comment

Add meaningful inline comments to complex code. Explains the WHY, not the WHAT.

Install

npm install -g ai-comment

Usage

npx ai-comment ./src/algorithm.ts
# → Comments added to ./src/algorithm.ts

npx ai-comment ./src/utils.js --style detailed
# → More verbose explanations

npx ai-comment ./src/parser.ts --dry-run
# → Preview without modifying the file

Setup

export OPENAI_API_KEY=sk-...

Styles

  • concise - Short, to-the-point comments (default)
  • detailed - More thorough explanations
  • beginner - Explains concepts for junior developers

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

FAQ

How do I install comment-gen?

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