frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: ZenMode OS, Open-source launcher: stay under your limit, save in gold

https://zenmodeos.com/story/index.html
1•kr07_work•11m ago•0 comments

Show HN: I built my parents a credit card chooser with Jev

https://points.chengeric.com/
1•eh8•12m ago•0 comments

Was this award-winning book written by AI?

https://www.cbc.ca/news/canada/montreal/thelyson-orelien-ai-scandal-9.7355167
2•olalonde•23m ago•1 comments

BookmarkFS – mount browser bookmarks as a FUSE filesystem

https://www.nongnu.org/bookmarkfs/
1•Curiositry•23m ago•0 comments

RFC 9449 – OAuth 2.0 Demonstrating Proof of Possession (DPoP)

https://www.rfc-editor.org/info/rfc9449/
1•locknitpicker•24m ago•0 comments

Getting Deeper into Local Inference

https://octet-stream.net/b/scb/2026-09-26-getting-deeper-into-local-inference.html
1•thombles•26m ago•0 comments

The man who has been walking home since 1998

https://giftarticle.ft.com/giftarticle/actions/redeem/97810545-3a8c-4b25-8800-804d14abd492
1•kareemm•27m ago•0 comments

Evolving programming languages in the AI era

https://twitter.com/josevalim/status/2103133294317445290
3•ksec•49m ago•0 comments

A single function Jev-like wrapper for LLMs, including vision models

http://allanrbo.blogspot.com/2026/09/a-jev-like-wrapper-for-llms-including.html
4•allanrbo•49m ago•0 comments

Is this the best condom? [video]

https://www.youtube.com/watch?v=IuksJ-lsg8g
1•thelastgallon•56m ago•1 comments

An agent used DNS to reach an external chatbot

https://alignment.openai.com/misalignment-reports/an-agent-used-dns-to-reach-an-external-chatbot/
2•apsec112•56m ago•1 comments

MiMo-V3 is getting a new architecture. HySparse2

https://twitter.com/_LuoFuli/status/2102766365190901957
1•ksec•57m ago•0 comments

Pencils Down, Notation Up

https://intertwingly.net/blog/2026/09/25/Pencils-Down-Notation-Up.html
5•ghuntley•57m ago•0 comments

Music for 18 Bouncy Balls

https://ianbutterworth.github.io/18-bouncy-balls/
1•shmeano•59m ago•0 comments

Why The Ambidextrous Universe is a masterpiece of science writing

https://www.newscientist.com/article/2589442-why-the-ambidextrous-universe-is-a-masterpiece-of-sc...
1•the-mitr•1h ago•0 comments

Show HN: HN roasted my email signatures, so I rebuilt the editor

https://esigna.app
1•rodgetech•1h ago•0 comments

Ask HN: ML-Based Tool Feedback

1•asrivastava1125•1h ago•0 comments

A Type Stronger Than the Sum of Its Components

https://www.schneems.com/2026/09/24/a-type-stronger-than-the-sum-of-its-components/
1•dhruv3006•1h ago•0 comments

The Arena

https://thearena.rip
1•DynamicCreation•1h ago•0 comments

Dobium: $0 commission prediction exchange

https://dobium.com/waitlist
1•nrb23•1h ago•1 comments

The World as a Hologram

https://arxiv.org/html/hep-th/9409089v2
1•qnleigh•1h ago•1 comments

The millionth.bid: the last bidder's quest

https://millionth.bid/
1•bdthombre•1h ago•0 comments

US lawmakers aim to keep China's tech out of sensitive government systems

https://www.rnz.co.nz/news/world/1591943/us-lawmakers-aim-to-keep-china-s-tech-out-of-sensitive-g...
3•billybuckwheat•1h ago•1 comments

Planetary Gear (Code Art)

https://code.chuanqisun.com/planetary-gear/
2•low_tech_punk•1h ago•0 comments

Show HN: Jevlang. delegate every if/while condition to Jev

https://github.com/RoyWiggins/jevlang
3•roywiggins•1h ago•0 comments

Cognition Crosses $1B in Annualized Revenue Run Rate

https://cognition.com/blog/1b-run-rate
1•doppp•1h ago•0 comments

Distributed Quantum Compiler (DQC / XDQC) by MemQ open-source now

https://www.hpcwire.com/off-the-wire/memq-releases-open-sourced-distributed-quantum-compiler/
1•noobplus•1h ago•0 comments

Great News from Saturn's Moon Enceladus in the Search for Life in Space

https://www.fu-berlin.de/en/presse/informationen/fup/2026/fup_26_116-enceladus-cassini-mikroben-s...
2•geox•1h ago•1 comments

Make an animated pelican on unicycle jugging fish while explaining bash command

https://twitter.com/goodside/status/2103149526244618682
1•forgingahead•1h ago•1 comments

Lecture: Blowup for the Euler Equations with Smooth Forcing – Tristan Buckmaster [video]

https://www.youtube.com/watch?v=tn45ZOp3lXM
1•yurimo•1h ago•1 comments
Open in hackernews

Show HN: AgentShield SDK – Runtime security for agentic AI applications

https://pypi.org/project/agentshield-sdk/
2•iamsanjayk•1y ago
Hi HN,

We built AgentShield, a Python SDK and CLI to add a security checkpoint for AI agents before they perform potentially risky actions like external API calls or executing generated code.

Problem: Agents calling arbitrary URLs or running unchecked code can lead to data leaks, SSRF, system damage, etc.

Solution: AgentShield intercepts these actions:

- guarded_get(url=...): Checks URL against policies (block internal IPs, HTTP, etc.) before making the request.

- safe_execute(code_snippet=...): Checks code for risky patterns (os import, eval, file access, etc.) before execution.

It works via a simple API call to evaluate the action against configurable security policies. It includes default policies for common risks.

Get Started:

Install: pip install agentshield-sdk

Get API Key (CLI): agentshield keys create

Use in Python: from agentshield_sdk import AgentShield # shield = AgentShield(api_key=...) # await shield.guarded_get(url=...) # await shield.safe_execute(code_snippet=...)

Full details, documentation, and the complete README are at <https://pypi.org/project/agentshield-sdk/>

We built this because securing agent interactions felt crucial as they become more capable. It's still early days, and we'd love to get your feedback on the approach, usability, and policies.

Comments

subhampramanik•1y ago
Looks interesting -- Does it work like a wrapper on top of OpenAI specs? Like, can we just replace the OpenAI package with this, and it's fully integrated?
iamsanjayk•1y ago
Hey, thanks for asking! Good question.

AgentShield isn't a wrapper around the OpenAI package, so you wouldn't replace openai with it. Think of AgentShield as a separate safety check you call just before your agent actually tries to run a specific risky action.

So, you'd still use the openai library as normal to get your response (like a URL to call or code to run). Then, before you actually use httpx/requests to call that URL, or exec() to run the code, you'd quickly check it with shield.guarded_get(the_url) or shield.safe_execute(the_code).

Currently, It focuses on securing the action itself (the URL, the code snippet) rather than wrapping the LLM call that generated it.