Glean 拾遗
Recent picks

2picks · chronological

08-22

Introducing Delta: a multiplayer environment for coding with agents

Zed introduces Delta, a multiplayer environment for coding with agents, now in private beta. At its core is DeltaDB, which replicates both the conversation and the worktree in real time to every participant in a thread, while staying compatible with regular Git repositories. Every edit and conversation is captured between commits, so teammates who never open Delta still see a normal repo. Comments can anchor to any line of code and stay in place as the code evolves, connecting review to the conversation that produced it. The browser client is not a simplified port; it is the same Rust application compiled to WebAssembly and rendered through WebGL. Delta also integrates with third-party agent harnesses starting with Claude Code, syncing terminal sessions live into threads. The interface treats the conversation as an editable document, letting you place your cursor anywhere—on a diff line, a plan step, or a thinking block—and leave comments that the agent precisely understands. A product launch post with solid technical direction but limited hard data.

zed.dev · 7 min · Agent Tooling · Agentic Coding · Code Review
08-06

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

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