From 52c89256591375cc5779387b4de4b27c12640ba1 Mon Sep 17 00:00:00 2001 From: Toni Nowak <58035493+acidkill@users.noreply.github.com> Date: Mon, 3 Aug 2026 14:23:15 +0200 Subject: [PATCH 1/2] fix: point CLI setup/docs links at the real repo, not a stale fork username MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit doctor.py and full_setup.py's QUICKSTART_URL, and the IDE-rules template generated by ide_rules.py, all linked to nhadaututtheky/surreal-memory — a different GitHub username than the actual repo (acidkill/surreal-memory, per pyproject.toml's own [project.urls] and `gh repo view`). Likely a leftover from a fork/rename that was never fully updated. `smem doctor`'s "full setup guide" link and the generated IDE rules file both pointed at someone else's fork. --- src/surreal_memory/cli/doctor.py | 2 +- src/surreal_memory/cli/full_setup.py | 2 +- src/surreal_memory/cli/ide_rules.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/surreal_memory/cli/doctor.py b/src/surreal_memory/cli/doctor.py index d9a5c133..58fe5838 100755 --- a/src/surreal_memory/cli/doctor.py +++ b/src/surreal_memory/cli/doctor.py @@ -58,7 +58,7 @@ "Checkout version": TIER_DEV, } -QUICKSTART_URL = "https://nhadaututtheky.github.io/surreal-memory/guides/quickstart/" +QUICKSTART_URL = "https://github.com/acidkill/surreal-memory/blob/main/docs/getting-started/quickstart.md" def run_doctor( diff --git a/src/surreal_memory/cli/full_setup.py b/src/surreal_memory/cli/full_setup.py index d9e933f9..91c96026 100755 --- a/src/surreal_memory/cli/full_setup.py +++ b/src/surreal_memory/cli/full_setup.py @@ -18,7 +18,7 @@ import typer -QUICKSTART_URL = "https://nhadaututtheky.github.io/surreal-memory/guides/quickstart/" +QUICKSTART_URL = "https://github.com/acidkill/surreal-memory/blob/main/docs/getting-started/quickstart.md" # --------------------------------------------------------------------------- diff --git a/src/surreal_memory/cli/ide_rules.py b/src/surreal_memory/cli/ide_rules.py index 5f33b91a..d0953b6a 100755 --- a/src/surreal_memory/cli/ide_rules.py +++ b/src/surreal_memory/cli/ide_rules.py @@ -51,7 +51,7 @@ def _get_rules_content() -> str: return """\ # Surreal-Memory Integration -This project uses [Surreal-Memory](https://github.com/nhadaututtheky/surreal-memory) \ +This project uses [Surreal-Memory](https://github.com/acidkill/surreal-memory) \ for persistent AI memory across sessions. ## Session Start (MANDATORY) From 859ede34685f5e0b95a2e4c5e4c686f23425524f Mon Sep 17 00:00:00 2001 From: Toni Nowak <58035493+acidkill@users.noreply.github.com> Date: Mon, 3 Aug 2026 14:30:53 +0200 Subject: [PATCH 2/2] fix: use the correct GitHub Pages username in the quickstart URL The previous commit swapped the wrong repo owner (nhadaututtheky -> acidkill) but changed the URL shape from a GitHub Pages link to a github.com blob link, which broke test_full_setup.py::TestQuickstartUrl::test_url_is_valid (asserts "github.io" in QUICKSTART_URL) and ruff format (line over 100 chars). Keeps the original acidkill.github.io/surreal-memory/guides/quickstart/ shape, just with the corrected username. --- src/surreal_memory/cli/doctor.py | 2 +- src/surreal_memory/cli/full_setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/surreal_memory/cli/doctor.py b/src/surreal_memory/cli/doctor.py index 58fe5838..051ec498 100755 --- a/src/surreal_memory/cli/doctor.py +++ b/src/surreal_memory/cli/doctor.py @@ -58,7 +58,7 @@ "Checkout version": TIER_DEV, } -QUICKSTART_URL = "https://github.com/acidkill/surreal-memory/blob/main/docs/getting-started/quickstart.md" +QUICKSTART_URL = "https://acidkill.github.io/surreal-memory/guides/quickstart/" def run_doctor( diff --git a/src/surreal_memory/cli/full_setup.py b/src/surreal_memory/cli/full_setup.py index 91c96026..69bc40ed 100755 --- a/src/surreal_memory/cli/full_setup.py +++ b/src/surreal_memory/cli/full_setup.py @@ -18,7 +18,7 @@ import typer -QUICKSTART_URL = "https://github.com/acidkill/surreal-memory/blob/main/docs/getting-started/quickstart.md" +QUICKSTART_URL = "https://acidkill.github.io/surreal-memory/guides/quickstart/" # ---------------------------------------------------------------------------