frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: I built an AI-native codebase framework–could you evaluate it?

1•xodn348•3m ago•0 comments

The Slowest Viral Thing

https://pilgrima.ge/p/the-slowest-viral-thing
1•momentmaker•3m ago•0 comments

SoftBank eyes up to $40B loan to fund OpenAI investment

https://www.reuters.com/business/media-telecom/softbank-seeks-up-40-billion-loan-finance-openai-i...
3•devonnull•4m ago•0 comments

SEIA Solar Market Insight Report 2025 Year in Review

https://seia.org/research-resources/us-solar-market-insight/
1•toomuchtodo•5m ago•0 comments

A vertical tab companion app for aerospace window manager

https://github.com/raghavendra-talur/aeromux
1•rtalur•6m ago•1 comments

Uber rolls out women-only option in the US

https://www.bbc.com/news/articles/cx2gvrzwdr7o
2•alephnerd•6m ago•0 comments

Meta Is Buying Moltbook

https://lifehacker.com/tech/meta-is-buying-moltbook
1•umangsehgal93•6m ago•0 comments

GoT Timeline – a daily timeline game to test your Game of Thrones skills

https://www.got-timeline.com
1•onion92•6m ago•0 comments

Claude Code makes local LLMs 90% slower

https://unsloth.ai/docs/basics/claude-code
4•telotortium•10m ago•0 comments

Eventbrite Enters into Definitive Agreement to Be Acquired by Bending Spoons

https://www.businesswire.com/news/home/20251202408560/en/Eventbrite-Enters-into-Definitive-Agreem...
5•DocFeind•10m ago•0 comments

Why doesn't V8 fit on my microcontroller? (2021)

https://medium.com/the-toit-take/why-doesnt-v8-fit-on-my-microcontroller-71dc6e2d8f5c
1•tosh•12m ago•0 comments

Is there an MD5 Fixed Point where MD5(x) == x?

https://stackoverflow.com/questions/235785/is-there-an-md5-fixed-point-where-md5x-x
2•plaguna•13m ago•0 comments

GPT-4 leaks its own API internals through training data exposure

1•safteylayer•14m ago•0 comments

Andrew Tate Doesn't Get the Point of Books

https://www.theatlantic.com/ideas/2026/03/slow-reading-books-benefits/686266/
2•paulpauper•15m ago•1 comments

The Met Opera's Desperate Hunt for Money

https://www.nytimes.com/2026/03/08/arts/met-opera-peter-gelb-finances.html
3•paulpauper•16m ago•0 comments

Bubbles, Booms and Crashes in the US Stock Market 1792-2024

https://www.nber.org/papers/w34903
3•paulpauper•16m ago•0 comments

Ask HN: How are you reviewing code at work these days?

1•curiousgal•18m ago•1 comments

Professors scramble to save critical thinking in an age of AI

https://www.theguardian.com/technology/ng-interactive/2026/mar/10/ai-impact-professors-students-l...
2•fallinditch•19m ago•0 comments

Senate Moves Toward Passing Housing Bill, but Challenges Lie Ahead

https://www.nytimes.com/2026/03/10/us/politics/senate-housing-bill.html
1•JumpCrisscross•21m ago•0 comments

Show HN: Zehrava Gate – an control plane that sits between AI agents and prod

1•cgallic•24m ago•0 comments

Single-dose treatment approved for sleeping sickness

https://www.nature.com/articles/d44148-026-00051-w
4•bookofjoe•25m ago•0 comments

Show HN: AlphaEvolve inspired evolution harness for Pokemon

https://github.com/papercomputeco/pokemon
2•brianllamar•25m ago•0 comments

Ex-Google PM Builds God's Eye to Monitor Iran in 4D

https://www.youtube.com/watch?v=0p8o7AeHDzg
3•doener•26m ago•1 comments

The Only Code That Defies Entropy

https://ta.fo/the-only-code-that-defies-entropy/
1•freediver•26m ago•0 comments

Python: The Optimization Ladder

https://cemrehancavdar.com/2026/03/10/optimization-ladder/
1•Twirrim•27m ago•0 comments

The Public Suffix List

https://publicsuffix.org/list/public_suffix_list.dat
1•barishnamazov•28m ago•1 comments

V32 (Number Station)

https://priyom.org/number-stations/other/v32
1•NoboruWataya•29m ago•1 comments

I Built an AI Agent That Writes Its Own Rules from Its Mistakes

https://www.roryteehan.com/writing/i-built-an-ai-agent-that-writes-its-own-rules
2•freediver•30m ago•0 comments

Nasal spray protects mice from respiratory viruses, bacteria and allergens

https://medicalxpress.com/news/2026-02-universal-vaccine-nasal-spray-mice.html
4•PaulHoule•30m ago•0 comments

Toit

https://docs.toit.io/language/
1•tosh•31m ago•0 comments
Open in hackernews

Agent API Spec Design: When API Callers Change from Application to AI Agent

https://github.com/tomsun28/agent-api-spec
2•tomsun28•1h ago

Comments

tomsun28•1h ago
In current AI Agent development, we are used to feeding context to Agents using Skills, Tools, MCP, or Prompts.

As agent tools continue to evolve, the initial hype around MCP has cooled down. While it standardizes how APIs are called, it also makes things more complex. It requires clients that support its protocol, and the server needs a matching protocol implementation. If it's just wrapping a bunch of API endpoints, why not just write code to call those APIs directly? Skill is a better alternative for this. More importantly, it provides instruction manuals that models can easily understand....

joaquin_arias•56m ago
I agree that MCP adds complexity in some cases. I’ve found that using a Skill-based approach can simplify agent orchestration while keeping context manageable. Curious how others handle cross-agent communication efficiently without over-complicating the setup.