Glean 拾遗
Daily · timeline

A few picks a day.

Wed, Jul 29, 2026 3picks
← 07-28
Calendar ▾
2026 · 07
has picks today
06:00

How LLMs Actually Work — A Beginner's Guide to Next-Word Prediction

LLM 如何在底层运作——从预测下一个词开始的新手拆解

This guide explains LLMs as giant autocomplete systems, starting from tokenization through the three-stage training pipeline. Hallucination is framed as a feature of statistical prediction, not a random bug. Practical prompting principles close the loop, making this a plain-language reference for engineers who need the intuition without the math.

x.com · 12 min · AI · LLM
06:00

How to build a 4-agent team that ships a feature while you sleep

4 个 Agent 串成一条流水线,让你睡醒就能收功能

A local Claude Code pipeline chains four subagents (planner → coder → tester → reviewer) via handoff files under `.pipeline/`, all triggered by a single `/ship` slash command. The Planner writes an implementation spec; the Coder builds to it and outputs a changes summary; the Tester writes and runs tests, stopping on failure without patching code; the Reviewer is read-only and issues a SHIP / NEEDS WORK / BLOCK verdict. The setup is copy-paste ready. A brief mention of the Teamly platform shows a similar orchestration model, but the core value is the handoff architecture you can run locally.

x.com · 10 min · Agents · AI
06:00

How 5 Tools + Custom Hooks Cut Claude Code Token Usage by 90%+

如何用 5 个工具 + 自定义 Hooks 把 Claude Code Token 消耗砍掉 90%+

A practical guide to cutting Claude Code token usage by over 90% using five layered tools and custom Hooks. CBM replaces file-greping with knowledge graph queries (99.2% token reduction), context-mode extends 200K-window sessions from 30min to 3h+, RTK compresses shell output, Headroom compresses the full API payload before sending, and Caveman trims verbose replies. Enforcement Hooks ensure each layer is used by default, reducing code search tokens from ~400K to ~3.4K.

x.com · 10 min · Agents · AI · Performance