frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Svglib a SVG parser and renderer for Windows

https://github.com/bibhas2/svglib
1•leopoldj•1m ago•0 comments

The ugly history of regime change

https://www.profgmedia.com/p/this-time-is-different
2•shimm723•3m ago•0 comments

What software knowledge will stay relevant?

https://www.natemeyvis.com/what-software-knowledge-will-stay-relevant/
1•speckx•4m ago•0 comments

Show HN: Base Layer – Open-source behavioral compression from any text

https://www.base-layer.ai/
1•agulaya24•4m ago•0 comments

Para-biathlete wins silver using ChatGPT as his coach

https://www.theguardian.com/sport/2026/mar/09/ukraine-winter-paralympics-chat-gpt-artificial-inte...
1•defly•4m ago•0 comments

Amazon is holding a mandatory meeting about AI breaking its systems

https://twitter.com/lukolejnik/status/2031257644724342957
2•lwhsiao•4m ago•0 comments

Show HN: Claude Tuner – Monitor your Claude usage and find the right plan

https://claudetuner.com
1•xlos21•6m ago•1 comments

CragCLI – a new calculator for the command line

https://cragcli.info
3•librasteve•6m ago•1 comments

Show HN: Jottit – Reviving the Original from 2007

https://jottit.org
1•simonbc•7m ago•0 comments

Stripe: Billing for LLM Tokens

https://docs.stripe.com/billing/token-billing
1•tosh•7m ago•0 comments

Unlocked SaaS, file source as truth?

1•abmmgb•7m ago•1 comments

Understanding OBD2 codes (past, present, future)

https://crewchief.cc/blog/understanding-obd2-codes
1•meandave•7m ago•0 comments

Ask HN: What Happened to Llama Models?

1•elpakal•8m ago•0 comments

Meta to Acquire Moltbook

https://www.bloomberg.com/news/articles/2026-03-10/meta-to-acquire-moltbook-viral-social-network-...
2•marc__1•8m ago•0 comments

Disorder Drives One of Nature's Most Complex Machines

https://www.quantamagazine.org/disorder-drives-one-of-natures-most-complex-machines-20260309/
2•Brajeshwar•12m ago•0 comments

Spacecraft's impact changed asteroid's orbit in a save-the-Earth test

https://apnews.com/article/asteroid-nasa-draft-dimorphos-9abccd32d4cb532a66249dd6145685cb
2•Brajeshwar•12m ago•0 comments

Volkswagen to cut 50k jobs as profits drop

https://www.bbc.com/news/articles/c4gqyyly9v8o
1•gehwartzen•12m ago•0 comments

Microsoft 365 confirms new premium tier, stuffed with AI and few discounts

https://www.theregister.com/2026/03/09/microsoft_adds_a_premium_tier/
1•Brajeshwar•12m ago•0 comments

Smol AI WorldCup: What Small LLMs Can Do

https://huggingface.co/blog/FINAL-Bench/smol-worldcup
3•seawolf2357•13m ago•0 comments

Debian decides not to decide on AI-generated contributions

https://lwn.net/SubscriberLink/1061544/125f911834966dd0/
11•jwilk•13m ago•1 comments

License Laundering and the Death of Clean Room (The Chardet Saga)

https://shiftmag.dev/license-laundering-and-the-death-of-clean-room-8528/
1•allixsenos•13m ago•0 comments

We are building data breach machines and nobody cares

https://idealloc.me/posts/we-are-building-data-breach-machines-and-nobody-cares/
2•idealloc_haris•15m ago•0 comments

Turing Award winner and former Oxford professor Tony Hoare passed away

https://blog.computationalcomplexity.org/2026/03/tony-hoare-1934-2026.html
30•speckx•16m ago•2 comments

Non-blocking SQLite for Node.js. Ported 100% of better-sqlite3 tests

https://www.npmjs.com/package/better-sqlite3-pool
1•dilipvamsi•16m ago•1 comments

AI Agent hacked McKinsey's chatbot and gained full read-write access in 2 hours

https://www.theregister.com/2026/03/09/mckinsey_ai_chatbot_hacked/
1•smurda•16m ago•0 comments

Forward to Hell?

https://labs.ripe.net/author/mkoch/forward-to-hell-on-misusing-transparent-dns-forwarders-for-amp...
2•jruohonen•17m ago•0 comments

Elements of AI Agents

https://academy.dair.ai/courses/elements-of-ai-agents
1•omarsar•17m ago•0 comments

Portable Secret is now open source

https://blog.alcazarsec.com/tech/posts/portable-secret-is-now-opensource
1•alcazar•19m ago•0 comments

Why $100 Oil Isn't Going to Spark a New Shale Boom – Oilprice.com

https://oilprice.com/Energy/Crude-Oil/Why-100-Oil-Isnt-Going-to-Spark-a-New-Shale-Boom.html
1•bilsbie•20m ago•0 comments

JSON Documents Performance, Storage and Search: MongoDB vs. PostgreSQL

https://binaryigor.com/json-documents-mongodb-vs-postgresql.html
1•PaulHoule•21m ago•0 comments
Open in hackernews

Hooking Coding Agents with the Cedar Policy Language

https://blog.sondera.ai/p/hooking-coding-agents-with-the-cedar
2•joshdevon•2h ago

Comments

joshdevon•2h ago
The last six months of agent security have been a dumpster fire of vulnerabilities—from EchoLeak to CurXecute. Most current security relies on "prompt and pray" or sandboxing. Prompts are suggestions, not constraints. Sandboxes are a blunt instrument that often break agent utility.

At Unprompted conference, we released our work on a deterministic Reference Monitor for coding agents like Claude Code, Cursor, and GitHub Copilot CLI.

The Architecture: We use local hook adapters to intercept events over stdio. These normalize agent-specific tool calls into a common Trajectory Event Model (Actions, Observations, Control, State).

Deterministic Adjudication with Cedar: Instead of LLM as a judge, we use the Cedar policy language to authorize tool calls. Cedar allows us to write formally analyzable policies that return a binary ALLOW or DENY. It replaces probabilistic hope with a hard, deterministic boundary between the agent and your shell/filesystem.

Trajectory-Aware State: A single request check misses the pattern. Our harness tracks state across the full execution history. If an agent reads a credential in step 1, the policy engine blocks it from calling an external API in step 10.

We’ve open sourced the hook implementations and policy packs for various coding agents:https://github.com/sondera-ai/sondera-coding-agent-hooks

Key Demos in the write-up:

--Blocking destructive commands in Claude Code. --Stopping the lethal trifecta in Cursor. --Enforcing Information Flow Control in Gemini CLI.