AIAny
Icon for item

Learn Claude Code

Teaches agent harness engineering — the permissions, memory, persistence, and coordination layer that lets an LLM act — across 20 progressive lessons, each adding one mechanism with standalone runnable code. Chinese-first, plus English and Japanese.

Introduction

Most material on AI coding agents teaches prompting or how to wire up a single tool call. This goes the other direction: it dissects the harness — the permission, memory, persistence, and coordination scaffolding wrapped around a model — and argues capability is split in two. Intelligence is trained into the model; everything that lets that intelligence land somewhere useful is engineered around it.

What Sets It Apart
  • 20 lessons (s01–s20) each isolate exactly one mechanism — agent loop, tool use, permission gating, error recovery, task persistence, background execution, sub-agent delegation, context and memory management, MCP integration — so you can read the behavioral diff an agent gains by adding that single layer.
  • Every lesson ships standalone runnable Python code plus SVG diagrams, not just prose, so you can run a minimal loop and watch each added layer change what the agent can do.
  • It uses real Claude Code internals as the reference design rather than a toy stand-in, so the patterns transfer to production harnesses instead of staying academic.
Who It's For

Great fit if you're building your own agent harness, or want to understand why Claude Code behaves the way it does at the system level. Look elsewhere if you just want usage tips for being productive in Claude Code — this is engineering of the tool, not a user guide — or if you need polished English docs, since the source is Chinese-first and the English and Japanese versions are translations that can lag.

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.