From 07e5e8a4d719bf8ed2b8e20184a57363e7392eee Mon Sep 17 00:00:00 2001 From: Siddharth Nashikkar Date: Mon, 22 Jun 2026 22:52:56 -0400 Subject: [PATCH] docs(skill): clarify the preflight-script fallback requires the package The bundled scripts/preflight.py imports localcontextrouter, so it must be run with a Python that has the package installed, not just any interpreter. --- .claude/skills/local-context-router/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.claude/skills/local-context-router/SKILL.md b/.claude/skills/local-context-router/SKILL.md index 8845632..59bc642 100644 --- a/.claude/skills/local-context-router/SKILL.md +++ b/.claude/skills/local-context-router/SKILL.md @@ -33,8 +33,8 @@ Route the document and read the JSON, rendering any visual pages into a folder: localctx --json --vision-dir ./lcr-pages ``` -If `localctx` is not on the PATH, run the bundled script by its path inside this -skill folder instead: +If the `localctx` command is not available, run the bundled script with a Python +that has `localcontextrouter` installed (the script imports the same package): ```sh python scripts/preflight.py --json --vision-dir ./lcr-pages