代理不是同事,将它们嵌入你的软件中。
Agents Aren't Coworkers, Embed Them in Your Software

原始链接: https://www.feldera.com/blog/ai-agents-arent-coworkers-embed-them-in-your-software

## 机器的平静技术:重新思考代理交互 代理软件(如 Moltbot、OpenClaw 等)正在快速发展,为代码审查和故障排除等任务提供强大的自动化能力。然而,当前的代理往往模仿人类交互——冗长的解释、澄清问题以及对持续监督的需求——这给用户带来了很高的认知负荷。这与马克·韦瑟(Mark Weiser)设想的“平静技术”形成对比,后者能够无缝融入生活,而无需引起注意。 关键不在于更智能的提示,而是要重构*软件*以更好地支持代理。有效的模式包括利用命令行界面 (CLI)、声明式配置(规范)和调和循环(如 Kubernetes)来定义期望的结果,而不是逐步指令。 一个至关重要且经常被忽视的方面是*数据*呈现的方式。与其让代理反复查询更新,不如利用变更数据捕获 (CDC)——流式传输精确的数据变更。这使代理能够立即对相关信息做出反应,避免代价高昂的重新评估。 像 Feldera 这样的公司正在构建采用这些模式的系统,使代理能够更高效、更可靠地运行——更接近韦瑟设想的平静技术,但专为机器设计。这种转变侧重于收敛和反应,而不是持续的对话。

黑客新闻 新的 | 过去的 | 评论 | 提问 | 展示 | 招聘 | 提交 登录 代理不是同事,将它们嵌入到你的软件中 (feldera.com) 13 分,由 gz09 1 小时前发布 | 隐藏 | 过去的 | 收藏 | 讨论 帮助 考虑申请YC 2026年夏季项目!申请截止至5月4日 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请YC | 联系方式 搜索:
相关文章

原文

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.

联系我们 contact @ memedata.com