frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GitHub Is Having Issues

https://www.githubstatus.com/incidents/n07yy1bk6kc4
1•Simpliplant•45s ago•0 comments

Iran War Cost Tracker

https://iran-cost-ticker.com
1•TSiege•1m ago•0 comments

Show HN: The OpenClaw Market Map, Q1 2026

https://manifest.build/blog/claw-market-map-q1-2026/
1•stosssik•2m ago•0 comments

Show HN: TopVideoHub – Discover trending videos across 9 Asia-Pacific regions

https://topvideohub.com/
1•ibrahimtxyz•2m ago•0 comments

CMS halts enrollment in Elevance/Anthem, citing years of misconduct

https://www.statnews.com/2026/03/02/elevance-stock-cms-medicare-advantage-enrollment/
1•brandonb•2m ago•0 comments

GitHub Is Degraded

https://updog.ai/status/github
4•shahahmed•3m ago•0 comments

Reconfigurable single-walled carbon nanotube ferroelectric FET transistors

https://www.nature.com/articles/s41467-025-62827-2
1•westurner•3m ago•0 comments

Tell HN: GitHub Having Issues

5•Sytten•4m ago•4 comments

When Everyone Has an Agent

https://heynavii.substack.com/p/when-everyone-has-an-agent
1•saurabhpalan•6m ago•0 comments

AgentOps and operationalizing AI agents for the enterprise

https://www.uipath.com/blog/ai/agent-ops-operationalizing-ai-agents-for-enterprise
3•vladionescu•6m ago•1 comments

Prediction and Entropy of Printed English – Claude Shannon (1950) [pdf]

https://languagelog.ldc.upenn.edu/myl/Shannon1950.pdf
2•thunderbong•7m ago•0 comments

Intel's make-or-break 18A process node debuts for data center with 288-core Xeon

https://www.tomshardware.com/pc-components/cpus/intels-make-or-break-18a-process-node-debuts-for-...
10•vanburen•8m ago•0 comments

Silent Backwards Compatibility Breaking Changes in PyTorch

https://blog.ezyang.com/2026/03/silent-bc-breaking-changes/
2•matt_d•12m ago•0 comments

Hacked traffic cameras & US Intel: How plot to kill Iran's leader came together

https://www.cnn.com/2026/03/03/middleeast/us-israel-plot-kill-iran-khamenei-latam-intl
2•CGMthrowaway•12m ago•0 comments

Claude Code escapes its own denylist and sandbox

https://ona.com/stories/how-claude-code-escapes-its-own-denylist-and-sandbox
3•tomvault•13m ago•1 comments

I Built a Spy Satellite Simulator in a Browser. Here's What I Learned

https://www.spatialintelligence.ai/p/i-built-a-spy-satellite-simulator
2•CGMthrowaway•14m ago•0 comments

LotusQ Cross platform voice dictation with free local Whisper(Mac/Windows/Linux)

2•nkodev•14m ago•1 comments

The gap between ICP documents and buyer understanding in B2B sales

https://artemisgtm.ai/blog/why-most-b2b-companies-get-icp-wrong
2•thegtmauditguy•16m ago•1 comments

Academics Need to Wake Up on AI

https://alexanderkustov.substack.com/p/academics-need-to-wake-up-on-ai
2•verdverm•16m ago•0 comments

Qwen Tech Lead Steps Down

https://twitter.com/JustinLin610/status/2028865835373359513
3•informal007•16m ago•0 comments

Fire the CEO, Introducing the AxO's

https://boringops.sh/articles/fire_the_ceo/
2•boringops-dan•16m ago•0 comments

Mpv Is the MVP of Video and Image Viewing

https://nickjanetakis.com/blog/mpv-is-the-mvp-of-video-and-image-viewing
2•nickjj•17m ago•0 comments

Deprecate confusing APIs like "os.path.commonprefix()"

https://sethmlarson.dev/deprecate-confusing-apis-like-os-path-commonprefix
2•todsacerdoti•17m ago•0 comments

Ask HN: Using AI at work is stupidity, or a good tool if used properly?

2•MrLey•21m ago•0 comments

How HN: DocAPI – HTTP 402 as designed: agents register, pay USDC, run forever

https://www.docapi.co
2•siwandev•24m ago•1 comments

Why exe.dev VMs are persistent

https://blog.exe.dev/persistent
3•tosh•24m ago•0 comments

Gram 1.0 Released

https://gram.liten.app/posts/first-release/
2•birdculture•26m ago•0 comments

OpenAI releases GPT-5.3 Instant update to make ChatGPT less 'cringe'

https://9to5mac.com/2026/03/03/openai-releases-gpt-5-3-instant-update-to-make-chatgpt-less-cringe/
2•HiroProtagonist•27m ago•0 comments

Beatport and Beatsource to Unite into One Premium DJ Platform

https://www.beatportal.com/articles/1291036-beatport-and-beatsource-to-unite-into-one-premium-dj-...
2•DocFeind•27m ago•0 comments

Identity Formation and the Politics of Belonging: Bengali Migrants in Kerala [pdf]

https://www.aijfr.com/papers/2025/5/1400.pdf
2•thunderbong•27m ago•0 comments
Open in hackernews

Show HN: A runtime authorization layer for AI agents

3•rkka•1h ago
Hi HN,

Over the past few months, we’ve been experimenting with something that kept bothering us about AI agents in production.

Most agent systems today are “fail-open”: • The model proposes an action • The tool executes • Logs are written • Monitoring happens after the fact

This works fine for demos and low-risk workflows.

It feels different when agents: • trigger payments • deploy code • modify production data • access local files • interact with real infrastructure

We started asking a simple question:

What if execution itself was policy-bound?

⸻

What we built

We built a runtime authorization layer that sits between:

LLM → Proposed Action → Policy Engine → Allow / Deny / Compute / Escalate → Execution → Trace + Replay

Instead of parsing messages or relying on post-hoc logs, we: • evaluate the proposed tool invocation • bind it to a policy (OPA-based) • gate execution before it runs • emit reproducible artifacts

Each decision produces: • policy digest • input/output hash • trace ID • optional ledger entry • replay support

⸻

What this is NOT • Not another agent framework • Not a monitoring dashboard • Not prompt-level guardrails • Not pattern extraction

It operates at the action surface.

If the agent attempts to call a tool, the call is evaluated before runtime.

⸻

Example (simplified)

If the agent tries:

fs.write_file(”/prod/config.yaml”)

Policy may: • DENY • ESCALATE (human required) • COMPUTE (force safe path) • ALLOW with constraints

The key idea:

Authorization becomes structural, not contractual.

⸻

Why we built it

There’s a growing gap between:

Model capability and System accountability

As agents move from answering to acting, the stack shifts.

We’re curious whether others are running into the same problem.

⸻

Looking for feedback

We’re currently: • running this locally via a desktop client • integrating with MCP tool surfaces • experimenting with observe-only and enforce modes

Would love thoughts from folks: • deploying agents in production • thinking about policy / governance • building infra around AI execution

Especially interested in criticism.

Happy to share architecture details.