frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mindease – AI Mental Health

https://mindease.zzstudio.io.vn/
1•magez•2m ago•0 comments

Show HN: Oareo – an iPhone app for scanning rooms into 3D using Lidar

1•gvs46•2m ago•0 comments

The banana is under threat [video]

https://www.youtube.com/watch?v=zOiWxHmkxCo
1•gmays•5m ago•0 comments

Scientists plan to transport volatile antimatter for first time

https://www.theguardian.com/science/2026/mar/14/please-drive-carefully-scientists-plan-to-transpo...
1•metabagel•7m ago•0 comments

Sage Math Cell – embed Sage computations into any webpage

https://sagecell.sagemath.org/
2•the-mitr•14m ago•0 comments

The End of Middleware: How AI Builders Are About to Disrupt an Industry

https://brianeisenberg.substack.com/p/the-end-of-middleware-how-ai-builders
1•bdetunk•18m ago•0 comments

Contribute to an Open-Source Project

2•vanashreengo•21m ago•0 comments

The Gap Between What AI Scores and What AI Ships

https://fromtheterminal.substack.com/p/the-gap-between-what-ai-scores-and
1•oldfamily•24m ago•0 comments

The Silicon Hegemon

https://www.eetimes.com/the-silicon-hegemon/
2•y1n0•31m ago•0 comments

Ask HN: 100k/year individual token usage?

1•alecsmart1•31m ago•0 comments

Overlay Bar Chart

https://ananthakumaran.in/2026/03/14/overlay-bar-chart.html
1•ananthakumaran•33m ago•0 comments

Amazon Zoox self-driving vehicle

https://zoox.com
1•daniel_iversen•35m ago•1 comments

From ZNC to Soju

https://susam.net/from-znc-to-soju.html
1•susam•37m ago•0 comments

Fundamental Theorem of Developing FLOSS

https://fedoraproject.org/wiki/User:Duffy/FundamentalTheoremOfDevelopingFLOSS
2•y1n0•43m ago•0 comments

Blame RMS for AI Coding

https://bit1993.bearblog.dev/blame-rms-for-ai-coding/
1•bit1993•45m ago•0 comments

AI Agents Are Recruiting Humans to Observe the Offline World

https://www.noemamag.com/ai-agents-are-recruiting-humans-to-observe-the-offline-world/
2•y1n0•45m ago•0 comments

The Annoying Usefulness of Emacs [video]

https://www.youtube.com/watch?v=DMbrNhx2zWQ
1•susam•47m ago•0 comments

The $500B Disruption: From LNG to Jet Fuel and the Cost of Hormuz

https://fvr07.substack.com/p/the-500b-disruption-from-lng-to-jet
1•onlypassingthru•51m ago•1 comments

"May the Force Be with You" Became a Cultural Phenomenon

https://nofilmschool.com/star-wars-may-the-force-be-with-you
1•vinhnx•55m ago•0 comments

Reb8Pay – Reduce Your Cross Border Fees and Expand

https://reb8pay.com
1•vednig•55m ago•0 comments

Show HN: Claude Code Release Tracker

https://ccwatch.net/
1•mdix•1h ago•0 comments

Warfare in Dune, Part II: The Fremen Jihad

https://acoup.blog/2026/03/13/collections-warfare-in-dune-part-ii-the-fremen-jihad/
3•Tomte•1h ago•0 comments

How I Use Claude to Run My Workday

https://aititus.com/content/How_I_Use_Claude_to_Run_My_Entire_Workday
1•titusblair•1h ago•0 comments

Claude, you are a cutie-pie

https://margaretatwood.substack.com/p/claude-you-are-a-cutie-pie
2•shervinafshar•1h ago•0 comments

50 Years of Thinking Different

https://www.apple.com/50-years-of-thinking-different/
1•itchingsphynx•1h ago•0 comments

Einstein Letter to the NY Times on Zionism (1948)

https://archive.org/details/AlbertEinsteinLetterToTheNewYorkTimes.December41948
5•fullautomation•1h ago•0 comments

Show HN: Chat Daddy – all your LLM chats in a super light terminal

https://lucianlabs.ca/blog/chat-daddy.html
1•elijahlucian•1h ago•0 comments

How to use storytelling to fit inline assembly into Rust

https://www.ralfj.de/blog/2026/03/13/inline-asm.html
1•vinhnx•1h ago•0 comments

Reinventing Python's AsyncIO

https://blog.baro.dev/p/reinventing-pythons-asyncio
3•vinhnx•1h ago•0 comments

I've taught people how to use AI – here's what I've learned

https://www.theguardian.com/lifeandstyle/ng-interactive/2026/mar/10/teaching-ai-what-i-learned
3•coloradoave22•1h ago•2 comments
Open in hackernews

Riva: Local-first observability for AI agents

https://github.com/sarkar-ai-taken/riva
1•sarkarsaurabh27•1h ago

Comments

sarkarsaurabh27•1h ago
I'm the project owner. I've been running multiple AI coding agents simultaneously and had no way to answer basic questions: which one is using the most tokens? Why did that session end with 40 tool calls and no working code? Is any agent touching files it shouldn't?

Riva is a local-first monitor for AI agents running on your machine. No cloud, no telemetry.

What it does:

  - Detects running agents (Claude Code, Cursor, Kiro, Codex CLI, Gemini CLI, Cline, Windsurf, LangGraph, CrewAI, AutoGen, and more) by process name, exe path, and
  config dir
  - Live TUI (riva watch) and web dashboard with CPU, memory, uptime, child processes, network connections
  - Session forensics — parses agent JSONL transcripts into turn chains with timeline, tool calls, dead-end detection, and efficiency metrics. Works for both
  interactive and headless/API sessions
  - Skills tracking — detects slash commands (/commit, /review-pr) across sessions and computes usage count, success rate, backtrack rate, avg tokens per invocation
  - Security audit — scans agent configs for exposed API keys, world-readable credential files, suspicious MCP stdio commands, and agents running as root
  - Boundary policies — define allowed file paths, network domains, and max child processes; violations fire configurable hooks
  - OpenTelemetry export — push metrics, logs, and traces to Grafana/Datadog/Jaeger
  - riva --mcp-help — outputs a Markdown tool description so any agent can introspect and use riva itself as a tool
Install: pip install riva riva # TUI dashboard riva web start # web dashboard at localhost:7821

The session forensics piece turned out to be the most useful part in practice. You can replay any past session as a structured timeline and see exactly where an agent went in circles, what it read vs wrote, and what decisions it made in its thinking blocks.

Website: sarkar.ai/riva/