Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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 & CodingIntermediate67,5315,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/lazycodex for integration, packaging, skills, hooks and installer bugs; openai/codex for 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-generated label and falls back to browser/computer use when gh is 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

  1. "The CLI alias isn't registered after installing omo-codex — file a bug" → compares installer source and opens an issue on the LazyCodex repo.
  2. "Codex approval settings are being ignored" → verifies it reproduces on clean upstream Codex, then routes to openai/codex.
  3. "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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Install and authenticate GitHub CLI: gh auth login (the skill relies on gh).
  2. Clone the repository: git clone --depth=1 https://github.com/code-yeongyu/oh-my-openagent.git /tmp/omo
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r /tmp/omo/packages/omo-codex/plugin/components/lcx/skills/lcx-report-bug ~/.claude/skills/
  5. Restart Claude Code and ask: "Use the lcx-report-bug skill to report this bug."
  6. Optionally set LAZYCODEX_SOURCE_ROOT to control where source checkouts are cached.
  7. Because it creates real issues, ask to review the drafted body before submission on your first run.
View source on GitHubLicense: NOASSERTION