AI Tech Publishing
Author

AI Tech Publishing

In the fast-evolving AI era, we thoroughly explain stable technical foundations.

77
Articles
0
Likes
1
Views
0
Comments
Recent Articles

Latest from AI Tech Publishing

77 recent articles
AI Tech Publishing
AI Tech Publishing
Feb 25, 2026 · Artificial Intelligence

How to Build a Code Review Agent from Scratch Using Claude Agent SDK (Part 1)

This tutorial walks through creating a full‑featured code‑review Agent with Claude Agent SDK, covering installation, TypeScript setup, the SDK‑managed agent loop, structured JSON output, permission handling, sub‑agents, session management, hooks, custom MCP tools, cost tracking, and a production‑grade example.

AI AgentClaude Agent SDKTypeScript
0 likes · 21 min read
How to Build a Code Review Agent from Scratch Using Claude Agent SDK (Part 1)
AI Tech Publishing
AI Tech Publishing
Feb 24, 2026 · Artificial Intelligence

How to Build an AI Personal Operating System Using Files and Git

The author created a file‑based Personal Brain OS stored in a Git repository, using a three‑layer context architecture, JSONL/YAML/Markdown formats, and custom agent skills to give AI continuous awareness of style, goals, contacts, and workflows without any database or API keys.

AIAgent SkillsAutomation
0 likes · 21 min read
How to Build an AI Personal Operating System Using Files and Git
AI Tech Publishing
AI Tech Publishing
Feb 23, 2026 · Artificial Intelligence

Final Lesson: Build a Fully Working RSS News Brief Agent

In this final lesson of a nine‑day Agent engineering series, the author integrates the full Agent Loop, tools, MCP, skills, RAG, context handling, multi‑turn dialogue, and multi‑agent coordination to create a runnable RSS news‑briefing Agent that fetches feeds in parallel, filters content with LLMs, summarizes articles, and outputs a markdown report.

Agent CoordinationLLMMulti-agent
0 likes · 12 min read
Final Lesson: Build a Fully Working RSS News Brief Agent
AI Tech Publishing
AI Tech Publishing
Feb 22, 2026 · Artificial Intelligence

Mastering Multi‑Agent Collaboration: Handoff Mode and Coordination

This lesson explains how to extend a single‑agent system with multi‑agent collaboration, covering context isolation, Handoff and Router patterns, flat coordinator architecture, code examples, task decomposition, and practical run‑time demos for building complex AI workflows.

AICoordinatorHandoff
0 likes · 20 min read
Mastering Multi‑Agent Collaboration: Handoff Mode and Coordination
AI Tech Publishing
AI Tech Publishing
Feb 19, 2026 · Artificial Intelligence

Add Long-Term Memory to Your Agent with Lightweight RAG (Lesson 5)

This tutorial shows how to equip an AI agent with long‑term memory using Retrieval‑Augmented Generation (RAG), covering the concepts of vector embeddings, FAISS indexing, building and querying a knowledge base, and providing complete Python code examples.

AgentEmbeddingFAISS
0 likes · 13 min read
Add Long-Term Memory to Your Agent with Lightweight RAG (Lesson 5)
AI Tech Publishing
AI Tech Publishing
Feb 18, 2026 · Artificial Intelligence

Empowering Agents with Skills: Let Specialized Agents Handle Expert Tasks

This tutorial shows how to extend the MiniManus agent framework with Skill support, explains why Skills are needed compared to plain MCP, details the Claude Skill specification, provides concrete command‑line operations, code implementations, and demonstrates Skill‑MCP collaboration through practical examples.

AgentGitHubMCP
0 likes · 10 min read
Empowering Agents with Skills: Let Specialized Agents Handle Expert Tasks
AI Tech Publishing
AI Tech Publishing
Feb 16, 2026 · Artificial Intelligence

Mastering MCP: Connecting AI Agents to the World in One Lesson

This tutorial explains how the Model Context Protocol (MCP) standardizes AI agent integration by replacing custom tool code with a JSON‑RPC based, auto‑discovered ecosystem, walks through configuration, core loading logic, code implementation, a runnable example, and compares MCP with traditional tool use.

AI AgentJSON-RPCMCP
0 likes · 8 min read
Mastering MCP: Connecting AI Agents to the World in One Lesson
AI Tech Publishing
AI Tech Publishing
Feb 15, 2026 · Artificial Intelligence

Mastering AI Agent Engineering in 9 Days: Lesson 1 – The Core Agent Loop

This tutorial introduces the foundational Agent Loop that powers modern AI agents, explains why it is needed, breaks down its four core components, compares workflow‑based and agent‑based designs, and provides a minimal Python implementation with code, pitfalls, and a concrete RSS‑news use case.

AI AgentOpenAIPython
0 likes · 17 min read
Mastering AI Agent Engineering in 9 Days: Lesson 1 – The Core Agent Loop
AI Tech Publishing
AI Tech Publishing
Feb 15, 2026 · Artificial Intelligence

Mastering Agent Tool Use: Adding Search, Time, and Calculator Functions

This tutorial extends a minimal LLM Agent loop by introducing Tool Use (function calling) to give the agent actionable capabilities—searching the web, retrieving the current datetime, and performing mathematical calculations—while explaining the BaseTool architecture, registration process, system‑prompt adjustments, and practical execution examples.

AI AgentBaseToolFunction Calling
0 likes · 15 min read
Mastering Agent Tool Use: Adding Search, Time, and Calculator Functions