frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Waiting [pdf]

https://github.com/accomodating-fellow/Greek-Mystery-School/blob/main/On%20Waiting%20by%20Harold%...
1•mrmarket•4m ago•0 comments

Show HN: Rogue-Bench – LLMs play the game Rogue

https://iwhalen.github.io/rogue-bench/
1•iwhalen•6m ago•0 comments

Mirall – Secure Large File Transfer, No Cloud

https://mirall.app/
1•janandonly•7m ago•0 comments

I'm insistently making it better every-week, The macOS Quake Terminal Emulator

https://www.patreon.com/posts/cutest-macos-app-159277202
1•rohanrhu•7m ago•0 comments

Computer game cuts risk of dementia by 25% and it's free

https://www.dailymail.com/health/article-15847055/Computer-game-cuts-risk-dementia-free.html
2•Bender•8m ago•0 comments

Show HN: Pviz-parser – codebase parsing package for Python and TS/JS codebases

https://github.com/mikebmac86/pviz-parser
1•pvizgenerator•8m ago•0 comments

Show HN: I built a tool to estimate AI agent costs before you ship

https://airunrate.com/
1•melmahdi•10m ago•0 comments

Matrices Map Between Biproducts

https://unstableontology.com/2025/11/15/matrices-map-between-biproducts/
1•surprisetalk•10m ago•0 comments

Show HN: The product is (usually) SnakeOil

1•Operative-001•12m ago•0 comments

Why New York's push to regulate e-bikes just slammed on the brakes

https://electrek.co/2026/05/25/why-new-yorks-push-to-regulate-e-bikes-just-slammed-on-the-brakes/
1•Bender•12m ago•0 comments

Btrfs Preps Folios Support Ahead of Linux 7.2

https://www.phoronix.com/news/Btrfs-Huge-Folios-Linux-7.2
1•Bender•12m ago•0 comments

Well-Architected Skills and Steering for AI Coding Agents

https://github.com/aws-samples/sample-well-architected-skills-and-steering
1•ibrahimcesar•13m ago•0 comments

It's Timbre Time! An interactive comic about additive synthesis

https://melatonin.dev/additive-synth-comic/its-timbre-time/
2•sudara•13m ago•0 comments

Outsourcing plus LocalAI will soon become more economical vs. Frontier labs

https://www.signalbloom.ai/posts/outsourcing-plus-localai-will-soon-become-more-economical-vs-fro...
1•GodelNumbering•17m ago•0 comments

Visualizing How a computer runs a program

https://semicolony.dev/visualize/how-computers-work/
6•officerdodles12•17m ago•0 comments

The Paradox of the Fast Engineer

https://explainanalyze.com/p/the-paradox-of-the-fast-engineer/
3•rtolkachev•22m ago•0 comments

Ferrari shares fall after carmaker unveils first electric vehicle

https://www.cnbc.com/2026/05/26/ferrari-stock-shares-luce-electric-vehicle-ev-launch.html
4•thm•22m ago•1 comments

Tensors are TOO intuitive [video]

https://www.youtube.com/watch?v=NOb8dCMP0Ys
3•surprisetalk•25m ago•0 comments

Tektite – a minimalistic Markdown knowledge base app

https://github.com/mathiasconradt/tektite
3•teekert•25m ago•1 comments

Grok Build is now available in Beta for all SuperGrok and X Premium+ users

https://twitter.com/xai/status/2058973760708091907
2•kgwgk•26m ago•0 comments

Retainr.io SIMPLEST freelancing platform to sell your gigs and services online

https://www.retainr.io/
2•pierres7•26m ago•0 comments

ATerminal – Self-hosted terminal server via Tailscale, PWA on iPhone

https://github.com/AlexanderEstrella/ATerminal
2•aestrella1•26m ago•0 comments

Show HN: MetaStrip – Client-side metadata removal for photos, video, audio, docs

https://metastrip.app
2•lars-dev•26m ago•0 comments

Mini Home Data Center

https://arstechnica.com/ai/2026/05/the-newest-ai-boom-pitch-host-a-mini-data-center-at-your-home/
3•hmokiguess•27m ago•0 comments

Normandy's Little Victims

https://warfarehistorynetwork.com/article/normandys-little-victims/
3•nixass•28m ago•0 comments

NewsRadar is now NewsDrawer, and it's lickable

https://www.jonmsterling.com/01K5/
2•arm•28m ago•0 comments

Can Extraterritorial Taxation Be Rationalized? (2023)

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4466430
3•voisin•29m ago•0 comments

BurnKit – Stop being the human event loop for your AI coding sessions

https://github.com/hanzhangzzz/burnkit
2•huajuan404•29m ago•0 comments

The most important factor that differentiates front-end frameworks (2023)

https://mjswensen.com/blog/the-single-most-important-factor-that-differentiates-front-end-framewo...
2•bmacho•29m ago•0 comments

How A Secretive Firm Tried (& Failed) to Fix an Epstein Friend's Tattered Image

https://www.nytimes.com/2026/05/17/us/politics/epstein-reummler-reputation-management.html
2•bookofjoe•32m 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.