frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

„We all leave digital footprints on the internet"

https://www.mpg.de/26430251/interview-troncoso-ueberwachung
1•jruohonen•4m ago•1 comments

Apple patches high-severity eavesdropping vulnerability in Beats Studio Buds

https://arstechnica.com/apple/2026/06/apple-patches-high-severity-eavesdropping-vulnerability-in-...
1•joozio•11m ago•0 comments

Local Models, Friction and Struggle

https://garden.azl.au/ai/local-models/local-models-friction-struggle
1•neurodivergent•15m ago•1 comments

Safe SIMD in Rust, even on the inside

https://shnatsel.medium.com/safe-simd-in-rust-even-on-the-inside-c6f1ff381828
1•g0xA52A2A•15m ago•0 comments

As China gorges on homegrown foie gras, France faces a new rival

https://www.reuters.com/world/asia-pacific/china-gorges-homegrown-foie-gras-france-faces-new-riva...
1•JumpCrisscross•17m ago•1 comments

Mochallama

https://deemwar-products.github.io/mochallama/
1•deemwar•19m ago•0 comments

Mack.ns.cloudflare.com

https://blog.cloudflare.com/welcome-to-connectivity-cloud/
1•SajjuRoy•20m ago•0 comments

Bootimus – A Self-Contained PXE and HTTP Boot Server

https://bootimus.com
2•car•20m ago•0 comments

We Ran the Numbers. Remote Work Is Bad for Us

https://www.nytimes.com/2026/06/17/opinion/remote-work-depression.html
1•Anon84•22m ago•0 comments

Apple unifies device management in devicectl: Impact on iOS test automation and

https://bitrise.io/blog/post/wwdc-2026-device-hub-and-what-it-means-for-ci-cd
1•birdculture•24m ago•0 comments

CSSQuake

https://cssquake.com/
4•msalsas•26m ago•1 comments

Enthusiastic Fear

https://patent.dev/enthusiastic-fear/
2•funktionslust•33m ago•0 comments

The Classic Movie That Was Nearly Destroyed by a Single Line of Code

https://www.wsj.com/business/media/toy-story-5-saved-pixar-78e29161
2•impish9208•33m ago•1 comments

UK's top data and AI regulator quits after 'inappropriate' humour

https://www.bbc.co.uk/news/articles/c0eyq7rnn22o
3•nephihaha•35m ago•0 comments

A Web-Scale Data Engine for Video-to-Action Robot Learning

https://huggingface.co/spaces/Rice-RobotPI-Lab/EgoInfinity
1•jacobedawson•35m ago•0 comments

Lakehouse//RT

https://www.databricks.com/blog/introducing-lakehousert-real-time-performance-unified-lakehouse
1•tosh•39m ago•0 comments

I have not written a line of code in five months

https://blog.grod.es/i-have-not-written-a-line-of-code-in-five-months
2•grodes•41m ago•0 comments

BudgetZen

1•ByrsaTeam•41m ago•0 comments

Can 'We the People' Survive the AI Revolution?

https://www.wsj.com/opinion/can-we-the-people-survive-the-ai-revolution-f9154ba1
1•bookofjoe•43m ago•1 comments

Open Source for IBM Z and LinuxONE

https://community.ibm.com/community/user/blogs/elizabeth-k-joseph1/2026/06/18/linuxone-open-sourc...
1•ncruces•43m ago•0 comments

Rethinking vulnerability management in the age of AI and CI/CD

https://blog.apnic.net/2026/06/19/rethinking-vulnerability-management-in-the-age-of-ai-and-ci-cd/
2•jruohonen•50m ago•1 comments

I Was Too Stoned to Configure Nginx Auth and Now My 0Days Are Touring the World

https://twitter.com/YogSoth0/status/2068158039744507993
1•markus_zhang•51m ago•0 comments

Pure Go GUI toolkit built on GoGPU

https://github.com/gogpu/ui
2•porjo•54m ago•0 comments

Pake: Turn any webpage into a desktop app with one command

https://github.com/tw93/Pake
1•thunderbong•55m ago•0 comments

GoPeek – Just hover. No new tabs.

https://microsoftedge.microsoft.com/addons/detail/gopeek/ffaeanmhghmohbponokefmbhfkkomnmk
1•sheelagay•59m ago•3 comments

Terminal and Panel Reorganization in RexIDE

https://www.youtube.com/watch?v=EgvDd6_kidQ
1•tomerbd•1h ago•0 comments

Install F-Droid apps over USB straight from the browser

https://droidstore.megahard.pro/
2•bboygravity•1h ago•1 comments

New studies suggest consciousness exists in organisms without brains

https://iai.tv/articles/new-studies-suggest-consciousness-exists-in-organisms-without-brains-auid...
2•XzetaU8•1h ago•1 comments

I built a WordPress plugin for simple content statistics and stylometry markers

https://github.com/alexboia/ABNET-PostStats
1•alexandruboia•1h ago•0 comments

Iranian Guards' business empire to win big if U.S. sanctions lifted

https://www.reuters.com/world/middle-east/iranian-guards-business-empire-win-big-if-us-sanctions-...
2•JumpCrisscross•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.