From 2233468948dac4c9309fa0b12abd9858afc97db8 Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 1 May 2026 09:29:36 +0000 Subject: [PATCH] chore: add changeset for start-screen URL validation fix (issue #539) --- .changeset/fix-start-screen-url-validation-539.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .changeset/fix-start-screen-url-validation-539.md diff --git a/.changeset/fix-start-screen-url-validation-539.md b/.changeset/fix-start-screen-url-validation-539.md new file mode 100644 index 000000000..90ab4e9bb --- /dev/null +++ b/.changeset/fix-start-screen-url-validation-539.md @@ -0,0 +1,7 @@ +--- +"@link-assistant/hive-mind": patch +--- + +Fix start-screen URL validation to accept user and organization GitHub URLs + +The `start-screen hive` command was rejecting valid user/org URLs like `https://github.com/konard` with "Invalid GitHub URL: missing owner/repo". This fix updates `start-screen.mjs` to use the shared `parseGitHubUrl` from `github.lib.mjs`, ensuring consistent URL validation across `hive`, `solve`, and `start-screen` commands. Tests for `--dry-run` mode added for both `solve` and `hive` commands.