Ephemeris · Issue 010 Tuesday · 28 Apr 2026 · Zürich
Ephemeris · Issue 010 01 / 8 · via @seeallochnaya
Models · Open weights

DeepSeek V4 brings a new attention.

The Pro variant is 1.6T total parameters with 49B active and a long-context attention scheme called CSA/HCA; the Flash sibling is small enough to be cheap and useful. If you build on open weights, this is the next baseline to test against.

VariantTotal paramsActiveInput · Output ($/M)
V4-Pro1.6T49B$1.74 · $3.48
V4-Flash284B13B$0.14 · $0.28
Ephemeris · Issue 010 02 / 8 · OpenAI
Dev tools · Agent orchestration

An open spec for conducting Codex.

Symphony turns issue trackers into always-on agent systems: an open-source orchestration spec that says how a queue of tasks fans out across Codex workers, who owns what, and how results land back. Wire it once, leave it running.

# a Symphony task in plain YAML
trigger: issue.label.added=codex/auto
workers: 4
handoff:
  - plan       implement
  - implement  review
  - review     open-pr
on_fail: reassign & retry(2)
# the spec; not a SaaS, not a product
Ephemeris · Issue 010 03 / 8 · Cloudflare
Infrastructure · Agent storage

Versioned storage that speaks Git.

Artifacts gives an agent a real git remote: clone, branch, push, fork from anywhere. Spawn ten million repos for ten million sessions, hand off a URL to any standard git client, throw the rest away. The hard part of long-running agents has always been state — this is one of the cleanest answers yet.

Specs · Beta
Protocolgit smart-http v2
Repos / account≈ 10⁷
Fork sourceany remote · GitHub, GitLab, self-hosted
Hand-offURL works in any git client
Lifetimeephemeral or pinned
Ephemeris · Issue 010 04 / 8 · Cloudflare
Internal · Inference stack AI infra · Inference

The stack underneath very large models.

Cloudflare's foundations post is the rare inference write-up that sits below the model: custom kernels, scheduler, KV-cache layout, and the assumption that the network is the bottleneck. The bar chart isn't the point — the chart of who owns each layer is.

Kernelsin-house
Schedulerin-house
KV cachein-house
Runtimehybrid
Weightsvendor
Ephemeris · Issue 010 05 / 8 · Vercel
Web platform · Performance

WebStreams, ten times faster.

Vercel rewrote WebStreams from the spec down and shaved 10–14× off Next.js rendering benchmarks. Less object allocation, less server overhead, fewer ceremonies between chunks. If your SSR is hot, this is the kind of upstream win you get for free on the next runtime bump.

$ bench next-render --before --after
─────────────────────────────────────────
before  ▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮  4180 ms
after   ▮▮▮                            312 ms
─────────────────────────────────────────
   13.4× faster   ·   server overhead -78%
Ephemeris · Issue 010 06 / 8 · Next.js
Dev tools · Build systems

Building faster by building less.

A long, generous tour of how Turbopack tracks the dependency graph at function-call granularity, memoizes everything, and rebuilds only what changed. The same idea Salsa, Adapton, and Bazel circle around — applied to the front-end build, which has wanted it for a decade.

The fastest computation is the one you don't perform. Incremental computation is, more than anything, a discipline of remembering enough to know what's safe to skip.
Ephemeris · Issue 010 07 / 8 · GitHub
Agentic coding · Practice

What GitHub learned letting agents drive.

A team inside Copilot Applied Science spent a quarter doing real engineering with agents in the lead. The takeaways aren't about prompts — they're about how teams change shape when the bottleneck moves from "writing the code" to "deciding what to ship next."

  1. 01Specs become the artifact. The PR is downstream.
  2. 02Reviews shift from style to intent — the agent already wrote it cleanly.
  3. 03Tests are negotiation. They're how you tell the agent it's done.
  4. 04Stand-ups become roadmap meetings. The day-to-day is in the queue.
Ephemeris · Issue 010 08 / 8 · via @ProductsAndStartups
Case study · Agentic pipeline

Ticket to PR in four minutes, one dollar.

A working demo, not a deck: an autonomous pipeline that reads an issue, opens a Docker sandbox, runs the Claude Agent SDK end-to-end, and pushes a pull request — total wall-clock around four minutes per ticket, total cost about a dollar. The interesting part is how thin the orchestration layer can be.

RE · factory-agent 2026-04-05
Triggerissue assigned
SandboxDocker · ephemeral
EngineClaude Agent SDK
Outputgit push + PR
Wall time~4 min / ticket
Run cost~$1 / ticket
End of issue 010 Back to top ↑

That's today.

Eight stories about the layer underneath today's product surface — model attention, agent storage, build graphs, the runtime. The picks tilted toward primitives because the primitives had a better week than the products did.

Today's sources · seeallochnaya · OpenAI · Cloudflare · Vercel · Next.js · GitHub · ProductsAndStartups
Rubric · AI tools you can adopt this week · creative software · dev tools & agentic coding · privacy & security when the signal is high · research with a practical kernel · anything actionable for a senior engineer or founder
Issue 010 · Tuesday, 28 April 2026 · Zürich