Step 5: Fork & Clone the Sandbox
Now that your workspace and AI stack are set up, we will start working with git. You will fork the fellowship repository and clone it to your machine.
🎯 Step Objectives
Section titled “🎯 Step Objectives”- Fork the repository to your own GitHub profile.
- Clone your fork locally.
- Verify that the required
AGENTS.mdandDESIGN.mdfiles exist.
🏃♂️ Action Guide
Section titled “🏃♂️ Action Guide”1. Fork the Repository
Section titled “1. Fork the Repository”- Go to the KulKul Fellowship GitHub Repo.
- Click the Fork button in the top-right corner.
- Select your GitHub username as the target. Keep the name
fellowshipand click Create Fork.
2. Clone the Repository and Submodules Locally
Section titled “2. Clone the Repository and Submodules Locally”Open your terminal (WSL terminal for Windows, native terminal for macOS/Linux) and clone your fork using SSH:
# Replace YOUR_USERNAME with your actual GitHub usernamegit clone git@github.com:YOUR_USERNAME/fellowship.gitcd fellowship
# Initialize and pull the sandbox submodule codebasegit submodule update --init --recursive3. Verify Required Repository Files
Section titled “3. Verify Required Repository Files”We require every fellowship repository to have two core files in the root directory. Verify they are present:
AGENTS.md: Describes the repository’s index structure and workspace configurations.DESIGN.md: Defines the design system links pointing to getdesign.md.
You can list all files in the root to confirm:
ls -laEnsure AGENTS.md and DESIGN.md appear in the output.