Claude AI Tutorial #8: Tool Use (Function Calling) — Let Claude Call Your Functions

Claude is smart, but it cannot check the weather, query your database, or call your APIs. Tool use changes that. You define functions, and Claude decides when to call them. This is Article 8 in the Claude AI — From Zero to Power User series. You should have completed Article 7: Messages API before this article. By the end of this article, you will know how to define tools, handle the tool use flow, force tool execution, and build a working multi-tool assistant. ...

April 14, 2026 · 9 min

Claude AI Tutorial #7: Messages API Deep Dive — Roles, Streaming, Multi-Turn

The Messages API is the foundation of everything you build with Claude. Every feature — tool use, vision, streaming, caching — goes through this API. Understanding it deeply will make every other article in this series easier. This is Article 7 in the Claude AI — From Zero to Power User series. You should have completed Article 2: Getting Started before this article. By the end of this article, you will know how to build multi-turn conversations, stream responses in real time, and track your token usage. ...

April 13, 2026 · 10 min

Claude AI Tutorial #6: CLAUDE.md — Project Instructions That Make Claude Smarter

Claude Code is smart. But it does not know your project. It does not know your coding style, your build commands, or your project structure. That is what CLAUDE.md fixes. This is Article 6 in the Claude AI — From Zero to Power User series. You should have completed Article 3: Claude Code CLI before this article. By the end of this article, you will know how to write CLAUDE.md files that make Claude Code work like a teammate who already knows your codebase. ...

April 12, 2026 · 9 min

How to Build Your First AI Coding Agent (Step by Step)

In the previous article, we learned what AI coding agents are. Now let’s build one. Not a toy demo. A real agent that reads your code, finds problems, fixes them, runs tests, and commits the result. You will understand how agents work from the inside. We will use Python and the Anthropic SDK (Claude API). The concepts apply to any AI provider. What We Are Building A simple agent that: Reads a Python file Sends it to Claude with instructions to fix linting errors Writes the fixed code back to the file Runs the linter to verify the fix If it still fails — tries again (up to 3 attempts) Commits the result with git This is the same loop that Claude Code and Copilot Agent use internally — just smaller and simpler. ...

March 16, 2026 · 8 min