frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Competition Is Not the Problem

https://timleland.com/the-competition-is-not-the-problem/
1•TimLeland•1m ago•0 comments

Madden NFL 27 on Apple Arcade

https://www.apple.com/newsroom/2026/07/madden-nfl-27-arcade-edition-brings-gridiron-action-to-app...
2•nate•2m ago•0 comments

Emacs Docs: The modern documentation website Emacs deserves

https://emacsdocs.org
1•chiply•3m ago•1 comments

Asterism – a local-first knowledge graph that grows from your Claude chats

https://github.com/biditdas18/asterism
1•biditdas18•3m ago•0 comments

End-to-end encrypted secret sharing with the Web Crypto API

https://notnotp.com/notes/end-to-end-encrypted-secret-sharing-with-the-web-crypto-api/
1•chmaynard•6m ago•0 comments

Rural NY School District Will Be One of First to Bring Humanoid Robot into Class

https://nysfocus.com/2026/07/14/new-york-humanoid-robot-teacher-salamanca-school-district
1•amichail•8m ago•0 comments

"Light" Grub Alternative Package for Confidential Computing

https://www.phoronix.com/news/GRUB-Light-Approved-Fedora-45
2•Bender•10m ago•0 comments

Linux Foundation's Latest Foray Is to Standardize Payments for AI Agents

https://www.phoronix.com/news/Linux-Foundation-x402
1•Bender•11m ago•0 comments

NanoSASRec

https://github.com/eifuentes/nanoSASRec
1•efavdb•11m ago•0 comments

People Who Will Thrive in the AI Age

https://www.theatlantic.com/ideas/2026/06/ai-open-ai-anthropic/687689/
1•sodiumjoe•12m ago•0 comments

Beyond the Dashboard: Where Competitive Advantage Lives

https://www.library.hbs.edu/working-knowledge/beyond-the-dashboard-where-competitive-advantage-re...
1•paulpauper•12m ago•0 comments

Ambient Music via Conway's Game of Life

https://www.moishelettvin.com/life-ambient/
1•sys_call•13m ago•0 comments

Five Laws of Generative AI

https://isaaclyman.com/blog/posts/five-laws-of-ai/
1•aard•13m ago•0 comments

Why is Everybody Nostalgic About the 80s?

https://grimoiremanor.substack.com/p/why-is-everybody-nostalgic-about
1•paulpauper•14m ago•0 comments

Can you get a job at Bending Spoons?

https://www.wsj.com/business/bending-spoons-jobs-hiring-stock-eaed2b8e
1•paulpauper•14m ago•0 comments

Database Sharding

https://planetscale.com/blog/database-sharding
2•mahirsaid•16m ago•0 comments

AeroSLS – Simulated Single Level Strorage OS

https://aerosls.kubeworkz.io/
1•SpuriousReg•19m ago•0 comments

Blender 5.2 LTS Released with Many Great Enhancements

https://www.phoronix.com/news/Blender-5.2-Released
2•Bender•20m ago•0 comments

Run a Tor relay (not exit)

https://community.torproject.org/relay/
2•MMTlover•20m ago•0 comments

Blender 5.2 LTS

https://www.blender.org/download/releases/5-2-lts/
1•makizar•21m ago•1 comments

Open Sourcing the Atuin AI Server

https://blog.atuin.sh/atuin-ai-oss/
3•johnbehnke•22m ago•0 comments

How I built my site with no frameworks and Claude Code (PHP, vanilla JavaScript)

https://ivanmisic.net/blog/ai-tools/how-i-built-this-site-with-claude-code
2•imisic•24m ago•1 comments

Show HN: Poseberry: create AI influencers that pose with your products

https://poseberry.com
1•itsdevdaniel•26m ago•0 comments

Chinese CXMT to Match Micron's DRAM Manufacturing Capacity This Year

https://www.techpowerup.com/350726/chinese-cxmt-to-match-microns-dram-manufacturing-capacity-this...
1•yogthos•27m ago•0 comments

Why not LLMs?

https://codeberg.org/ethical-foss/open-slopware/src/branch/main/why_not_llms.md
4•lr0•28m ago•0 comments

US fossil fuel power spending to beat China for the first time in decades

https://www.reuters.com/business/energy/iea-forecasts-us-fossil-fuel-power-spending-beat-china-fi...
1•ironyman•30m ago•0 comments

The US may be hitting a tipping point for heat pumps

https://grist.org/energy/the-us-may-be-hitting-a-tipping-point-for-heat-pumps/
2•toomuchtodo•31m ago•1 comments

One Model or Twenty-Six?

https://www.supcpu.com/research/one-model-or-twenty-six/
1•romellogoodman•31m ago•0 comments

Uber's robotaxi lobbying effort puts it on a collision course with Waymo

https://techcrunch.com/2026/07/13/ubers-robotaxi-lobbying-effort-has-put-it-on-a-collision-course...
1•nickvec•31m ago•0 comments

Skydreams

https://killedbyapixel.github.io/TinyCode/1K/Skydreams/
1•memalign•32m 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.