Feed aggregator

‘Narco-Submarine’ Carrying 4 Tons of Cocaine Captured by Mexico's Navy

Wired Security - Sat, 02/21/2026 - 5:00am
Following increased surveillance and patrols of routes used by transnational drug-trafficking networks, Mexican authorities have seized approximately 10 tons of cocaine in the past week alone.
Categories: Wired Security

Show HN: Beadhub.ai – Real time coord for coding agents across different minders

Hacker News - Sat, 02/21/2026 - 4:52am

Beads[1] (Steve Yegge's git-native issue tracking for agents) has been a great boost to my agents' productivity, but it's also made them more difficult to keep aligned.

So I built BeadHub, a coordination layer on top of beads. The Go CLI (bdh) wraps the beads bd client transparently: your existing beads workflows keep working, and coordination is added automatically:

- Agent-to-agent sync chat and async mail. - Claim detection with conflict rejection: agent A claims a task; if agent B tries to claim the same, bdh rejects it with a message explaining why. - Automatic file reservations: when a file is modified, all agents know it. - Live dashboard showing who's working on what, in real time.

We use BeadHub to build BeadHub. Public dashboard: https://app.beadhub.ai/juanre/beadhub/

The agents-chatting-with-each-other part feels almost magical. The agents negotiate task splits and API contracts, warn each other about breaking changes, and generally sort things out themselves. They also greatly improve coordination among the human team members, because they can handle the details in real time without involving their minders.

Everything is open source (MIT). Self-host the full stack, or use the hosted version at https://beadhub.ai.

Self-host everything with Docker:

git clone https://github.com/beadhub/beadhub.git cd beadhub && make start # then in your repo: bdh :init --beadhub-url http://localhost:8000 --project my-project What doesn't work yet: agents can't be woken externally, so they need prodding to check their mail and incoming chats. In Claude Code, hooks trigger this automatically so latency is low. Other agents need reminding.

Server and dashboard: https://github.com/beadhub/beadhub

CLI: https://github.com/beadhub/bdh

[1]: https://github.com/steveyegge/beads

Comments URL: https://news.ycombinator.com/item?id=47099148

Points: 1

# Comments: 0

Categories: Hacker News

Show HN: Cmcp – Aggregate all your MCP servers behind 2 tools

Hacker News - Sat, 02/21/2026 - 4:51am

I built cmcp, a proxy that sits between your AI agent (Claude, Codex) and all your MCP servers. Instead of registering each server individually — which can add 100+ tool definitions to your agent's context — you register one proxy that exposes just 2 tools: search() and execute().

The agent writes TypeScript to discover and call tools:

// search — find tools across all servers return tools.filter(t => t.name.includes("screenshot"));

// execute — call tools with full type safety await chrome_devtools.navigate_page({ url: "https://example.com" }); const shot = await chrome_devtools.take_screenshot({ format: "png" }); return shot;

Type declarations are auto-generated from each tool's JSON Schema, so the agent gets typed parameters for every tool. TypeScript is stripped via oxc and the JS runs in a sandboxed QuickJS engine (64 MB memory limit).

Adding servers works exactly like you'd expect — just prepend cmcp to any claude mcp add command from a README:

cmcp claude mcp add chrome-devtools npx chrome-devtools-mcp@latest cmcp install

Built in Rust with rmcp, rquickjs, and oxc. Inspired by Cloudflare's blog post on code-mode MCP.

What I found interesting building this: the biggest win isn't just fewer tokens — it's composability. An agent can chain calls across multiple servers in a single execution, which isn't possible with individual tool calls.

Comments URL: https://news.ycombinator.com/item?id=47099142

Points: 1

# Comments: 0

Categories: Hacker News

South-Pointing Chariot

Hacker News - Sat, 02/21/2026 - 4:47am
Categories: Hacker News

Instant AI Response

Hacker News - Sat, 02/21/2026 - 4:42am

Article URL: https://chatjimmy.ai/

Comments URL: https://news.ycombinator.com/item?id=47099087

Points: 1

# Comments: 0

Categories: Hacker News

Konform Browser

Hacker News - Sat, 02/21/2026 - 4:36am
Categories: Hacker News

Deprecate. Fix. Enforce. Repeat

Hacker News - Sat, 02/21/2026 - 4:18am
Categories: Hacker News

Pages