LCX Bug Reporter
Turns a vague bug complaint into a source-backed GitHub issue or PR routed to the repository that actually owns the defect.
Dev & CodingIntermediate★ 67,531⑂ 5,507AI score 6/10Last updated: Aug 9, 2026
What it does
Describe a failure and the skill runs a debugging loop, confirms a root cause, and drafts a complete English GitHub issue (or a PR when appropriate).
- Clones and re-syncs the latest LazyCodex/omo-codex and upstream Codex sources into a temp cache so evidence cites real files.
- Decides ownership:
code-yeongyu/lazycodexfor integration, packaging, skills, hooks and installer bugs;openai/codexfor core CLI defects. - Fills a strict template: summary, environment, repro steps, expected vs actual, evidence, root cause, proposed fix, verification plan.
- Searches for duplicates first and comments with new evidence instead of filing again.
- Applies the
lazycodex-generatedlabel and falls back to browser/computer use whenghis unavailable.
Who it is for
- Developers running LazyCodex/omo-codex or the Codex CLI who hit bugs regularly.
- Anyone who wants reproducible reports instead of "it doesn't work" tickets.
- Open-source contributors who want maintainers to act on their issues quickly.
Examples
- "The CLI alias isn't registered after installing omo-codex — file a bug" → compares installer source and opens an issue on the LazyCodex repo.
- "Codex approval settings are being ignored" → verifies it reproduces on clean upstream Codex, then routes to
openai/codex. - "Check if this is already reported and just add my logs" → posts an evidence comment on the matching open issue.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the packages/omo-codex/plugin/components/lcx/skills/lcx-report-bug folder from the GitHub repo code-yeongyu/oh-my-openagent into my ~/.claude/skills/lcx-report-bug/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone --depth=1 https://github.com/code-yeongyu/oh-my-openagent.git /tmp/omo && mkdir -p ~/.claude/skills && cp -r /tmp/omo/packages/omo-codex/plugin/components/lcx/skills/lcx-report-bug ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Install and authenticate GitHub CLI:
gh auth login(the skill relies ongh). - Clone the repository:
git clone --depth=1 https://github.com/code-yeongyu/oh-my-openagent.git /tmp/omo - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/omo/packages/omo-codex/plugin/components/lcx/skills/lcx-report-bug ~/.claude/skills/ - Restart Claude Code and ask: "Use the lcx-report-bug skill to report this bug."
- Optionally set
LAZYCODEX_SOURCE_ROOTto control where source checkouts are cached. - Because it creates real issues, ask to review the drafted body before submission on your first run.
View source on GitHub ↗License: NOASSERTION