Skip to content

Four Signals

Agentic insights for modern tech teams

I Ran Hermes Agent on the Same Task for 7 Days. The Skill File on Day 7 Looked Nothing Like Day 1.
AI/ML / dev.to

I Ran Hermes Agent on the Same Task for 7 Days. The Skill File on Day 7 Looked Nothing Like Day 1.

Hermes Agent's persistent skill file evolved from a 12-line placeholder to a 60-line intelligent procedure after 7 daily runs of an AI news digest task. It learned to avoid low-quality sources like TechCrunch, prioritize Hacker News and GitHub Releases, and generated summaries with technical context (e.g., noting breaking changes) — all without manual intervention, unlike stateless agent frameworks such as LangChain or AutoGen.

Why it matters

For senior engineers building automated workflows, this demonstrates how agents can accumulate domain-specific knowledge across sessions, reducing manual tuning and improving output quality over time.

AI/ML / nvlabs.github.io

SANA-WM, a 2.6B open-source world model for 1-minute 720p video

NVIDIA Research has released SANA-WM, a 2.6 billion parameter open-source world model that can generate 1-minute long 720p videos. This appears to be a significant open-weight model for video simulation and generation, accessible via the nvlabs GitHub page.

OpenAI co-founder Greg Brockman reportedly takes charge of product strategy
AI/ML / techcrunch.com

OpenAI co-founder Greg Brockman reportedly takes charge of product strategy

Greg Brockman, OpenAI co-founder and president, assumes product strategy, planning to merge ChatGPT and Codex into one platform as part of Sam Altman's "code red" refocus. The shift occurred while CEO of AGI deployment Fidji Simo is on medical leave, and Brockman aims to win in both consumer and enterprise by consolidating efforts and halting side projects like Sora. This aligns with OpenAI's push toward an agentic future and a super app.

Languages / en.liujiacai.net

My Thoughts on Bun's Rust Rewrite

Bun's production JS runtime, originally built on Zig for rapid prototyping and performance, was entirely rewritten in Rust via Claude-generated code in a 6-day merge (6,755 commits) with zero human review. The author argues this violates maintainability: AI ensures local semantic equivalence but misses global invariants that exist only in the original author's head, and the post-acquisition team now inherits risks previously borne by founder Jarred. Zig's foundational architecture—low-level memory manipulation and C interop—enabled Bun's success, but the rewrite is a pragmatic business decision, not a technical indictment of Zig.

Security / techmeme.com

On Pwn2Own Berlin 2026 day 2, competitors earned $385,750 after exploiting 15 unique zero-day vulnerabilities in Windows 11, Red Hat Enterprise Linux and more (Sergiu Gatlan/BleepingComputer)

On day 2 of Pwn2Own Berlin 2026, security researchers earned $385,750 by successfully demonstrating 15 unique zero-day exploits against Windows 11, Red Hat Enterprise Linux, and other systems. This highlights critical vulnerabilities in major enterprise operating systems that could impact cloud and developer infrastructure.

Microsoft Releases Aspire 13.3 with Major Deployment and Frontend Updates
Cloud / infoq.com

Microsoft Releases Aspire 13.3 with Major Deployment and Frontend Updates

Microsoft released Aspire 13.3 with a new aspire destroy command for resource cleanup across Azure, Kubernetes, and Docker Compose, plus a NativeAOT CLI and standalone aspire dashboard. Kubernetes deployment is in preview with Ingress/Gateway API routing and an AKS hosting integration labeled 'Kubernetes without YAML'. Frontend gains first-class JavaScript publishing via unified PublishAs* methods for Next.js, Vite, Bun, Yarn, and pnpm, alongside TypeScript AppHost parity, browser console logging captures, and container tunnel enabled by default; breaking changes include --log-level rename and removal of the GitHub Copilot UI.

Legible - I built an on-device document helper for immigrants using Gemma 4
General / dev.to

Legible - I built an on-device document helper for immigrants using Gemma 4

Legible is an on-device document helper for immigrants that uses Gemma 4 E4B (via Ollama) to process photos of official documents locally—no cloud API, no data leaving the machine. The FastAPI backend streams structured XML output from the model, providing plain-language explanations, deadline countdowns, and next steps in 11 languages. Past scans are stored as Fernet-encrypted files, and the frontend is a single HTML file with no build step.

General / billjings.com

Git Is Not Fine

Git excels as a distributed source store but fails as a distributed workflow tool, especially for stacked PRs common in async development. The immutable commit model and poor support for commit relationships make rebasing and maintaining stacked branches painful. Tools like jj address these gaps with a different data model that preserves history relationships and simplifies pipelining work.