6.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.
Skill Snapshot
| name | comment-gen |
| description | Add meaningful inline comments to complex code. Use when documentation is lacking. OpenClaw Skills integration. |
| owner | lxgicstudios |
| repository | lxgicstudios/comment-gen |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lxgicstudios/comment-gen |
| last updated | Feb 7, 2026 |
Maintainer

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:
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Substack: https://lxgicstudios.substack.com
- Website: https://lxgicstudios.com
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.
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 explanationsbeginner- 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.
