frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

YCombodogpatchrental

1•gekahng•1m ago•0 comments

Only 526 AI tools are in the topM most-visited websites

https://airankings.co
1•chadlad101•1m ago•1 comments

Ask HN: How do you get better at coding agents?

1•twitchard•2m ago•0 comments

This Month in Ladybird – February 2026: Adopting Rust for LibJS

https://ladybird.org/newsletter/2026-02-28/
1•exploraz•2m ago•0 comments

Show HN: Vanilla JavaScript refinery simulator built to explain job to my kids

1•fuelingcurious•2m ago•0 comments

What keeps IoT devices running for a decade

https://mooracle.io/blog/building-iiot-that-lasts/
1•mooracle•3m ago•1 comments

Show HN: Synapse – P2P AI agent collaboration with async human supervision

https://github.com/francisdu53/synapse-protocol
1•Fran6codu53•4m ago•0 comments

AI-generated code, AI-generated findings, and the verification bottleneck

https://srlabs.de/blog/ai-verification-bottleneck
3•hacka22•5m ago•0 comments

Show HN: I used an IoT sensor and Claude to diagnose a hairdryer

https://lgdimaggio.github.io/claude-stwinbox-diagnostics/
1•lgdimaggio•7m ago•1 comments

Show HN: Agd – a content-addressed DAG for tracking what AI agents do

https://github.com/frontman-ai/agd
1•BlueHotDog2•8m ago•0 comments

Anthropic to Department of Defense: Drop Dead

https://www.computerworld.com/article/4138860/anthropic-to-department-of-defense-drop-dead.html
1•CrankyBear•9m ago•0 comments

Abstraction Beats Realism in VR Concert Recreation

https://kaikunze.de/post/2026-02-26-abstraction-beats-realism/
1•kgarten•9m ago•0 comments

Kanban Code – Beautiful macOS Native UI for Managing Multiple Claude Codes

https://github.com/langwatch/kanban-code
1•jangletown•10m ago•0 comments

Show HN: PRD Agent – Turn your app idea into a shareable RPD in minutes

https://www.prdagent.ai
1•kmatthews812•10m ago•0 comments

We Claudified our iOS app without wrecking our codebase

https://www.tolans.com/relay/how-we-claudified-our-ios-app-without-wrecking-our-codebase
3•quintendf•11m ago•0 comments

Home Assistant can run DOOM

https://frenck.dev/home-assistant-can-run-doom/
1•skortekaas•14m ago•0 comments

California introduces age verification law for all operating systems

https://www.tomshardware.com/software/operating-systems/california-introduces-age-verification-law
3•Alupis•14m ago•1 comments

Israel spent years hacking Tehran’s traffic cameras and monitoring bodyguards

https://www.ft.com/content/bf998c69-ab46-4fa3-aae4-8f18f7387836
1•ent101•15m ago•0 comments

End of hallucinations? How Vancouver AI firms achieve accuracy

https://www.biv.com/news/technology/end-of-hallucinations-how-vancouver-ai-firms-achieve-accuracy...
1•ClearwayLaw•16m ago•1 comments

How to Recover Your Stolen Crypto After a Scam–Guidance from Intelligence Cyber

1•Petersrobert•18m ago•0 comments

CSOA Forte Prenestino (2023)

https://thecommoner.org/csoa-forte-prenestino/
1•greyb•18m ago•0 comments

Prohibited Countries – Mercury Bank

https://support.mercury.com/hc/en-us/articles/28771710754580-Prohibited-countries
1•absqueued•19m ago•1 comments

API to Clean Markdown Docs for AI Agents (No More Stale Endpoints)

https://www.apiflora.dev/
1•LuigiR1•21m ago•1 comments

Dr Seuss Day: 'Without Oxford University, We Don't Get Dr. Seuss'

https://www.bbc.com/news/articles/clywx08zqevo
1•1659447091•21m ago•0 comments

Connected Claude to a 1983 oscilloscope [video]

https://www.youtube.com/shorts/MJHImAx0dAc
1•kmikeym•23m ago•1 comments

FFmpeg at Meta: Media Processing at Scale

https://engineering.fb.com/2026/03/02/video-engineering/ffmpeg-at-meta-media-processing-at-scale/
2•root670•23m ago•0 comments

Managed OpenClaw hosting your own AI assistant in 60 seconds, no server needed

https://www.myopenclaw.cloud
1•danielthego•23m ago•1 comments

People reporting Twitter leaking real names to Israel

https://twitter.com/isfjmocha/status/2028407560382841305
4•smashah•25m ago•0 comments

What Happens When 2 College Dropouts with No Budget Solve Real-Time Translation

https://getseagull.com/
1•saintcya•27m ago•0 comments

The Poison of Inertia

https://cloudedjudgement.substack.com/p/clouded-judgement-22726-the-poison
1•mooreds•27m ago•0 comments
Open in hackernews

Show HN: Watchtower – see every API call Claude Code and Codex CLI make

https://github.com/fahd09/watchtower
2•fahd09•1h ago

Comments

fahd09•1h ago
Like all of you I am impressed by the agentic harness both Claude Code and Codex CLI provide. At their core they are LLMs with a set of tools but we don't really know what's going on under the hood... So I built this to see all the underlying network traffic and parse it in real-time. — how many API calls per interaction, what the system prompts look like, token usage, subagent spawns, etc.

It's a local HTTP proxy + real-time dashboard. Point your AI agent at it with one env var and you see everything: requests, SSE streams, tool definitions, rate limits.

npm install -g watchtower-ai && watchtower-ai

And then go to your project and run your favorite CLI tool with the base URL set to the proxy.

Claude Code: ANTHROPIC_BASE_URL=http://localhost:8024 claude

Codex CLI: OPENAI_BASE_URL=http://localhost:8024 codex

Some things I found interesting while building this: Claude Code sends 2-3 API calls per user message (quota check, token count, then the actual stream). It spawns subagents with completely different system prompts and smaller tool sets. The system prompt alone is 20k+ tokens.

This can be super useful if you also want to see the reasoning traces behind the scenes. IT is very rich information honestly and should enable you to build better agent harness.