Glean 拾遗
Daily · timeline

A few picks a day.

Mon, Jun 22, 2026 5picks
← 06-21
Calendar ▾
2026 · 06
has picks today
06-23 →
09:32

GLM-5.2: Built for Long-Horizon Tasks

GLM-5.2:面向长时程任务,落地百万 Token 上下文与开源推理栈

Zhipu AI introduces GLM-5.2, a flagship model for long-horizon tasks with a solid 1M-token context and an MIT license. Architecture innovations include IndexShare, which reuses the sparse attention indexer across four layers to cut per-token FLOPs by 2.9× at 1M context, and an improved MTP layer that raises speculative decoding acceptance length by 20% through IndexShare, KV sharing, rejection sampling, and end-to-end TV loss. Agentic RL post-training is backed by the slime framework, and an anti-hack module detects and blocks reward-hacking behaviors like fetching evaluation files or curl-downloading answers. GLM-5.2 ranks as the top open-source model on long-horizon benchmarks such as FrontierSWE (only 1% behind Opus 4.8) and Terminal-Bench 2.1 (81.0), making it relevant for engineers building coding agents and long-context inference systems.

09:32

How to fix your entire life in 1 day

用一天重新校准人生:一份基于心理挖掘与目标设定的操作协议

The author argues that most New Year's resolutions fail because people try to change actions without changing their underlying identity. Drawing on Adlerian psychology, Loevinger's stages of ego development, and cybernetics, he presents a one-day protocol: morning psychological excavation (define anti-vision and vision), daytime interrupt-based prompts to break autopilot, and evening synthesis into three-lens goals (year, month, day). The core thesis is that all behavior is goal-oriented at an unconscious level, and real change requires replacing the lens through which you perceive reality. For readers interested in self-development, behavior design, and goal-setting.

06:00

Ponytail: Lazy Senior Dev Inside Your AI Agent, Cuts Code Bloat by ~54%

AI 代码生成懒人模式:自动砍掉无用代码、缩短输出至原规模一半

Ponytail is a rule plugin for 14+ AI coding agents (Claude Code, Codex, Copilot CLI, etc.) that injects a lazy-senior-dev mindset. Before generating code, it forces the agent to climb a ladder: does this need to exist? Can the standard library or native platform feature do it? Can it be one line? Only then writes the minimum viable solution. Benchmarked on real Claude Code sessions editing a real FastAPI + React repository across 12 feature tickets, it cuts lines of code by 54% (mean), tokens by 22%, cost by 20%, and time by 27% while keeping 100% safety on validation, error handling, security, and accessibility. Ideal for developers tired of AI bloat and over-engineering.

06:00

Loops explained: Claude, GPT, Mira and what actually works

Loops 解密:Claude、GPT、Mira 以及真正有效的方法

This article explains the core concept of AI loops—moving from single-request interactions to autonomous goal-driven iterations. It covers the five building blocks of a real loop (automation, skill, sub-agents, connectors, verifier), the hidden costs (context growth, token compounding, empty iterations), and provides a self-checking prompt you can paste into any LLM. It also introduces Mira as a free, no-code loop platform inside Telegram. For engineers evaluating agent infrastructure or anyone wanting to move beyond manual prompting.

x.com · 19 min · Agent Architecture · Claude Code · AI Loops · Mira
06:00

A local HTML editor built for human-AI collaboration

本地 HTML 编辑器,专为 Agent 协作设计

Lavish-axi is a local CLI tool that opens AI-generated HTML artifacts in a local browser, allowing developers to annotate elements, select text, take screenshots, and send structured feedback directly back to the AI agent. It runs a local server with a browser chrome, supporting live reload, layout auditing (overflow, clipped text, overlapping text), feedback queuing, and long polling. Built as an AXI, it requires no setup beyond `npx` and can be integrated as a skill into agents like Claude Code. It's ideal for engineers who need to iterate on AI-generated visualizations, plans, or UI mockups with precise feedback.

github.com · 18 min · Agents · Ai Tooling · CLI · Developer Tools · LLM