docs: address cli-skills review findings#24
Conversation
- preflight: gate `mogplex login status` behind a hard `exit 1` when `mogplex` is not on PATH so agents following the snippet literally do not fall through to a confusing `command not found` (skills/ using-mogplex-cli/SKILL.md + docs mirror). - install: prepend `mkdir -p ~/.claude/skills` to the global install command so first-time users on a clean machine do not hit "No such file or directory" (skills/README.md + docs/skills/index.mdx). The two truncation warnings from the reviewer were false positives caused by clipped GitHub diff hunks; all `.mdx` files end cleanly and already contain the `Hard rules` section and the Authentication-guide See-also link the review flagged as missing.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Mogplex PR ReviewStatus: No material issues found SummaryAll four changes are correct, consistent, and directly address the prior review findings. No issues found — this PR is approve-ready. Preflight fix (
|
Follow-up to #23. Addresses the Mogplex PR Review and Codex findings.
Fixes applied
skills/using-mogplex-cli/SKILL.md+ mirror). The snippet usedcommand -v mogplex >/dev/null || echo "…"which prints a warning and then runsmogplex login statusanyway, producingcommand not foundinstead of a clean stop. Replaced with a hard|| { echo …; exit 1; }guard plus prose pointing at Installation.mkdir -pbefore install (skills/README.md+content/docs/cli/skills/index.mdx).cp -R skills/* ~/.claude/skills/fails on a clean machine when the directory doesn't exist. Now prependsmkdir -p ~/.claude/skillsto match the per-project command.False positives (no change needed)
mogplex-slash.mdx/using-mogplex-cli.mdx. The reviewer saw clipped GitHub diff hunks; the on-branch files end cleanly with complete## See alsosections (wc -lconfirms 108 and 90 lines respectively).Hard rules/ Authentication-guide link inmogplex-auth.mdx. Both are present on-branch; the diff hunk window cut them off.Test plan
pnpm lintpnpm types:checkpnpm build(165 static pages, all skills routes still render)/cli/skills/using-mogplex-cli