Our review
Launches a TUI to review a markdown file with line-by-line commenting capabilities.
Strengths
- Interactive line-by-line navigation with j/k keys
- Multiple comment types: Blocker, Concern, Question, Suggestion, Praise, Acknowledge
- Syntax highlighting for code blocks
- Export comments to markdown or clipboard
Limitations
- Only works with markdown files
- Requires a TUI-compatible terminal environment
- Depends on the external lgtm package and bun
When you need a structured, interactive review of a markdown document such as a design doc or plan.
When reviewing non-markdown files or when a non-interactive review is sufficient.
Security analysis
SafeThe skill runs a TUI tool via bun/bunx on a user-specified markdown file, with no destructive commands, external data exfiltration, or obfuscation. It uses tmux and third-party packages but only for intended interactive review, and does not execute arbitrary shell commands from the file content.
No concerns found
Examples
Review the plan in plan.md using lgtm.I want to review the document @CLAUDE.md line by line.Use lgtm to review the piped content.name: lgtm description: Launch lgtm TUI to review a markdown file with line-by-line commenting argument-hint: <file-path> [--stdin] allowed-tools: Bash(bun run *), Bash(bunx *), Bash(tmux *), Read
Launch lgtm to review the specified markdown file or piped content.
Usage
/lgtm path/to/plan.md # Opens TUI for review (auto-spawns in tmux pane) /lgtm @CLAUDE.md # @ prefix is stripped automatically /lgtm --stdin # Review content piped from stdin
What it does
Opens an interactive TUI for reviewing markdown documents with:
- Line-by-line navigation (j/k)
- Comment types: Blocker, Concern, Question, Suggestion, Praise, Acknowledge
- Syntax highlighting for code blocks
- Export to markdown (E) or clipboard (y)
- Summary view (v)
Instructions
When this skill is invoked, follow these steps:
- Parse arguments: Extract the file path from
$ARGUMENTS. If it starts with@, strip that prefix. Ignore--tmuxif present (it's automatic). - Resolve path: Convert the file path to an absolute path if it isn't already.
- Read the file: Use the Read tool to load the full file content into context. This is essential so you can correlate the user's line-level comments with actual file content.
- Create export path: Generate
/tmp/lgtm-export-{basename-without-extension}.md - Run the TUI: Check if
${CLAUDE_PLUGIN_ROOT}/node_modulesexists to determine the run command. The--export-on-quitflag automatically enables tmux mode and waits for the user to quit.- If
${CLAUDE_PLUGIN_ROOT}/node_modulesexists (local dev):bun run ${CLAUDE_PLUGIN_ROOT}/src/cli.ts "<resolved-file-path>" --export-on-quit "<export-path>" - If
node_modulesdoes not exist (marketplace install):bunx @hapticdata/lgtm "<resolved-file-path>" --export-on-quit "<export-path>"
- If
- Read the export: After the command returns (user has quit the TUI), use the Read tool to read the export file.
- Respond in review mode: This is a collaborative review workflow. After reading the export:
- Correlate each comment with the corresponding line(s) from the original file content you read in step 3.
- Summarize the user's feedback, grouping by comment type (Blockers, Concerns, Questions, Suggestions, Praise).
- Proactively address blockers and concerns first — propose concrete code or content changes to resolve them.
- Answer any questions the user raised.
- Acknowledge suggestions and praise.
- Offer to iterate on the file by applying the proposed changes.
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.