frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: And now for a break: The Swimmer (1968) in Frogger Form

https://fun-things.vercel.app/the-swimmer/
1•bethanyhunt•1m ago•0 comments

Learning the ropes: why Germany is building risk into its playgrounds (2021)

https://www.theguardian.com/world/2021/oct/24/why-germany-is-building-risk-into-its-playgrounds
1•downbad_•1m ago•0 comments

New unlimited use coding agent (Standard Code)

https://standardcode.ai/
2•jpschroeder•1m ago•0 comments

Show HN: Single Reference to 3100 APIs

https://github.com/mindcloud-inc/universal-api-reference
1•frabjoused•2m ago•0 comments

Can Reddit fend off a new wave of AI SEO spam?

https://www.theverge.com/ai-artificial-intelligence/973098/reddit-ai-search-seo-marketing-brands-...
1•CharlesW•4m ago•0 comments

So what's next (personal news from developer of popular CoreJS polyfill) (2023)

1•KolmogorovComp•6m ago•0 comments

AI Detection of Poker Player Bluffing

https://www.wired.com/story/ai-tells-detection-world-series-of-poker-espn/
1•nate•6m ago•0 comments

The Law of Jante (2015)

https://www.theparisreview.org/blog/2015/02/11/the-law-of-jante/
1•NaOH•8m ago•0 comments

Stephen Wolfram's Wife Has Died

https://writings.stephenwolfram.com/2026/08/in-memory-of-my-wife-elise-cawley-1961-2026-with-than...
5•jdcampolargo•8m ago•0 comments

Our M365 tenant has been "deauthenticated" for 20 days

https://old.reddit.com/r/sysadmin/comments/1vfbvvs/our_entire_m365_tenant_has_been_deauthenticated/
2•oidar•9m ago•0 comments

AI demand to keep near-term inflation high, says investment strategist

https://www.cnbc.com/video/2026/08/04/ai-demand-ai-data-center-inflation-pressures-ai-debt-bonds-...
1•mapping365•9m ago•1 comments

A Revised Haskell 2010 Language Report

https://blog.haskell.org/revised-haskell-2010-report/
1•throawayonthe•9m ago•0 comments

Data.table, base, dplyr, Pandas, and polars

https://arelbundock.com/posts/dt_tb_df/
1•speckx•11m ago•0 comments

Kopi: A CLI Coffee Journal

https://github.com/mrusme/kopi
1•rishikeshs•12m ago•0 comments

LFM2.5 2.6B model competitive with 4x larger models

https://huggingface.co/LiquidAI/LFM2.5-2.6B
2•nateb2022•12m ago•0 comments

Meta: 7k

https://lcamtuf.substack.com/p/meta-7000
1•surprisetalk•14m ago•0 comments

Show HN: Block Blast AI Solver – Solve Puzzle Boards from a Screenshot

https://www.blockblastaisolver.com/
1•Mark_File217•16m ago•0 comments

Uber's Strategy for Fighting Sexual Assault Suits: 'What Were You Wearing?'

https://www.nytimes.com/2026/08/04/business/uber-sexual-assault-lawsuits.html
3•teachrdan•16m ago•0 comments

U.S. Air Force F-16 realtime autonomous intercepts

https://news.lockheedmartin.com/2026-08-04-Skunk-Works-R-Advances-Sensor-Powered-AI-Fighter-Inter...
1•r2sk5t•17m ago•0 comments

Invasive Aedes mosquitoes are colonizing US cities that were too cold for them

https://slate.com/technology/2026/08/mosquito-bugbite-insect-disease-america.html
1•hihellolhi•17m ago•0 comments

Bluetooth High Data Throughput

https://www.bluetooth.com/blog/bluetooth-le-will-soon-get-a-major-boost-in-speed-introducing-blue...
1•ledoge•19m ago•0 comments

The Catherine Project

https://catherineproject.org/
3•taylorlapeyre•19m ago•0 comments

Show HN: Captionrich – Edit your video with one click

https://captionrich.com
3•techtasium•20m ago•0 comments

Launch HN: EdotEnv (YC S26) – Quant Trading RL Envs to Teach LLMs Research

https://edotenv.com/
7•Mzzzzz•24m ago•0 comments

Six months prior to the September 11 attacks, The Lone Gunmen

https://en.wikipedia.org/wiki/The_Lone_Gunmen_(TV_series)
3•xkcd1963•25m ago•0 comments

LLM Arena

https://arena.ai/
2•simonebrunozzi•25m ago•0 comments

Bending Spoons acquires Airtable for $1.25B

https://www.businesswire.com/news/home/20260730994716/en/Bending-Spoons-has-entered-into-a-defini...
5•TWDan•26m ago•2 comments

I Became the Honest Broker

https://www.honest-broker.com/p/how-i-became-the-honest-broker-c04
2•paulpauper•27m ago•0 comments

Creating, Copying, and Remixing in the Age of AI

https://molochinations.substack.com/p/creating-copying-and-remixing-in
3•domhudson•27m ago•1 comments

Why Sheep Need Pigs in Sheepdog's Clothing

https://www.overcomingbias.com/p/why-sheep-need-pigs-in-sheepdogs
2•paulpauper•27m 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.