BirdNest Tech Talk
Author

BirdNest Tech Talk

Author of the rpcx microservice framework, original book author, and chair of Baidu's Go CMC committee.

148
Articles
0
Likes
452
Views
0
Comments
Recent Articles

Latest from BirdNest Tech Talk

100 recent articles max
BirdNest Tech Talk
BirdNest Tech Talk
Jul 7, 2026 · Artificial Intelligence

Avoid the Loop Trap: Designing Effective Claude Code Loops

The article explains how Claude Code defines a loop as an agent repeatedly executing work until a termination condition is met, categorizes loops by trigger, termination, primitives, and task type, and provides concrete guidance for turn‑based, goal‑driven, timed, and proactive loops while showing how to control token usage and maintain code quality.

AI loopsAgentic ProgrammingClaude Code
0 likes · 11 min read
Avoid the Loop Trap: Designing Effective Claude Code Loops
BirdNest Tech Talk
BirdNest Tech Talk
Jul 6, 2026 · Artificial Intelligence

How to Quickly Learn and Master AI‑Generated Projects with the /teach Skill

The article explains why traditional code‑review methods are inefficient for AI‑generated projects and presents a three‑skill workflow—/teach, /insight-diagram, and /architecture-diagram—demonstrated on the open‑source Zero coding agent to turn codebases into lasting, self‑contained learning courses and professional diagrams.

AISkillarchitecture diagram
0 likes · 21 min read
How to Quickly Learn and Master AI‑Generated Projects with the /teach Skill
BirdNest Tech Talk
BirdNest Tech Talk
Jul 3, 2026 · Artificial Intelligence

Detecting Code Smells with an AI ‘Smell’ Skill: My Scan of a Fresh Open‑Source Project

The article explains the origin of the term “code smell,” expands the classic catalog to over 50 modern smells, and demonstrates how the AI‑powered /smell skill automatically scans a sizable Go project (Gitlawb/zero), identifies issues such as God objects, long files, and hidden performance hotspots, then generates a prioritized refactoring roadmap.

AI analysisRefactoringcode smell
0 likes · 14 min read
Detecting Code Smells with an AI ‘Smell’ Skill: My Scan of a Fresh Open‑Source Project
BirdNest Tech Talk
BirdNest Tech Talk
Jul 2, 2026 · Artificial Intelligence

How Autoreview Turns AI Code Review into an Unskippable Quality Gate

Autoreview is an AI‑driven skill that automatically reviews code before a PR, addressing volume, blind‑spot, and boredom problems by repeatedly running until the code is clean, using a Scope Governor, multi‑engine panels, and strict isolation to enforce quality without manual bottlenecks.

AI code reviewCI workflowScope Governor
0 likes · 16 min read
How Autoreview Turns AI Code Review into an Unskippable Quality Gate
BirdNest Tech Talk
BirdNest Tech Talk
Jun 30, 2026 · Operations

Building VXLAN Probes with evr: Monitoring Edge Routers Without Agents

The article explains how Baidu’s open‑source evr tool leverages VXLAN VTEP reflection to monitor Edge Virtual Routers from a single side, detailing packet construction, payload encoding, raw‑socket handling, BPF filtering, ECMP coverage, and practical configuration for reliable loss, latency, and bit‑flip detection.

BPFECMPVXLAN
0 likes · 19 min read
Building VXLAN Probes with evr: Monitoring Edge Routers Without Agents
BirdNest Tech Talk
BirdNest Tech Talk
Jun 29, 2026 · Artificial Intelligence

Packing 775 Saved Articles into a 4 MB Vector Store: A RAG Skill That Beats Karpathy’s Wiki

The author built an open‑source RAG skill called chao‑rag‑wiki that compresses 775 collected articles into a 4.8 MB vector index using TurboVec, hybrid dense‑plus‑BM25 retrieval and optional LLM reranking, then compares its zero‑compile latency and full‑recall strengths against Karpathy’s llm‑wiki approach.

AI knowledge baseHybrid RetrievalObsidian
0 likes · 16 min read
Packing 775 Saved Articles into a 4 MB Vector Store: A RAG Skill That Beats Karpathy’s Wiki
BirdNest Tech Talk
BirdNest Tech Talk
Jun 26, 2026 · Fundamentals

Refactoring in the AI Era: Evolving Code for Cleanliness

The article explains how AI‑generated code often arrives as tangled, untested code, and shows how to apply classic refactoring principles—technical debt awareness, the Rule of Three, and a three‑step checklist—through the Goal Workflow /refactor and /smell skills, turning Fowler's book into an executable AI agent that diagnoses and cleans code automatically.

AI AgentsAutomationRefactoring
0 likes · 18 min read
Refactoring in the AI Era: Evolving Code for Cleanliness
BirdNest Tech Talk
BirdNest Tech Talk
Jun 25, 2026 · Backend Development

Finally, Go Gets Scala‑Style Chainable Pipelines with the seq Library

The seq library introduces left‑to‑right chainable lazy collections for Go, letting developers write pipelines that read like Scala, explains why Go waited for generic methods until version 1.27, showcases concrete examples, design decisions, limitations, and how to get started.

Golangcollection pipelinesfunctional programming
0 likes · 14 min read
Finally, Go Gets Scala‑Style Chainable Pipelines with the seq Library
BirdNest Tech Talk
BirdNest Tech Talk
Jun 11, 2026 · Artificial Intelligence

Loop Engineering in Practice: Automating Eight Kuiniu Features with a Single /loop-it Command

The author demonstrates Loop Engineering by feeding a PRD to Claude Code, triggering a /loop-it command, and in one hour automatically creating, implementing, reviewing, and shipping eight GitHub issues for the Kuiniu tool, while detailing the concept, history, workflow design, state management, error recovery, and practical insights.

AI automationClaude CodeGitHub Issues
0 likes · 16 min read
Loop Engineering in Practice: Automating Eight Kuiniu Features with a Single /loop-it Command