The solution is to use GitHub's List public events API endpoint:
#!/bin/sh
curl -sH "Accept: application/vnd.github.v3+json" https://api.github.com/events |
jq -rc '.[] | select(.type == "CreateEvent") | ("https://github.com/" + .repo.name)'
Example output:
$ ./gittok.sh
https://github.com/AriefAbdullah/3rd-assignment
https://github.com/geometricpanda/geometricpanda
https://github.com/kamalarieff/portfolio
https://github.com/g1nus/Twapp
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…