frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: News about positive advances in medicine, climate tech, research

https://thegoodreport.co/
1•dreadsword•1m ago•0 comments

The SpaceX IPO is great for Elon Musk and terrible for you

https://www.theverge.com/ai-artificial-intelligence/940001/elon-musk-spacex-ipo-ai
2•1vuio0pswjnm7•5m ago•0 comments

A pictorial introduction to differential geometry (2017)

https://arxiv.org/abs/1709.08492
2•ricudis•9m ago•0 comments

How LLMs Work

https://arpitbhayani.me/blogs/how-llms-work/
2•dharaniES•21m ago•0 comments

We contain Claude across products

https://www.anthropic.com/engineering/how-we-contain-claude
2•Tomte•22m ago•0 comments

Show HN: V0.6.0-pre.14 hopefully the last release before v0.6.0

https://codeberg.org/ordinarylabs/Ordinary/releases/tag/v0.6.0-pre.14
2•seanwatters•27m ago•0 comments

Show HN: Komi-learn – continuous memory and self-improvement for coding agents

https://github.com/kurikomi-labs/komi-learn
2•rainxchzed•28m ago•0 comments

Blackwall – OSINT exposure scanner that pulls from real sources

https://theblackwall.vercel.app/
2•jwallace•35m ago•0 comments

Gradient animation using a WebGL shader

https://garden.bradwoods.io/notes/shaders/gradient
2•bradwoodsio•37m ago•0 comments

A standard for building production AI agents (+ installable Claude Code skills)

https://github.com/AlexDuchDev/agentic-product-standard
2•AlexDuch•39m ago•0 comments

OMP – pi agent with batteries included and a coding agent with the IDE wired in

https://omp.sh/
3•himata4113•41m ago•0 comments

The Last Coder: A Mockumentary

https://twitter.com/deepwhitman/status/2060938449541345294
3•bilater•45m ago•0 comments

The Two Doors

https://pilgrima.ge/p/the-two-doors
3•xenophonf•45m ago•0 comments

Update notifications for your CLI app

https://github.com/sindresorhus/update-notifier
2•ankitg12•46m ago•0 comments

The Record

https://soundbarrier.io/posts/the_record/
2•oneofthose•48m ago•0 comments

Ask HN: How you pass legacy to others?

2•jojwong•50m ago•0 comments

Ferrari Built the Luce for Outsiders. Its Own Fans Are the Only Ones Talking

https://getcarcurious.com/stories/ferrari-luce-podcast-reaction
2•mountaineer•50m ago•0 comments

Aliens.gov

https://www.whitehouse.gov/aliens/
2•sarkarghya•50m ago•4 comments

I made an free unlimited captcha alternative

2•david3289•51m ago•1 comments

Travel back to 1998 and use Lovable on Windows 98

https://www.sinalytica.com/
2•teddyX•55m ago•0 comments

Ahoy, DECmate II the little PDP-8 that could

http://oldvcr.blogspot.com/2026/05/ahoy-decmate-ii-little-pdp-8-that-could.html
10•TMWNN•57m ago•0 comments

Building a LangGraph pipeline for production data engineering

https://labyrinthanalyticsconsulting.com/blog/building-first-langgraph-pipeline
6•labyrinthAC•1h ago•0 comments

Peter Thiel's Move to Argentina Reflects Billionaire Trend

https://www.businessinsider.com/peter-thiel-argentina-billionaire-moving-abroad-2026-5
4•nreece•1h ago•1 comments

Microsoft NetMeeting was more important than you think [video]

https://www.youtube.com/watch?v=qhay6VryyvE
2•jervant•1h ago•0 comments

Just for fun, generate your websites alter ego

https://webalterego.com
2•pointscard•1h ago•1 comments

Ghostbase – describe an agent in plain English, it runs on a webhook or cron

https://ghostbase.ai/
2•florianberisha•1h ago•0 comments

Cancer jab can eradicate tumours in patients, trial shows

https://www.theguardian.com/science/2026/may/30/cancer-jab-can-eradicate-entire-tumours-in-patien...
5•Teever•1h ago•0 comments

If Windows were designed today, would the Registry exist? [video]

https://www.youtube.com/watch?v=bkrbew3Ls60
5•LelouBil•1h ago•1 comments

86Box v6.0

https://86box.net/2026/05/31/86box-v6-0.html
5•chungy•1h ago•3 comments

Open models lag closed models by 4 months

https://epoch.ai/data-insights/open-closed-eci-gap
4•intelkishan•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.