Glean 拾遗
Daily · timeline

A few picks a day.

Fri, Aug 7, 2026 3picks
← 08-06
Calendar ▾
2026 · 08
MoTuWeThFrSaSu ·····12345678910111213141516171819202122232425262728293031
has picks today
06:00

What Are Tokens? A Practical Guide to LLM Tokenization

一文看懂 LLM Token:从拆分、编码到计费

A beginner-friendly explainer on LLM tokens: how tokenizers split text into tokens, map them to numbers, and decode outputs back to text. Using a tiny corpus ('the cat sat on the mat'), the author walks through vocabulary construction from characters to character groups, and cites concrete examples: vocabulary size from 1k to 200k reduces 'understanding' from 5 tokens to 2, while the made-up word 'Frabjous' burns 7 tokens for 15 characters. It also clarifies billing: input tokens include conversation history, system prompt, and tool definitions; output tokens are billed separately, so shorter generations save money. Useful for app developers who want to understand and optimize LLM token costs.

www.aihero.dev · 4 min · AI Engineering · LLM · Token-Optimization · Tokenization
06:00

Jeff Dean's Last Interview: AI Speed, the 0% Rule, and His Google Exit

Jeff Dean 离职前最后一谈:低估 AI 速度,给创业者的 0% 生存法则

In his last interview before leaving Google, Jeff Dean admits his year-old prediction undershot reality: models are improving faster than expected at complex tasks, and agentic systems can now run continuously for weeks. He likens specialized inference hardware to the 2001 'put the search index in RAM' moment, citing 50x latency and 30-80x energy-efficiency gains. A single compute op costs ~1 picojoule; moving data costs 1000x more, which forces batching. The conversation covers context engineering as the new frontier, the napkin math behind TPU, and a founder heuristic: test your domain with the strongest general model — 0% or 1% success is a good sign, 20% is a red flag. Once agents write all the code, he argues, taste — knowing what to have agents solve — becomes the scarce skill. Relevant for AI infrastructure engineers, agent builders, and AI founders.

www.infoq.cn · 14 min · AI Agents · Context Engineering · Inference Hardware · Performance
06:00

Skills v1.2: /wait-what, Codex metadata, and a Claude Code plugin

技能包 v1.2:新增 /wait-what 纠偏指令,并兼容 Codex 元数据

v1.2 of Matt Pocock's AI coding skills ships as a Claude Code plugin and gains a documentation site at aihero.dev/skills. Each SKILL.md now has an agents/openai.yaml sidecar carrying Codex UI metadata; policy.allow_implicit_invocation: false mirrors disable-model-invocation so user-invoked skills stay out of the agent context until explicitly typed. New additions include /wait-what, a one-word corrective that re-pitches without dropping content, /wizard, which produces deterministic bash scripts for human-only steps, and /to-questionnaire, which turns an unanswerable decision into an async Markdown questionnaire. The /wayfinder router gains explicit phase boundaries, /handoff is narrowed to travel-only cases, and /compact becomes the default context action. /write-for-agents is renamed /docs-for-agents while six skills are absorbed or removed. Worth reading for engineers maintaining skills in Claude Code or Codex who care about cross-harness metadata and context engineering.

www.aihero.dev · 14 min · Agent Engineering · Agent Tooling · Claude Code · Codex · Context Engineering