GitHub Ecosystem
GitHub
Section titled “GitHub”Open-source games, cloud infrastructure, and the contributors building them.
PRs land against dev, ship through CI to main. Pick an issue, fork the
repo, open a worktree — the walkthrough lives under the Contribute tab.
Top Contributors
Thanks to everyone helping build the platform!
Recent Activity
Pull requests and releases across the org
In Flight
Open issues labelled priority:medium — solid first-PR candidates.
- #11717 💬 0
test: pixel-level assertions for all render-loop islands (Yuki, towerdefense, arcade isometric, blackjack)
priority:medium - #11597 💬 0
test: dbmate migration tests for mc / gen_ulid / meme + Supabase auth hook integration
priority:medium - #11595 💬 0
test: web worker coverage — supabase.db + supabase.websocket
priority:medium - #11592 💬 0
Track: low-level unit + integration test coverage gaps
priority:medium - #11589 💬 0
e2e (vitest): expand astro-kbve route coverage to dashboard + sidebar nesting
priority:medium - #11588 💬 0
e2e: Yuki dock persist + SSE EventSource consumer (Playwright)
priority:medium - #11587 💬 0
e2e: axe-core accessibility sweep across dashboards (Playwright)
priority:medium - #11583 💬 0
Track: e2e suite upgrades to catch UA-specific + dashboard regressions
priority:medium
Repositories
Active open-source projects across the KBVE org
Web + Apps
14Astro, React, Tauri.
- old.kbve.com ★ 7
- old.discord.sh ★ 4
Discord.sh - Discord Bot
- cloud-function-register ★ 1
Appwrite hCaptcha Cloud Function for Custom Registration
- lofifocus-chrome-extension ★ 1
https://github.com/KBVE/lofifocus-docker
- cityvote-scrapper ★ 1
CityVote Scrapper
- staryo ★ 0
Proof of Concept for StarYo
- meme.sh ★ 0
Meme.sh Powered by Atlas
- widget-template-yorha-ui ★ 0
- cloud-function-onboard ★ 0
- tamagui-kbve-template ★ 0
RentEarth.com Repo
- cloud-function-api-wrapper ★ 0
- widget-react-conch ★ 0
Widget React Conch
- widget-react-youtube ★ 0
Widget React YouTube
- widget-react-application ★ 0
Widget React Application
Games + Sim
3Unity, Bevy, Phaser, Lua.
Rust Services
2axum-kbve, jedi, codegen, FFI.
Other
21- kbve ★ 16
KBVE Monorepo
- lofifocus-docker ★ 7
https://github.com/KBVE/lofifocus-chrome-extension
- widget-seamless-m4t ★ 2
React Widget for Seamless M4T
- rentearth.com ★ 1
- Discord.cm ★ 1
Discord.cm
- widget-react-register ★ 1
Widget React Register
- bugwars-discord ★ 0
BugWars Discord Game
- planewars ★ 0
PlaneWars
- meta ★ 0
Meta WebXR
- smash ★ 0
Smash
- pirate16 ★ 0
Pirate Jam 16
- herbmail.com ★ 0
HerbMail.com
- lc-agents.com ★ 0
LC Agents Website
- cryptothrone.com ★ 0
Cryptothrone.com
- hqplan.com ★ 0
HQPlan.com Prod-Devy Repo
- githubactiontest ★ 0
Test Repo for Actions
- old-repo-throw-away ★ 0
- cloud-function-n8n ★ 0
- twitch-discord-relay ★ 0
Simple Twitch Discord Relay Docker
- cloud-function-printful ★ 0
Cloud Function Printful
- .github ★ 0
Contribute
Fork → branch → PR. Worktrees make rebases painless.
-
Fork + clone
Fork `KBVE/kbve`, then clone your fork. Origin stays on your fork; upstream points at KBVE/kbve.
git clone [email protected]:<you>/kbve.git cd kbve git remote add upstream https://github.com/KBVE/kbve.git git fetch upstream -
Worktree for the task
KBVE uses `./kbve.sh -worktree <slug>` so each PR gets its own checkout off `dev`. No accidental commits on `main` or `dev`; pnpm installs and `.env.local` are copied for you.
./kbve.sh -worktree fix-auth-redirect cd ../kbve-fix-auth-redirect -
Install + run targets
`./kbve.sh -nx` wraps `npx nx run …` and sources `.env.local`. Use it for builds, dev servers, codegen, anything Nx.
./kbve.sh -nx astro-kbve:dev ./kbve.sh -nx axum-kbve:test ./kbve.sh -nx astro-kbve:test:unit -
Push + open a PR
Push the worktree branch to your fork (or to the kbve remote if you have access). Base the PR against `dev`, not `main`. Conventional Commits in the subject; explain the *why* in the body.
git push -u origin trunk/fix-auth-redirect-<ts> gh pr create --base dev --title "fix(auth): ..." --body "..." -
Sync your fork later
After your PR lands, pull upstream `dev` and prune the worktree.
git fetch upstream git checkout dev git merge --ff-only upstream/dev git worktree remove ../kbve-fix-auth-redirect git push origin --delete trunk/fix-auth-redirect-<ts>