diff --git a/.codex-plugin/README.md b/.codex-plugin/README.md index d7f4637..2af714c 100644 --- a/.codex-plugin/README.md +++ b/.codex-plugin/README.md @@ -39,12 +39,17 @@ git clone https://github.com/MemPalace/mempalace.git cd mempalace ``` -2. Install the Python package (uv recommended): +2. Install the Python package so the `mempalace-mcp` script lands on + your PATH (the bundled `plugin.json` invokes it by bare name): ```bash -uv sync # or: pip install -e . +uv tool install --editable . # or: pip install -e . ``` + Plain `uv sync` is **not** enough here — it installs the scripts into + `.venv/bin/`, which Codex will not find unless you activate the venv + before launching Codex. + 3. The `.codex-plugin` directory is already in the repo root. Codex CLI will detect it automatically when you run Codex from inside the repository. 4. Initialize your palace: diff --git a/mempalace/instructions/init.md b/mempalace/instructions/init.md index b43ecc4..347367a 100644 --- a/mempalace/instructions/init.md +++ b/mempalace/instructions/init.md @@ -11,12 +11,15 @@ tell the user they need Python 3.9+ installed and stop. ## Step 2: Check if mempalace is already installed -Run `mempalace --version` to see if the CLI is already on the user's PATH. -If it succeeds, report the installed version and skip to Step 4. +Run `mempalace --version`. If it succeeds, the CLI is on PATH — report +the installed version and skip to Step 4. -If that fails, fall back to `pip show mempalace` (and `uv tool list` if `uv` -is available) to detect an existing install. If found, report it and skip -to Step 4. +If `mempalace --version` fails, **do not** skip to Step 4 just because +`pip show mempalace` or `uv tool list` reports the package as installed: +the package may live inside a venv that isn't activated, in which case +Step 5 (`mempalace init ...`) will fail with `command not found`. Treat +that case as not-installed and continue to Step 3, which will (re)install +into a PATH-visible location via `uv tool install` or `pip`. ## Step 3: Install mempalace