Open the plan file in lgtm so the user can review and add feedback. After the user quits the TUI, read their feedback and return it to the conversation.
When to use
After generating a plan file, invoke this skill to open it for user review.
Steps
- •
Determine the export path based on the plan file basename:
code/tmp/lgtm-plan-{basename}.md - •
Run lgtm with export-on-quit (use the unique export path from step 1):
bashlgtm $ARGUMENTS --export-on-quit /tmp/lgtm-plan-{basename}.md - •
After the TUI exits, read the exported feedback file:
bashRead /tmp/lgtm-plan-{basename}.md - •
Present the user's feedback and incorporate it into your response.
Note: If the user has LGTM_TMUX=1 set, this will open in a tmux split. Otherwise it opens in the current terminal.