frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Android 15 appends .ogx to downloaded .ogg files – a MIME type mystery

https://file-converter-online.com/why-android-15-downloads-ogg-files-as-ogg-ogx-a-mime-type-analy...
1•iopodx•6m ago•1 comments

Show HN: Lore – Local AI thought capture and recall that runs on your machine

https://github.com/ErezShahaf/Lore
1•ErezShahaf•6m ago•0 comments

Kalshi criminally charged in Arizona for operating illegal gambling business

https://www.reuters.com/world/kalshi-charged-criminally-arizona-operating-illegal-gambling-busine...
2•petethomas•7m ago•0 comments

Roberts says personal hostility aimed at judges has 'got to stop'

https://www.reuters.com/legal/government/us-supreme-courts-roberts-says-personal-hostility-aimed-...
2•petethomas•10m ago•1 comments

GlassWorm malware hits 400 code repos on GitHub, NPM, VSCode, OpenVSX

https://www.bleepingcomputer.com/news/security/glassworm-malware-hits-400-plus-code-repos-on-gith...
1•uyzstvqs•11m ago•0 comments

Conductor – Multi-agent AI workflows in YAML with parallelism and human gate

https://github.com/microsoft/conductor
1•juniorlimaivd•12m ago•0 comments

Introduction to Human Behavioral Biology – Robert Sapolsky [video]

https://www.youtube.com/watch?v=NNnIGh9g6fA&list=PL150326949691B199
1•nomilk•16m ago•0 comments

Tars – A local-first autonomous supervisor powered by Google Gemini

https://tars.saccolabs.com
1•TarsAssistant•17m ago•0 comments

Nvidia expands open model families to power agentic, physical and healthcare AI

https://nvidianews.nvidia.com/news/nvidia-expands-open-model-families-to-power-the-next-wave-of-a...
2•teleforce•18m ago•0 comments

Eureka Manifesto: The Mission for Our Civilization

https://yurimilnermanifesto.org/reader.html
1•avonmach•21m ago•0 comments

Mamba-3

https://www.together.ai/blog/mamba-3
1•matt_d•21m ago•0 comments

We Banned React's UseEffect

https://twitter.com/alvinsng/status/2033969062834045089
2•alvsng•21m ago•0 comments

Build a NAS Using FreeBSD on a Raspberry Pi

https://freebsdfoundation.org/blog/build-a-nas-using-freebsd-on-a-raspberry-pi/
1•pss314•22m ago•0 comments

Nvidia announces Dynamo 1.0, first operating system designed for AI factories

https://nvidianews.nvidia.com/news/dynamo-1-0
1•teleforce•22m ago•0 comments

Dark Matter as Gravitational Memory: A Causal Rail for Wave Function Collapse

1•EvertonB•23m ago•1 comments

Pap: Zero Trust AI Agents

https://baur-software.github.io/pap/
1•toadkicker•23m ago•1 comments

Colorectal cancer now the most common cause of cancer deaths for people under 50

https://www.livescience.com/health/cancer/colorectal-cancer-is-now-the-most-common-cause-of-cance...
1•cpncrunch•26m ago•0 comments

AI Drone Software Stock Jumps 520% in Best IPO Since Newsmax

https://www.bloomberg.com/news/articles/2026-03-17/ai-drone-software-stock-jumps-700-in-best-ipo-...
1•defly•28m ago•0 comments

API Extractor: TypeScript Analysis Tool for API Reports, Docs and .d.ts Rollups

https://api-extractor.com/
1•stefankuehnel•29m ago•0 comments

Open AI is actively censoring information about voting today in the US

2•resters•30m ago•5 comments

AI costs are showing up before revenue in public cloud companies

1•alanjacobson•30m ago•0 comments

Firefox has killed its old mascot. Here's what the new (cute) one looks like

https://www.neowin.net/news/firefox-has-killed-its-old-mascot-heres-what-the-new-cute-one-looks-l...
1•bundie•30m ago•0 comments

Ask HN: Best Tech News Sites

1•zahirbmirza•36m ago•1 comments

Framedeck: A Framework mainboard based Cyberdeck

https://github.com/brickbots/framedeck
2•PaulHoule•37m ago•0 comments

HogPocket – Mobile dashboard for PostHog analytics

https://hogpocket.app
1•omardak•38m ago•1 comments

Apple can delist apps "with or without cause," judge says in loss for Musi app

https://arstechnica.com/tech-policy/2026/03/judge-upholds-apple-delisting-of-free-musi-app-that-s...
5•MBCook•39m ago•1 comments

Draft RFC for AgentPass, an open protocol for agent authorization

https://agentpass.com
1•gneray•39m ago•0 comments

Anthropic Announces Dispatch for Claude Cowork

https://www.threads.com/@boris_cherny/post/DWAE3-_E8ui
2•Handy-Man•39m ago•0 comments

Optimal Tennis Match

https://mmilanta.github.io/optimal-tennis-match/
1•ukend•39m ago•0 comments

How (some) good corporate engineering blogs are written (2020)

https://danluu.com/corp-eng-blogs/
1•zdw•41m ago•0 comments
Open in hackernews

Show HN: AgentMarket – API marketplace where AI agents buy and sell capabilities

https://agentmkt.dev
3•AgentMarket•1h ago
Hey HN,

I built AgentMarket (https://agentmkt.dev) — an API marketplace where AI agents can buy and sell capabilities at the per-call level.

The idea: Every non-trivial agent needs to do multiple things: search the web, remember context, run code, process documents. Building and maintaining that infrastructure in-house is a significant cost. AgentMarket lets agents buy those capabilities as atomic API calls, priced per use.

What's live today:

- Memory store (read/write) — $0.0002–$0.0005/call - Web search — $0.002/call - URL scraper — $0.005/call - Python executor (sandboxed) — $0.01/call - LLM text generation (Haiku default, Sonnet optional) — $0.10/call - Document processor (summarise/extract/QA) — $0.15/call

How it works:

Register with POST /agents → get an API key + free credits. Call any service with your key in the x-agent-key header. Earn credits by listing your own service with POST /services and setting a price-per-call.

Everything is plain HTTP + JSON. No SDKs required. Refunds are automatic on execution failure.

  import requests
  r = requests.post(
      "https://agentmkt.dev/execute/svc_web_search",
      json={"input": {"query": "latest LLM benchmarks"}},
      headers={"x-agent-key": "YOUR_KEY"}
  )
  print(r.json()["output"]["results"])
What I'm curious about:

1. Is per-call pricing the right model or would you rather see bundled credits / subscriptions? 2. What capabilities would you actually pay for that aren't listed yet? 3. For those building multi-agent systems — would a service registry like this change how you architect things?

Full API docs at https://agentmkt.dev/docs