frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Programmers Sell Ox, Not UX

https://www.makonea.com/en-US/casual/programmers-sell-ox-not-ux
1•jdw64•1m ago•0 comments

Probability Distributions: An Intuitive Guide

https://tawsifk.substack.com/p/probability-distributions-an-intuitive
1•t35khan•4m ago•0 comments

Stripped an AI agent down to a bash loop – No Framework

https://github.com/seedpi867-cmd/seed
1•seed867•6m ago•0 comments

Marc Andreessen, A16Z and Netscape

https://www.davidsenra.com/episode/marc-andreessen
1•gnabgib•6m ago•0 comments

The Dragon Won Because Nobody Fought It (2014) [video]

https://www.youtube.com/watch?v=cZYNADOHhVY
1•warbaker•12m ago•1 comments

Why AI rarely says "I don't know"

https://medium.com/@blueshirts23/i-got-chatgpt-to-confess-its-own-design-logic-heres-exactly-what...
1•BoundaryTester•14m ago•0 comments

8Veda – AI-powered news intelligence. Bias-indexed. Neutral

https://8veda.com/
1•anthonymooz•15m ago•0 comments

Peter Thiel backs $1B ocean data centre startup powered by waves

https://www.ft.com/content/711ce313-16fb-4a12-b6be-fbed547c8a39
1•voxadam•16m ago•1 comments

Y Combinator's Stake in OpenAI (0.6%)

https://daringfireball.net/2026/05/y_combinators_stake_in_openai
3•gyomu•17m ago•0 comments

Show HN: I built a native macOS audio player and it changed my life

https://github.com/chrisallick/light-crime-audio-player
1•chrisallick•20m ago•1 comments

Ribbon – A Linkding Client

https://www.coryd.dev/posts/2026/ribbon-a-linkding-client
1•cdrnsf•20m ago•0 comments

Show HN: Agent Historic Philosophical Persona Routing and Prompts

https://github.com/barretts/AgentHistoric
2•sosuke•23m ago•1 comments

I Bought a TV with No 'Smart' Features [video]

https://www.youtube.com/watch?v=LJh72_O4pXE
1•absqueued•25m ago•0 comments

Using agroforestry to buffer noise [pdf]

https://www.fs.usda.gov/nac/assets/documents/agroforestrynotes/an42w05.pdf
1•koolba•26m ago•0 comments

An Introduction to LangChain's Deep Agents

https://medium.com/@ngpeijiun/an-introduction-to-langchains-deep-agents-ad14b511f3dc
2•eugenis•28m ago•0 comments

Kredd – open-source SaaS application for ranking cold inbound emails

https://github.com/DomHudson/kredd
1•domhudson•31m ago•0 comments

Open-source diagnostic for Al misalignment. Model agnostic, industry agnostic

https://github.com/ifixai-ai/diagnostic
1•dimneo24•31m ago•1 comments

Highlander returns to theaters in glorious 4K, for 40th anniversary.

https://www.polygon.com/highlander-returns-to-theaters-in-glorious-4k/
2•nephihaha•31m ago•2 comments

The actual strategy plan Walt Disney gave investors

https://hbr.org/resources/images/article_assets/2013/05/disney-2.jpeg
1•megamike•36m ago•0 comments

Austria expels three Russian embassy staff after 'forest of antennae' discovered

https://www.theguardian.com/world/2026/may/04/austria-expels-three-russian-embassy-staff-vienna-s...
4•CqtGLRGcukpy•36m ago•0 comments

Show HN: Yames – A distraction-free desktop metronome built with Rust and Tauri

https://turutupa.github.io/yames/
2•turutupa•36m ago•0 comments

May the 4th be with the ballpark: Inside MLB's Star Wars obsession

https://www.espn.com/mlb/story/_/id/48652519/mlb-star-wars-promotions-traditions-4th
2•1659447091•37m ago•0 comments

Running a Company with Agents

https://cofounder.co
1•yuedongze•37m ago•0 comments

AOL killed the early internet on a single day in September 1993

https://twitter.com/GeniusGTX/status/2051316737749217627
3•bilsbie•37m ago•1 comments

Suspected YouTube bug spikes RAM over 7gbs users report lag and frozen tabs

https://www.tomshardware.com/software/a-suspected-youtube-interface-bug-spikes-ram-usage-above-7-...
6•Zeidd•38m ago•0 comments

I left academia to sell Elephant Garlic online

https://demeterfamilyfarm.com/
1•WWIII_Historian•41m ago•1 comments

2026 Cocodona Livestream Day 1 [video]

https://www.youtube.com/watch?v=dWhF6tTn8zI
1•BiraIgnacio•46m ago•0 comments

VSCode Dark Islands – Safe Version

https://github.com/raaid3/vscode-dark-islands
1•raaid3•47m ago•1 comments

Metalenz Has Figured Out a Way to Make Face ID Invisible

https://www.wired.com/story/metalenz-has-figured-out-a-way-to-make-face-id-invisible/
1•0in•49m ago•0 comments

An unbiased benchmark for how well agents can read your docs

https://docsalot.dev/benchmarks/docs
2•fazkan•52m ago•1 comments
Open in hackernews

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

https://pypi.org/project/agentshield-sdk/
2•iamsanjayk•12mo 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•12mo 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•12mo 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.