frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Scientist creates 'mini‑universe' to measure time without a clock

https://phys.org/news/2026-06-scientist-miniuniverse-clock.html
1•wjSgoWPm5bWAhXB•1m ago•0 comments

AWS rolls the dice for faster, more efficient networking

https://www.theregister.com/networks/2026/06/13/aws-rolls-the-dice-for-faster-more-efficient-netw...
1•TowerTall•1m ago•0 comments

USD by the Numbers

https://taylor.town/money-supply
1•tosh•5m ago•0 comments

Programming the ZX Spectrum's Bitmap Display

https://bumbershootsoft.wordpress.com/2026/06/13/programming-the-zx-spectrums-bitmap-display/
2•ibobev•8m ago•0 comments

How can I schedule work on a thread pool with low latency?

https://devblogs.microsoft.com/oldnewthing/20260612-00/?p=112417
1•ibobev•8m ago•0 comments

Upgrading my Apple II serial setup

https://www.colino.net/wordpress/archives/2026/06/14/upgrading-my-apple-ii-serial-setup/
2•ibobev•8m ago•0 comments

Are we asking the right questions?

1•redipascov•8m ago•0 comments

IISU Frontend final alpha (v0.0.7) released

https://github.com/iisu-network/iiSU/releases/tag/0.0.7.2
1•chromehearts•10m ago•0 comments

When the Event Is the Prompt

https://go-micro.dev/blog/21
1•asim•11m ago•1 comments

Why Mechanical Sympathy? (2011)

https://mechanical-sympathy.blogspot.com/2011/07/why-mechanical-sympathy.html
2•tosh•14m ago•0 comments

Zhynx on X: "Your AI could die tomorrow." / X

https://twitter.com/onlyzhynx/status/2066178507449721277
2•bilsbie•14m ago•0 comments

New SDK Available for AmigaOS 4.1 Final Edition

https://amiga-news.de/en/news/AN-2026-06-00067-EN.html
1•codewiz•14m ago•0 comments

Surpassing Frontier Performance with a Fusion of multiple models

https://openrouter.ai/blog/announcements/fusion-beats-frontier/
3•chr15m•15m ago•0 comments

Data-Parallel Thinking (2024) [pdf]

https://gfxcourses.stanford.edu/cs149/fall24content/media/dataparallel/08_dataparallel_uvO76Qr.pdf
1•tosh•16m ago•0 comments

Prime Minister Sir Keir Starmer has announced a social media ban for under-16s

https://twitter.com/SkyNews/status/2066420074265661746
2•bbayer•17m ago•0 comments

Hetzner Cloud prices are up 120%

https://www.hetzner.com/de/pressroom/standardization-and-price-adjustment-of-our-server-products/
3•mitjam•22m ago•2 comments

Chrome had the highest idle CPU and RAM usage in a 5-browser benchmark

https://gopeek-lovat.vercel.app/blog-chrome-best-browser-2026.html
2•GeorgeWoff25•23m ago•2 comments

"They screwed us": Personality clashes sent Anthropic's models offline

https://www.axios.com/2026/06/15/anthropic-white-house-fable-mythos
1•The_Gray•23m ago•0 comments

New solid-state ACs promise a cool future. Scientists aren't so sure

https://www.technologyreview.com/2026/06/15/1138552/solid-state-acs-promise-cool-future/
2•joozio•28m ago•0 comments

Coding Agent Sandboxes Don't Solve Credential Authorization

https://www.permit.io/blog/coding-agent-sandboxes-credentials
1•gemanor•28m ago•0 comments

Frontier teams are reinventing AI-native development

https://aws.amazon.com/blogs/machine-learning/how-frontier-teams-are-reinventing-ai-native-develo...
1•kator•30m ago•0 comments

Manufacturer bloatware is finally becoming optional – and this app is proof

https://www.makeuseof.com/manufacturer-bloatware-optional-app-proof-never-needed/
1•ripe•30m ago•0 comments

Show HN: 1000 C++ problems, every solution compiled and tested on g++

https://hatemwave.gumroad.com/l/ffenif
1•HatemDabet•30m ago•0 comments

The Web We Know Is Going to Disappear

https://www.minid.net/2026/6/15/the-web-is-going-to-dissapear
3•meerita•32m ago•1 comments

Show HN: Unique Gemstones for Your Strings

https://seedstone.xyz/
2•mdrfi•32m ago•0 comments

Triple Shockwave from Sun Crossing Rocket

https://apod.nasa.gov/apod/ap260615.html
3•xnx•34m ago•1 comments

Show HN: Sweepr – Daily Minesweeper with a guess-free board generator

https://sweepr.online/
2•youreawizerdhar•35m ago•1 comments

Metaspec: The dpANS3 Common Lisp Specification in s-expr format

https://metaspec.dev/
1•dlowe-net•36m ago•1 comments

Dependent Haskell – Vladislav Zavialov

https://www.typetheoryforall.com/episodes/dependent-haskell
2•alexandersechin•37m ago•1 comments

The Mote in AI's Eye: software engineering with agents

https://musicallyut.xyz/
1•musically_ut•38m 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.