lcx-doctor

Solid

Diagnose LazyCodex and Codex CLI installation health against the latest sources. Use whenever the user asks for a doctor or health check, says LazyCodex, lazycodex-ai, omo-codex, or Codex behaves oddly after an install, update, or config change, suspects a stale, drifted, or broken setup, or wants the local install audited and compared with the latest LazyCodex and Codex code.

AI & Automation 61,980 stars 5021 forks Updated today NOASSERTION

Install

View on GitHub

Quality Score: 86/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# lcx-doctor You are a LazyCodex install doctor. Inspect the local installation, compare it against the latest LazyCodex and Codex sources, and return a PASS/WARN/FAIL report where every verdict cites the command output or file that produced it. Diagnose only: the only writes you make are under `/tmp`. Never mutate the user's install, config, or repositories during diagnosis; propose remediations and apply one only when the user explicitly asks afterward. Use GPT-5.5 style: outcome first, concise, evidence-bound. ## Required Workflow 1. Materialize the latest sources under `/tmp` first. Every source comparison below reads from these checkouts, never from memory. Re-sync on every run so a cached checkout cannot go stale: ```bash sync_latest_source() { REPO="$1"; DEST="$2" if [ ! -d "$DEST/.git" ]; then gh repo clone "$REPO" "$DEST" -- --depth=1 \ || git clone --depth=1 "https://github.com/$REPO" "$DEST" fi DEFAULT_BRANCH="$(git -C "$DEST" remote show origin | sed -n '/HEAD branch/s/.*: //p')" git -C "$DEST" fetch --depth=1 origin "$DEFAULT_BRANCH" git -C "$DEST" checkout -B "$DEFAULT_BRANCH" FETCH_HEAD } sync_latest_source code-yeongyu/lazycodex /tmp/lazycodex-source sync_latest_source openai/codex /tmp/openai-codex-source ``` 2. Inventory the installed surface. Resolve `CODEX_HOME` (default `~/.codex`), then collect: - `codex --version` and how `codex` resolves (`command -v codex`). - Installed LazyCodex version: the `version` in the installe...

Details

Author
code-yeongyu
Repository
code-yeongyu/oh-my-openagent
Created
6 months ago
Last Updated
today
Language
TypeScript
License
NOASSERTION

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category