Problem
The Quickstart in README.md tells new users to run:
git clone https://github.com/SupermodularAI/SuperStudio.git
cd SuperStudio
That repository name does not exist. The repo is Super-Studio (hyphenated), so the very first command in the Quickstart fails for every new user.
Verification
Not a rename redirect — it is a hard 404:
$ curl -s -o /dev/null -w "%{http_code}" -L https://github.com/SupermodularAI/SuperStudio
404
$ curl -s -o /dev/null -w "%{http_code}" -L https://github.com/SupermodularAI/Super-Studio
200
Fix
README.md lines 65-66:
-git clone https://github.com/SupermodularAI/SuperStudio.git
-cd SuperStudio
+git clone https://github.com/SupermodularAI/Super-Studio.git
+cd Super-Studio
Note the cd on the following line needs the same change, since git clone derives the directory name from the URL.
Problem
The Quickstart in
README.mdtells new users to run:git clone https://github.com/SupermodularAI/SuperStudio.git cd SuperStudioThat repository name does not exist. The repo is
Super-Studio(hyphenated), so the very first command in the Quickstart fails for every new user.Verification
Not a rename redirect — it is a hard 404:
Fix
README.mdlines 65-66:Note the
cdon the following line needs the same change, sincegit clonederives the directory name from the URL.