You don't become an AI engineer by watching tutorials, you become one by shipping things that work. These are the 5 projects that map to what actually shows up in real AI engineering job posts, in the order I'd build them. Every tutorial is free and first party, and you can build all of them with free accounts (the fine tuning one just needs a free Google Colab GPU). ๐ฑ
build these
The 5 projects (beginner to advanced)
1. Build a RAG chatbot over your own docs ๐
- ๐งฉ Stack: LangChain + Chroma or FAISS (vector database) + Claude API.
- ๐ Free tutorial: https://huggingface.co/learn/cookbook/en/rag_zephyr_langchain
- ๐ก Why it matters: retrieval augmented generation (chunk, embed, store, retrieve, generate) is THE foundational pattern, and the single most in demand skill in AI engineering job posts. You build a bot that answers questions from your own PDFs.
2. Build your own MCP server ๐
- ๐งฉ Stack: Model Context Protocol + Python + the official MCP SDK + Claude Desktop.
- ๐ Free tutorial (official): https://modelcontextprotocol.io/docs/develop/build-server
- ๐ก Why it matters: MCP is how modern agents get tools. Building a server that gives Claude a new capability (read your files, call an API) proves you understand the current industry standard, not just prompting.
3. Build a tool-using AI agent ๐ค
4. Fine-tune a small model on your own data ๐๏ธ
5. Ship a multi-agent workflow โ๏ธ
- ๐งฉ Stack: n8n (AI Agent node) for the low code path, or LangGraph for the code path, plus Claude or OpenAI and real tools and APIs.
- ๐ Free tutorial (official): https://docs.n8n.io/advanced-ai/intro-tutorial/
- ๐ก Why it matters: moving from a notebook demo to a deployed, always on system (an orchestrator delegating to sub agents, or a workflow triggered by email or webhook) is the engineer, not tinkerer line.
use it well
How to make these count ๐
- ๐ Put every project on GitHub with a short README (what it does, the stack, a screenshot or a 20 second demo gif). The README is what recruiters actually read.
- ๐ Post a build in public clip of each one, so you get portfolio and content at the same time.
- ๐ Do them in order. Each one reuses skills from the last, so by project 5 the advanced one won't feel advanced.
Follow
@cindiezhu for more AI tips every single day ๐ฑ