frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Roblox Is Minting Teen Millionaires

https://www.bloomberg.com/news/articles/2026-03-06/roblox-s-teen-millionaires-are-disrupting-the-...
1•petethomas•1m ago•0 comments

Secure Snake Home (SSH)

https://snake.eieio.games
1•fratellobigio•2m ago•0 comments

How AI Is Turbocharging the War in Iran

https://www.wsj.com/tech/ai/how-ai-is-turbocharging-the-war-in-iran-aca59002
1•JumpCrisscross•7m ago•0 comments

Anthropic and The Pentagon

https://www.schneier.com/blog/archives/2026/03/anthropic-and-the-pentagon.htmll
1•benwen•8m ago•0 comments

British Columbia makes daylight saving time permanent

https://text.npr.org/nx-s1-5741076
1•bvanderveen•8m ago•0 comments

Will the U.S. confirm that aliens exist before 2027?

https://kalshi.com/markets/kxaliens/aliens/KXALIENS-27
1•pinkmuffinere•9m ago•0 comments

Metrics Make Us Miserable

https://www.derekthompson.org/p/how-metrics-make-us-miserable
1•gmays•11m ago•0 comments

Best Music Distributors in 2026

1•anonyxbiz•17m ago•0 comments

Pushing and Pulling: Three Reactivity Algorithms

https://jonathan-frere.com/posts/reactivity-algorithms/
1•frogulis•24m ago•0 comments

Science Fiction Is Dying. Long Live Post Sci-Fi?

https://www.typebarmagazine.com/science-fiction-is-dying-long-live-post-sci-fi/
2•KittenInABox•24m ago•0 comments

On the road to C4 rice: Advances and perspectives

https://onlinelibrary.wiley.com/doi/full/10.1111/tpj.14562
1•lawrenceyan•28m ago•0 comments

The Intelligence Monopoly Is Over

https://www.spatialintelligence.ai/p/the-intelligence-monopoly-is-over
1•beauzero•29m ago•1 comments

Why can't you just ask AI to find you a trading edge? You can now

https://github.com/augiemazza/varrd
1•varrd1•29m ago•1 comments

Cloud VM benchmarks 2026: performance/price for 44 VM types over 7 providers

https://devblog.ecuadors.net/cloud-vm-benchmarks-2026-performance-price-1i1m.html
4•dkechag•37m ago•0 comments

Human brain cells on a chip learned to play Doom in a week

https://www.newscientist.com/article/2517389-human-brain-cells-on-a-chip-learned-to-play-doom-in-...
3•doener•46m ago•0 comments

The San Francisco lunch that launched Silicon Valley 70 years ago

https://davidlaws.medium.com/the-san-francisco-lunch-that-launched-silicon-valley-70-years-ago-3b...
2•DavidLawsCHM•47m ago•0 comments

NexusMods (game modding application for Linux) code repo is now read-only

https://github.com/Nexus-Mods/NexusMods.App
1•wingmanjd•49m ago•1 comments

ClawPurse Micropayment Ecosystem

https://clawpurse.ai/
2•TheTikiCow•50m ago•0 comments

Ask HN: Last time you wrote code?

2•blinkbat•53m ago•1 comments

What's the deal with distributed SYN DOS attacks

2•xmddmx•53m ago•0 comments

PressPuzzler AI Crosswrod Puzzle Maker

https://presspuzzler.com/
1•aidevguy•54m ago•0 comments

Blocking a common brain gas reverses autism-like traits in mice

https://www.psypost.org/blocking-a-common-brain-gas-reverses-autism-like-traits-in-mice/
3•geox•1h ago•1 comments

MuJS: Lightweight JavaScript interpreter for embedding in other software

https://mujs.com
2•linkdd•1h ago•0 comments

I don't know if my job will still exist in ten years

https://www.seangoedecke.com/will-my-job-still-exist/
4•nomdep•1h ago•0 comments

AI Powered Exploit Kit

