Step 10: Submit & Review
In this final step, you will document your onboarding by adding yourself to the Fellows Directory and opening a GitHub Pull Request.
🎯 Step Objectives
Section titled “🎯 Step Objectives”- Add your profile card to the fellows documentation.
- Submit a Pull Request (PR) containing your sandbox and wiki changes.
- Request peer reviews in Discord and book your match interview.
🏃♂️ Action Guide
Section titled “🏃♂️ Action Guide”1. Add Yourself to the Fellows Directory
Section titled “1. Add Yourself to the Fellows Directory”Create a new markdown file in the wiki content folder at:
src/content/docs/fellows/YOUR_GITHUB_USERNAME.md
Paste and fill out this template:
---title: "Your Name"description: "Fellow profile"---
# Your Name 👋
- **Background:** (e.g. CS Student, transitioner, designer)- **Interests:** (e.g. React, Flutter, LLM agents)- **Goal in Fellowship:** (e.g. build team products, learn deployment)- **GitHub:** [@YOUR_GITHUB_USERNAME](https://github.com/YOUR_USERNAME)2. Commit and Push Your Changes
Section titled “2. Commit and Push Your Changes”Since the sandbox is a git submodule inside your main project repository, you must commit your changes in both the submodule and the parent repository:
# 1. Navigate to the sandbox folder, commit and push your bug fixescd sandboxgit add .git commit -m "feat: resolve sandbox management system bugs"git push origin feature/solve-onboarding-issue
# 2. Return to the root folder, stage the submodule update and your new fellow profile filecd ..git add sandbox src/content/docs/fellows/YOUR_GITHUB_USERNAME.mdgit commit -m "feat: complete AI challenge steps and register profile"git push origin feature/solve-onboarding-issueNote: If your local git requires you to sign commits but has not been set up yet, use git commit --no-gpg-sign to commit.
3. Open a Pull Request (PR)
Section titled “3. Open a Pull Request (PR)”- Go to the KulKul Fellowship GitHub Repo.
- Click New Pull Request.
- Choose your fork’s
feature/solve-onboarding-issuebranch as the source and the KulKul main repository’smainbranch as the target. - Fill out the description with a summary of the issues you fixed and a link to your live Netlify deployment. Click Create Pull Request.
4. Code Review & Interview Scheduling
Section titled “4. Code Review & Interview Scheduling”- Discord Announcement: Post a link to your open PR in the Discord
#first-stepschannel and tag@rrachman. - Peer Reviews: Look at other open PRs from fellows, review their changes, and leave helpful comments. Collaborative review is the heart of the fellowship!
- Once your PR is reviewed and approved by facilitators, we will schedule your final matching interview.