The repos to build with.
You installed a coding agent. These are the open-source projects you reach for to build the actual product — agent frameworks, automation, local AI, MCP plugins, and the Naija rails (Paystack, Flutterwave, WhatsApp) no foreign tutorial gives you. Every star count and license here is checked, and refreshed weekly so it stays honest.
Build an agent — frameworks
You installed a coding agent. These are the open-source frameworks you reach for to build the actual agent product.
crewAIInc/crewAI
Framework for orchestrating role-playing, autonomous AI agents that collaborate as a 'crew' (e.g.
Why it matters: Easiest mental model for a beginner: you describe agents by role and goal in plain language.
agno-agi/agno
Full-stack, batteries-included Python platform to build, run, and manage agents — agents with memory, tools, knowledge, and a built-in UI/runtime.
Why it matters: Batteries-included means a beginner gets memory, tools and a UI without stitching five libraries together — fastest path from zero to a usable agent…
langchain-ai/langgraph
Low-level framework for building stateful, controllable agents as graphs.
Why it matters: The right tool once a builder's agent outgrows simple loops and needs real state, retries, and human approval steps — i.e.
openai/openai-agents-python
Lightweight, official multi-agent workflow framework.
Why it matters: Smallest cognitive load of any framework here — perfect first contact with agent ideas (tools, handoffs, guardrails) before committing to a heavier…
mastra-ai/mastra
TypeScript-first framework for AI apps and agents (workflows, RAG, memory, evals) from the team behind Gatsby.
Why it matters: Best-in-class TS DX for the web builders who already live in Next.js/Node and deploy to Vercel-style hosts.
pydantic/pydantic-ai
Type-safe agent framework from the Pydantic team.
Why it matters: Structured outputs are exactly what a builder needs to wire an agent into a real app frontend (clean JSON, no parsing hacks).
openai/openai-agents-js
TypeScript/JavaScript port of the OpenAI Agents SDK, including voice agents.
Why it matters: Many VibeCoded builders ship web apps in JS/TS; this lets them add an agent without switching to Python.
Naija rails — payments, WhatsApp, real apps
The repos no US tutorial gives you: collect Naira, automate WhatsApp, and clone a real Nigerian app. Star counts barely matter here — these are the most load-bearing dependencies you have.
WhiskeySockets/Baileys
Socket-based TypeScript/JavaScript API for WhatsApp Web — send/receive messages, media, and run bots with no Selenium or browser.
Why it matters: WhatsApp is the default storefront and support channel for Nigerian small businesses.
Flutterwave/Node-v3
Official Node.js library for Flutterwave v3 APIs — card/bank/USSD/mobile-money charges, transfers, payment links, and webhook verification for one of the two…
Why it matters: Collecting Naira is the make-or-break step for any sellable app.
PaystackOSS/paystack-node (+ paystack-python)
Official Paystack client libraries for Node (28★, MIT) and Python (PaystackOSS/paystack-python, 36★, MIT, pushed 2025-04) — initialize transactions, verify…
Why it matters: Paystack is the most common payment account a Nigerian builder already has.
frappe/erpnext
Free, self-hostable ERP covering accounting, inventory, POS, CRM, manufacturing, HR/payroll, and an Education module (school/student management) — one platform…
Why it matters: Rather than building a school-management or inventory app from scratch, a builder can self-host or study ERPNext's proven data models.
AfricasTalkingLtd/africastalking-node.js
Official Node.js SDK for Africa's Talking — programmatic SMS, USSD, voice, and airtime across African telcos, including Nigerian networks.
Why it matters: USSD and SMS still reach the majority of Nigerian customers, including non-smartphone users.
NifrasUsanar/InfoShop
Free, open-source Point of Sale built on Laravel + Inertia + React — modern stack, inventory, sales, and reporting.
Why it matters: MIT-licensed (clean for commercial forking, unlike ERPNext/OSPOS), actively maintained, and on a Laravel+React stack that maps well to…
Flutterwave/React-v3
Official React component library for Flutterwave checkout — a drop-in <FlutterWaveButton> / useFlutterwave hook that renders the hosted payment modal…
Why it matters: Most VibeCoded builders ship React/Next.js front-ends.
Automate your business — workflow & low-code
Wire AI into real workflows, often with little or no code.
n8n-io/n8n
Fair-code visual workflow automation with native AI/agent nodes and 400+ integrations (WhatsApp, Telegram, Gmail, Sheets, Paystack-via-HTTP, etc.).
Why it matters: Highest-leverage pick: massive community and YouTube tutorials mean a stuck Lagos builder always finds an answer; runs on a cheap VPS; visual-first…
langflow-ai/langflow
MIT-licensed visual builder for AI agents and workflows — drag-and-drop nodes over LangChain-style components to assemble RAG, agents, and multi-step chains,…
Why it matters: Truly permissive license removes any commercial-use doubt; visual canvas makes abstract agent/RAG concepts concrete; exports to an API so the…
langgenius/dify
Production-ready platform for agentic workflow development — visual workflow canvas plus an app/agent builder, RAG pipeline, and prompt orchestration with…
Why it matters: Bridges chatbot-builder and workflow worlds; app templates mean a builder ships a working AI product (support bot, FAQ over their own docs) fast,…
FlowiseAI/Flowise
Open-source visual builder for LLM chains and AI agents — 'Build AI Agents, Visually'.
Why it matters: Fastest path to an embeddable chatbot a small business can put on its site; smaller/lighter than Dify so it runs on modest VPS resources.
activepieces/activepieces
Open-source Zapier alternative with the simplest drag-and-drop UX in the category and ~400 MCP servers, so AI agents can call tools natively.
Why it matters: Easiest mental model for a true beginner; MCP-native so it bridges directly to the agentic coding tools already on /vibe-coding-tools; lightweight…
windmill-labs/windmill
Developer platform that turns Python/TypeScript/Go scripts into webhooks, workflows, and internal UIs — code-first with a low-code flow-builder fallback.
Why it matters: Perfect bridge for the intermediate builder leveling up from no-code to code without abandoning the visual scaffolding; one tool covers internal…
Run AI locally — the budget stack
Run models on your own machine: private, offline, and no per-token bill.
ollama/ollama
Fastest way to run open-weight models locally; one command downloads, auto-quantizes, detects hardware, serves an OpenAI-compatible API.
Why it matters: Perfect: free, MIT, CPU-capable, offline after first download.
open-webui/open-webui
Self-hosted ChatGPT-style UI over Ollama with built-in RAG, multi-user login, model management.
Why it matters: Excellent: closes the 'now what do I click?' gap, offline, free; built-in RAG for chatting with Nigerian business docs.
ggml-org/llama.cpp
C/C++ inference engine that runs LLMs on ordinary CPUs/modest GPUs via GGUF quantization; the engine under Ollama and LM Studio.
Why it matters: This IS the budget story: quantization lets a 7B model run on 6-8GB RAM.
rasbt/LLMs-from-scratch
Sebastian Raschka's book repo building a ChatGPT-like LLM in PyTorch from scratch (tokenizer, attention, training, fine-tuning) with runnable notebooks.
Why it matters: Excellent learning value: free, notebook-based, small examples run on modest hardware.
infiniflow/ragflow
Open-source RAG engine with deep document understanding; parses messy layouts (tables, scanned forms) and grounds answers with citations.
Why it matters: Good for intermediate builders: Apache-2.0, self-hostable, strong on messy scanned paperwork.
Mintplex-Labs/anything-llm
All-in-one desktop app (and Docker) for local-first document Q&A and agents; point at Ollama, drop in docs, chat with citations.
Why it matters: Strong: desktop app means zero terminal, 100% offline, MIT to build a product on.
run-llama/llama_index
Leading data/RAG framework: loaders, indexing, retrieval, query engines.
Why it matters: Good code-jump: MIT, works fully with local Ollama models so no API bill.
Plug in superpowers — MCP servers
MCP servers give your coding agent new powers — a browser, your database, GitHub, live docs.
punkpeye/awesome-mcp-servers
The largest community-curated index of MCP servers, grouped by category (databases, browser, cloud, comms, etc.) — the de-facto directory for discovering what…
Why it matters: Great for graduating from beginner to intermediate — but only after the page teaches vetting, because most entries are unofficial community servers.
modelcontextprotocol/servers
Anthropic's official monorepo of reference MCP servers — Filesystem, Git, Fetch, Memory, Sequential Thinking, Time, and Everything.
Why it matters: Perfect first stop.
upstash/context7
MCP server that injects up-to-date, version-correct documentation for thousands of libraries straight into the agent's context, so it stops generating code…
Why it matters: Directly attacks the #1 beginner failure mode — the agent confidently writing outdated Next.js/React/Tailwind/Paystack code.
microsoft/playwright-mcp
Microsoft's official Playwright MCP server.
Why it matters: First-party (Microsoft), Apache-2.0, very actively maintained.
github/github-mcp-server
GitHub's official MCP server.
Why it matters: Every VibeCoded builder already has GitHub.
firecrawl/firecrawl-mcp-server
Official Firecrawl MCP server — adds robust web scraping, crawling, search, and structured extraction (clean, agent-ready markdown) to any MCP client.
Why it matters: First-party, MIT, actively maintained.
supabase-community/supabase-mcp
Official Supabase MCP server — lets the agent connect to a Supabase project to manage tables, run queries, and wire up a Postgres-backed backend in natural…
Why it matters: First-party, Apache-2.0, generous free tier — the easiest way for a beginner to give a Project Library app a real database instead of mailto:/static…
Learn & study — courses and read-the-source
Free, world-class courses and repos to learn from by reading real code.
codecrafters-io/build-your-own-x
Master programming by recreating your favorite technologies from scratch — build your own database, git, shell, web server, etc., via curated step-by-step…
Why it matters: The most-starred learning repo on GitHub.
Shubhamsaboo/awesome-llm-apps
100+ runnable AI agent and RAG apps — clone, customize, ship.
Why it matters: Best single repo for the audience: real apps you run today, permissively licensed (Apache-2.0 means they can fork into client work), and structured…
microsoft/generative-ai-for-beginners
21-lesson structured course to start building with generative AI — videos, written lessons, and code in Python/TypeScript.
Why it matters: Microsoft-maintained, MIT-licensed, beginner-first, and actively maintained.
punkpeye/awesome-mcp-servers
The largest curated collection of Model Context Protocol (MCP) servers — the plugins that give coding agents real capabilities (databases, browsers, payments,…
Why it matters: MCP is exactly what turns the agents VibeCoded already teaches into useful tools.
dair-ai/Prompt-Engineering-Guide
The most comprehensive open guide to prompt engineering, context engineering, RAG, and AI agents — papers, lessons, notebooks, and a companion site.
Why it matters: Prompting is the highest-leverage skill for a vibe-coder; this is the reference everyone cites, MIT-licensed and maintained.
microsoft/ai-agents-for-beginners
12-lesson course to get started building AI agents, with code samples and concepts (tool use, planning, multi-agent, RAG).
Why it matters: Agents are VibeCoded's core thesis; this is the best free structured curriculum on them.
anthropics/anthropic-cookbook
Official Anthropic notebooks/recipes showing effective ways to build with Claude — tool use, RAG, vision, sub-agents, evaluations.
Why it matters: First-party, MIT-licensed, runnable notebooks from the makers of the agent VibeCoded already recommends.