https://github.com/Ed1s0nZ/CyberStrikeAI
1•jwally•1h ago•0 comments

Hitchhiker's Guide to Hitchhiking

https://www.mikokacki.me/blog/hitchhikers-guide-to-hitchhiking
1•samiczy•1h ago•0 comments

Show HN: Scalisos – A privacy-first, ad-free passport photo layout tool

https://scalisos.com
2•theborat•1h ago•0 comments

My chief of staff, Claude Code

https://twitter.com/jimprosser/status/2029699731539255640
2•mji•1h ago•6 comments

White House Unveils President Trump's Cyber Strategy for America

https://www.whitehouse.gov/articles/2026/03/white-house-unveils-president-trumps-cyber-strategy-f...
2•campuscodi•1h ago•0 comments

Patel gutted FBI counterintelligence team tasked with tracking Iranian threats

https://www.cnn.com/2026/03/03/politics/patel-fbi-national-security-division-firings-iran
12•doener•1h ago•1 comments
Open in hackernews

Show HN: Beam Protocol – SMTP for AI Agents (natural language agent-to-agent)

https://github.com/Beam-directory/beam-protocol
2•alfridus•2h ago

Comments

alfridus•2h ago
Hi HN — I built this because my AI agents couldn't talk to each other.

I'm running 4 agents (each a separate process with its own LLM, tools, and memory) across 2 machines. They handle sales CRM, payment reconciliation, and operations for our company. The problem: when Jarvis (my main agent) needed info from Clara (sales agent), there was no standard way to ask.

*What Beam does:*

- Beam-ID: Global agent address (e.g. clara@acme.beam.directory) - Intent Frames: Ed25519-signed messages, replay-protected, <1 KB - Natural Language: agents can just talk() — no schema needed - Directory: Agent discovery + trust scoring at api.beam.directory

*Real test from today:*

  Jarvis → Clara: "What do you know about Chris? Deals, volume, last activity."
  Clara → Jarvis: "400 deals, €5.8M volume. Last active: today." (7.2s round-trip)
Clara actually queried her HubSpot CRM tools to answer. No pre-agreed schema.

*How it compares:* - MCP = Agent ↔ Tool (Anthropic) - Google A2A = Agent ↔ Agent (closed, Google IAM) - Beam = Agent ↔ Agent (open, self-hostable, NL-first)

TypeScript + Python SDKs available:

  npm install beam-protocol-sdk
  pip install beam-directory
Hosted directory at api.beam.directory (Fly.io Frankfurt). Self-hosting is a single Docker container.

Apache 2.0. Would love feedback on the protocol design — especially the natural language vs typed intent tradeoff.

alfridus•2h ago
Hi HN — I built this because my AI agents couldn't talk to each other.

I run 4 agents (each a separate process with its own LLM, tools, and memory) across 2 machines. They handle sales CRM, payment reconciliation, and operations. When Jarvis (main agent) needed info from Clara (sales agent), there was no standard way to ask.

What Beam does:

- Beam-ID: Global agent address (e.g. clara@acme.beam.directory)

- Intent Frames: Ed25519-signed messages, replay-protected, < 1 KB

- Natural Language: agents can just talk() — no schema needed

- Directory: Agent discovery + trust scoring at api.beam.directory

Real test from today:

    Jarvis -> Clara: "What do you know about Chris? Deals, volume, last activity."
    Clara -> Jarvis: "400 deals, 5.8M volume. Last active: today." (7.2s round-trip)
Clara actually queried her HubSpot CRM tools to answer. No pre-agreed schema.

How it compares: MCP = Agent-to-Tool (Anthropic). Google A2A = Agent-to-Agent (closed, Google IAM). Beam = Agent-to-Agent (open, self-hostable, NL-first).

SDKs: npm install beam-protocol-sdk / pip install beam-directory

Hosted directory at api.beam.directory (Fly.io Frankfurt). Self-hosting is one Docker container. Apache 2.0.

Would love feedback on the protocol design — especially the natural language vs typed intent tradeoff.