惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

Hacker News: Front Page

SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Introducing Claude Opus 4.7 Qwen Studio The Future of Everything is Lies, I Guess: Where Do We Go From Here? GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Ancient DNA reveals pervasive directional selection across West Eurasia [pdf] AI cybersecurity is not proof of work Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. A Better Ludum Dare; Or, How to Ruin a Legacy GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Unexpected €54k billing spike in 13 hours: Firebase browser key without API restrictions used for Gemini requests Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent Codex Hacked a Samsung TV
Agents Aren’t Coworkers, Embed Them in Your Software
gz09 · 2026-04-26 · via Hacker News: Front Page

Agentic management software is all the hype today: What started with Moltbot and OpenClaw now has a lot of competition: ZeroClaw, Hermes, AutoGPT etc.

These systems work well and allow you to train and build generic agent loops that are genuinely helpful. We run quite a few agents ourselves at Feldera: to review code, to help troubleshoot customer issues, to maintain and debug our infrastructure etc.

Using agents makes me think about an article a famous computer scientist named Mark Weiser once wrote, titled The Computer for the 21st Century. The article starts with:

The most profound technologies are those that disappear. They weave themselves into the fabric of everyday life until they are indistinguishable from it.

- Mark Weiser

In the article Mark envisioned computing that:

  • Fades into the background
  • Enhances life without constant interaction
  • Minimizes demands on attention
  • Is calm, reliable, and predictable

Today's agents, the copilots, the chatbots are designed to be human like.

  • They have a high desire to explain themselves or summarize
  • They generate walls of text
  • They require turn-taking discussion
  • They mimic human collaboration and ask clarifying questions, may misunderstand or worse assume they understood but do something different
  • They need supervision

All of this needs a high cognitive load to interact, parse and manage.

Humans are not a good target for calm technology.

The fix is not smarter prompts. It is software built to meet agents halfway. Ideally that change happens inside existing software, not in a zoo of external agent runners.

Give an agent the right interfaces and it becomes less conversational and more ambient. It no longer needs to constantly ask, explain, summarize, and negotiate. It can stay in the background, react to changes, and make steady progress with less supervision and less noise. That is closer to Weiser’s vision: calm technology, but for machines.

So how do you restructure your software to make that possible?

A few clear agentic design patterns that make agents less noisy, more effective are already well established:

  1. CLI: a good command-line interface makes it easy for an agent loop to interact with your system and saves tokens.
  2. Specs: Declarative configs, schemas, manifests. Artifacts that state the desired outcome, not the steps.
  3. Reconciliation loops (as popularized by Kubernetes): you declare the target state, let the system continuously converge toward it. Detect if something drifts.

Put together, these are useful patterns how existing software can integrate better with agentic loops which leads to less conversation, more convergence. Calm technology for machines.

However, it begs a question: what other "agentic software patterns" exist that are not well known today?

Feldera is a query engine for incremental data processing. It already makes sure to leverage the patterns above: It has a CLI interface. It uses SQL to describe computations declaratively. It orchestrates pipelines through a control plane built around desired-state reconciliation.

Another aspect, especially relevant for agents when working with data -- but rarely discussed -- is how data is presented to them. Most systems expose tables, dashboards, CSV exports etc. Agents then have to poll, diff, and guess what changed by running expensive queries on them.

But, databases can do better: With change data capture (CDC), the system emits a stream of precise updates: inserts, updates, deletes, each tied to specific records. Instead of repeatedly asking "what is the state now?", the agent receives "This changed."

A simple example: consider a fraud-detection agent monitoring transactions. In a snapshot model, the agent must periodically scan a large table of payments to find suspicious activity. Depending on the complexity of the question asked and the data size involved, this can be slow and expensive.

With CDC, the database emits events such as:

  1. Transaction T123 inserted: $9,800 from account A to B
  2. Account A flagged as high risk
  3. Transaction T123 status updated to pending review

... continuously as they happen.

The agent reacts only to these events. It does not need to issue queries that would lead to expensive re-evaluation. It does need to compute diffs. It receives exactly the information that matters, at the moment it matters.

For an incremental engine like Feldera, this model is natural. Queries produce streams of changes, not just static results. The changes are computed incrementally, which makes answering even the most complex questions incredibly cheap.

This is reflected in our agentic demos:

In the video, the agent can do much more than watch fixed rules. It reads news coverage, identifies a new fraud pattern, and updates the pipeline to look for it. The database then does what it is good at: it continuously evaluates that logic over live data and emits changes as suspicious transactions appear. The agent subscribes to that stream and acts. It can flag the transaction, request verification, or notify a human reviewer.

That is the larger point. Agents and CDC streams are powerful together because they split the work well. The agent interprets new information and adapts the logic. The engine applies that logic continuously and emits precise updates when something changes.