Builder is an AI-powered developer tool system comprising a web client dashboard and an AI gateway proxy service (agent-gate).
This repository uses a Two-Repo / Submodule Setup:
builder(Primary Monorepo Shell): Contains project specifications, career roadmap, and the frontend client dashboard (client/).agent-gate(git@github.com:vineet-k09/agent-gate.git): Independent backend repository attached as a Git Submodule underagent-gate/.
builder/
├── client/ # React + Vite + TypeScript Frontend
├── agent-gate/ # [Git Submodule] FastAPI AI Proxy & Security Gateway
└── PROGRESS.md # Implementation Progress Tracking
To clone builder along with the agent-gate submodule in one command:
git clone --recursive git@github.com:vineet-k09/builder.gitIf you already cloned builder without --recursive:
git submodule update --init --recursiveTo pull the latest changes from agent-gate:
git submodule update --remote --mergeWhen modifying code inside agent-gate/:
- Commit and push changes directly within
agent-gate/:cd agent-gate git add . git commit -m "feat: new feature in agent gate" git push origin main
- Step back to
builder/and record the submodule commit reference update:cd .. git add agent-gate git commit -m "chore: update agent-gate submodule reference" git push origin main
MIT