frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Vis Pro – A Formula-Based Workout Program Editor

https://vis.fitness/pro
1•strongpigeon•1m ago•0 comments

Revisiting the Steam Controller

https://callmeo.live/blog/revisiting-the-steam-controller/
1•speckx•1m ago•0 comments

Opus 4.6 completed the Blender Donut Tutorial by watching it on YouTube

https://old.reddit.com/r/ClaudeAI/comments/1rdir26/i_had_opus_46_complete_the_entire_blender_donut/
1•bpierre•1m ago•0 comments

Devin 2.2

https://twitter.com/cognition/status/2026343816521994339
2•tosh•3m ago•0 comments

Show HN: Imsg-TUI – A Console App for Sending and Receiving iMessages

https://github.com/plotfi/imsg-tui
1•zer0zzz•3m ago•0 comments

Host Leadership

https://martinfowler.com/bliki/HostLeadership.html
1•rahimnathwani•3m ago•0 comments

Claude Code Remote Control

https://twitter.com/noahzweben/status/2026371260805271615
1•mfiguiere•4m ago•0 comments

Manjaro website off-line again due to lapsed certificate

https://distrowatch.com/dwres.php?resource=showheadline&story=20140
1•hexagonsuns•4m ago•0 comments

Agents of Chaos: a red team study of autonomous LLM agents with full access

https://www.researchgate.net/publication/401123335_Agents_of_Chaos
2•felineflock•6m ago•0 comments

Show HN: Datapoint – replacing mobile ads with data labelling tasks

https://trydatapoint.com/blog-page
1•chancemehmu•6m ago•0 comments

What spec-driven development gets wrong

https://www.augmentcode.com/blog/what-spec-driven-development-gets-wrong
1•thesleepypanda•6m ago•0 comments

npm i chat – One codebase, every chat platform

https://vercel.com/changelog/chat-sdk
1•MaxLeiter•6m ago•0 comments

The vulnerability of aging states (2023)

https://www.pnas.org/doi/10.1073/pnas.2218834120
1•measurablefunc•7m ago•0 comments

Show HN: Open-source EU AI Act compliance layer for AI agents (8/2026 deadline)

1•shotwellj•8m ago•0 comments

Continuous inhalation of essential oil increases gray matter volume in the brain

https://pubmed.ncbi.nlm.nih.gov/38331299/
1•rdgthree•8m ago•0 comments

Influencers are promoting peptides for better health. What does the science say?

https://www.npr.org/2026/02/23/nx-s1-5716162/peptides-science-muscle-growth-longevity-wellness
1•ck2•8m ago•0 comments

I got my phone bill down to $6.25/month after years of overpaying

1•huntsmans•9m ago•0 comments

Add drip email system with onboarding and coverage milestone emails

1•nishiohiroshi•9m ago•0 comments

Agents of Chaos

https://arxiv.org/abs/2602.20021
2•wslh•9m ago•0 comments

Show HN: GenogramAI – Create Genograms in Seconds

1•veritas9•9m ago•0 comments

Use Lyria 3 to create music tracks in the Gemini app

https://blog.google/innovation-and-ai/products/gemini-app/lyria-3/
1•bookofjoe•10m ago•0 comments

Show HN: Tools Are Lying to You

https://cloudstreet-dev.github.io/Your-Tools-Are-Lying-to-You/
2•DavidCanHelp•12m ago•1 comments

Show HN: Recall – A personal CRM you use over text messages

https://www.recall.life/
1•kyledotkyle•12m ago•0 comments

TAWS – The Amiga Workbench Simulation 0.40

https://www.taws.ch/WB.html
1•doener•12m ago•0 comments

Reframed – Open-source alternative to Screen Studio, have editor, auto-zoom

https://github.com/jkuri/Reframed
2•jkuri•14m ago•0 comments

Show HN: MacCoolinator – Putting the "Cool" in Mac

https://github.com/corylevine/MacCoolinator
2•coryxrx•14m ago•0 comments

Inequality aversion can be taught through learning of others' preferences

https://elifesciences.org/articles/102800
1•PaulHoule•15m ago•0 comments

simple timezone tracker

https://time.yaosamo.com/
1•yaosamo•15m ago•0 comments

The whole point of OpenAI's Responses API is to help them hide reasoning traces

https://www.seangoedecke.com/responses-api/
2•dkleinest•15m ago•0 comments

Show HN: Permanent Underclass – Terminal game about AI acceleration (Rust)

https://github.com/DhvanilPatel/permanent-underclass
3•flamenfury•17m ago•1 comments
Open in hackernews

AgentGate – Open-source security firewall for AI agents (ALLOW/DENY/APPROVE)

https://agent-gate-rho.vercel.app/
1•PEGHIN•2h ago

Comments

PEGHIN•2h ago
Hey HN! I built AgentGate, an open-source security firewall for AI agents built on OpenClaw.

The problem: AI agents (browser, bash, fetch) can call any tool without restriction. There's no built-in way to define policies like "agents can read files but not delete them" or "require human approval before sending emails."

AgentGate solves this with a policy evaluation layer that wraps your OpenClaw tool calls and enforces ALLOW/DENY/REQUIRE_APPROVAL rules in real time.

How it works: 1. You define policies in Firebase Firestore (regex-matched against tool name + args) 2. Every tool call hits the AgentGate middleware before execution 3. ALLOW → passes through, DENY → blocked immediately, REQUIRE_APPROVAL → Telegram webhook fires, human approves/rejects in real time 4. Full audit log stored in Firestore with timestamps, agent ID, tool called, decision, and approver

Stack: Next.js dashboard, Firebase Firestore + Auth, OpenClaw bash/browser/fetch agents, Telegram Bot API for approval notifications.

What's working in v1.0.0: - Policy engine (ALLOW/DENY/REQUIRE_APPROVAL) - Real-time audit log dashboard - AI Policy Wizard (describe a rule in English → generates the regex policy) - Telegram approval flow - Tested against OpenClaw bash, browser, and fetch tool types

Would love feedback on the policy model, the approval UX, and whether this is useful for teams running autonomous agents in production.

GitHub + docs: https://https://agent-gate-rho.vercel.app/