-f "names[]=image-studioeration" \
scripts/setup-github-topics.sh:26 (and the echo message at line 37) — the string image-studioeration is a typo of image-generation. Looks like an earlier search-and-replace went sideways: image-studio became image-studioeration somewhere along the way.
The practical consequence is that the configured topic doesn't match what GitHub's discovery surface uses. Anyone searching for image-generation-tagged repos won't find this one, and the topic page itself (https://github.com/topics/image-studioeration) is presumably empty.
Fix:
-f "names[]=image-generation" \
And at line 37:
echo " image-generation, audio-generation, content-creation, openclaw"
Worth running gh api repos/:owner/:repo/topics after the fix to confirm the bogus topic gets removed from the repo's metadata too.
-f "names[]=image-studioeration" \scripts/setup-github-topics.sh:26(and the echo message at line 37) — the stringimage-studioerationis a typo ofimage-generation. Looks like an earlier search-and-replace went sideways:image-studiobecameimage-studioerationsomewhere along the way.The practical consequence is that the configured topic doesn't match what GitHub's discovery surface uses. Anyone searching for
image-generation-tagged repos won't find this one, and the topic page itself (https://github.com/topics/image-studioeration) is presumably empty.Fix:
-f "names[]=image-generation" \And at line 37:
Worth running
gh api repos/:owner/:repo/topicsafter the fix to confirm the bogus topic gets removed from the repo's metadata too.