HackerTrans
トップ新着トレンドコメント過去質問紹介求人

cezarvil

no profile record

投稿

Show HN: Myco – coordinate Claude and DeepSeek and other LLMs in one agent swarm

github.com
2 ポイント·投稿者 cezarvil·2 か月前·0 コメント

Show HN: HN Sieve – AI scores every HN project so you don't miss the good ones

github.com
2 ポイント·投稿者 cezarvil·3 か月前·2 コメント

Show HN: ACP – Like MCP, but for controlling existing application UIs

github.com
2 ポイント·投稿者 cezarvil·3 か月前·0 コメント

Liberate Your OpenClaw

huggingface.co
2 ポイント·投稿者 cezarvil·4 か月前·1 コメント

Show HN: ACP – An open protocol for agents to operate live UIs natively

acp-protocol.org
1 ポイント·投稿者 cezarvil·4 か月前·1 コメント

Stripe builds interactive docs with Markdoc

stripe.dev
8 ポイント·投稿者 cezarvil·4 か月前·0 コメント

Slashing agent token costs by 98% with RFC 9457-compliant error responses

blog.cloudflare.com
5 ポイント·投稿者 cezarvil·4 か月前·1 コメント

コメント

cezarvil
·3 か月前·議論
[dead]
cezarvil
·4 か月前·議論
Hi everyone, I'm one of the creators of ACP.

We originally built this out of pure frustration. While working on our own product (Emitta), we realized that having an LLM 'look' at a screen via vision and guess where to click was ridiculously slow, unreliable, and expensive.

We looked at MCP, but that's strictly data/tools. We looked at AG-UI and A2UI, but they require building net-new components. We just wanted the agent to operate the clunky, existing UI we already had. So we wrote a protocol that basically gives the agent a structured 'map' of the live DOM, and lets it send back native execution commands (like set_field, click).

The reference server is up on npm (@acprotocol/server). I’m around all day and would love to hear your thoughts on the architecture, if the action set (8 actions) makes sense to you, or if you think the native UI-control approach is the right path forward.
cezarvil
·4 か月前·議論
MCP really isn't aging well, to be honest. LLMs are just way more efficient at writing a single script that targets an API directly, rather than ping-ponging across a protocol that's inherently slow and token-heavy. Not saying MCP is bad, just that it's obviously not the silver bullet everyone thought it was.

Cloudflare letting the LLM write a single JS function to execute the whole chain in an edge isolate is super smart. It finally offloads the agent's inner loop.

I’ve been dealing with the exact same latency/reliability mess, but on the frontend. We ended up building an open protocol to let agents operate live UIs natively because vision and DOM-scraping loops are just painfully slow. Moving the actual execution engine as close to the target as possible (either an edge V8 isolate for APIs, or a native SDK for the frontend) seems to be the only real way out of the current "slow and expensive" agent phase.