frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

BirdyChat is now live in Europe

https://www.birdy.chat/blog/birdychat-is-now-live-in-europe
1•rmesters•25s ago•0 comments

Chaotic whale rescue shocks marine biologists

https://www.science.org/content/article/chaotic-whale-rescue-shocks-marine-biologists
1•_tk_•29s ago•0 comments

Show HN: Rore GUI – An Open Qt Alternative in Rust (WGPU, Zero-VDOM)

https://github.com/davlatov-tech/Rore
1•umid_davlatov•39s ago•0 comments

Community firmware for the Xteink X4 e-paper reader

https://github.com/crosspoint-reader/crosspoint-reader
1•dmos62•44s ago•0 comments

Show HN: An AI generated, online art exhibition

https://www.whatwesee.space/
1•sarreph•1m ago•0 comments

Show HN: Built a haptic rig for SIM racing

https://www.youtube.com/watch?v=7C1XoP6DIb4
1•helloduck1234•1m ago•0 comments

Independent Siggraph Paper: InfiniteDiffusion, Terrain Diffusion, Minecraft Demo

https://xandergos.github.io/terrain-diffusion/
1•xandergos•1m ago•1 comments

Canada Tax Calculator

https://takehome.tax
1•ccnomas•2m ago•0 comments

Plaster-making technique attributed to Romans appears 8K years earlier in Motza

https://phys.org/news/2026-05-plaster-technique-previously-attributed-romans.html
1•pseudolus•3m ago•0 comments

Copirate 365: Plundering in the Depths of Microsoft Copilot (CVE-2026-24299)

https://embracethered.com/blog/posts/2026/defcon-talk-copirate-365/
2•kerng•4m ago•0 comments

Smashing the Stack for Fun and Profit (1996)

https://phrack.org/issues/49/14
1•myth_drannon•4m ago•0 comments

LLMs running on my laptop can drive coding agents now

https://simonpcouch.com/blog/2026-04-16-local-agents-2/
1•speckx•4m ago•0 comments

Tre: The approximate regex matching library

https://github.com/laurikari/tre/
1•tosh•4m ago•0 comments

NASA just released 12k more pictures from Artemis II mission

https://eol.jsc.nasa.gov/SearchPhotos/ShowQueryResults-Table.pl?results=177791454696961
3•bookofjoe•7m ago•0 comments

Spawn and monitor swarms of local AI agents from an iPhone

https://onepilotapp.com
2•elearia•7m ago•0 comments

Show HN: Hexagonal, noisy, periodic Minesweeper in FreeDoom style

https://aiwai.eu/apps/doom-sweeper/
1•gkep•7m ago•0 comments

Tokentoll – Static analysis that catches LLM cost changes in code review

https://github.com/Jwrede/tokentoll
1•Jwrede•7m ago•0 comments

DigiCert: Misissued Code Signing Certificates

https://bugzilla.mozilla.org/show_bug.cgi?id=2033170
1•8organicbits•8m ago•0 comments

Microsoft Edge: Passwords end up in memory as plaintext

https://www.heise.de/en/news/Microsoft-Edge-Passwords-end-up-in-memory-as-plaintext-11281576.html
1•Topfi•8m ago•1 comments

Stripe.Dev Infinite Scroll Animates Developers Chant

https://stripe.dev/
1•skadamat•11m ago•0 comments

How HN: I aggregated 17 years of the Guardian's Blind Date column

https://blinddates.rory.codes/
1•mrroryflint•11m ago•1 comments

Encyclopedia Evalica

https://www.braintrust.dev/encyclopedia
1•i0exception•12m ago•0 comments

Google now offers up to $1.5M for some Android exploits

https://www.bleepingcomputer.com/news/security/google-now-offers-up-to-15-million-for-some-androi...
2•Brajeshwar•12m ago•0 comments

Opposition to AI Data Centers Is a 'Bipartisan Issue'

https://www.nytimes.com/2026/05/01/us/politics/liberals-conservatives-data-centers.html
1•npilk•13m ago•0 comments

The growing risk of a 'non-linear spike' in oil prices

https://www.ft.com/content/8ebecab1-552e-4e12-96cf-c36d738aeb2e
1•_tk_•13m ago•0 comments

Tell HN: Archive.ph Is Gone

2•_tk_•14m ago•0 comments

When Agent Memory Becomes a Platform Concern

https://medium.com/@wjackson_63436/when-agent-memory-becomes-a-platform-concern-4b6cd23af47f
1•rdwj•14m ago•1 comments

IPCC Admits Apocalyptic Climate Scenarios Are "Implausible"

https://dailysceptic.org/2026/05/05/ipcc-admits-apocalyptic-climate-scenarios-are-implausible-mea...
1•bilsbie•15m ago•1 comments

How AI Works Under the Hood: LLMs Explained with Code

https://nitayneeman.com/blog/how-ai-works-under-the-hood-llms-explained-with-code/
1•nitayneeman•16m ago•0 comments

Adobe's 'Modern' User Interface Is Just Webpages

https://pxlnv.com/linklog/adobe-modern-user-interface/
1•JumpCrisscross•16m ago•0 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.