frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Building an open source (turbopuffer alternative)in Rust – Kosha

https://github.com/decover-tech/kosha
1•ravitandon1990•3m ago•1 comments

Meta Security Researcher's AI Agent Accidentally Deleted Her Emails

https://au.pcmag.com/ai/116091/meta-security-researchers-ai-agent-accidentally-deleted-her-emails
1•Bluestein•8m ago•0 comments

Croc v11.3 goes peer-to-peer

https://getcroc.com/blog/croc-v11-3-release-update
1•haunter•15m ago•0 comments

Advice on Upskilling [pdf]

https://www.justinmath.com/files/advice-on-upskilling.pdf
1•miletus•18m ago•0 comments

How to Pretty-Print Your Kubernetes YAML as Kyaml and Why You'd Want To

https://kubernetes.io/blog/2026/08/11/how-to-pretty-print-kubernetes-yaml-as-kyaml/
1•jamietanna•18m ago•0 comments

Habit tracker bullet journal ideas

https://trackthehabit.com/bullet-journal-habit-tracker-layouts/
1•ahmadhussain89•18m ago•0 comments

Conversations Can Shape Reality

https://nautil.us/how-conversations-can-shape-reality-1284420
1•XzetaU8•20m ago•0 comments

SK Hynix Weighs Japan Memory Plant Deal to Supply AI Boom

https://www.bloomberg.com/news/articles/2026-08-31/sk-hynix-weighs-japan-memory-fab-partnership-t...
1•aufklarer•20m ago•0 comments

US and Iran Exchange Attacks for First Time in About a Month

https://www.bloomberg.com/news/articles/2026-08-30/us-strikes-iranian-rocket-launchers-in-first-a...
1•ipotapov•25m ago•0 comments

Trump demands Canadian companies doing business with USA move there immediately

https://www.independent.co.uk/news/world/americas/us-politics/trump-canada-businesses-truth-socia...
5•emptybits•28m ago•1 comments

Setting Up a Kernel Debugging Environment (2021)

https://pwning.systems/posts/setting-up-a-kernel-debugging-environment/
1•vismit2000•28m ago•0 comments

Starting AI Safety Study Group to Do Arena Curriculum

https://www.lesswrong.com/posts/eysGHNdvgAYwZjC3r/starting-ai-safety-study-group-to-do-arena-curr...
1•joozio•29m ago•0 comments

Claude Code reduces it's weekly limit by 17% – compared to today

https://twitter.com/ClaudeDevs/status/2093742322525810912
3•partsch•29m ago•0 comments

Nvidia DLSS 5: Modders enable AI faces in all sorts of games

https://www.heise.de/en/news/Nvidia-DLSS-5-Modders-enable-AI-faces-in-all-sorts-of-games-11434015...
1•doener•33m ago•0 comments

Zenresume

https://www.zenresume.online/
1•jagadees21•36m ago•0 comments

Infinite Slop (24/7 AI video generation)

https://infiniteslop.ai/
1•mdrzn•37m ago•0 comments

Show HN: Albums Vault, my take on how to manage Spotify album library

https://codefloe.com/rabc/albums-vault
1•rabc•38m ago•0 comments

Free Image Upscale

https://imagepeel.com/
1•FrostDream•40m ago•1 comments

Open Source tool to detect software supply chain attacks

https://github.com/ossillate-inc/packj
1•daveP17•44m ago•0 comments

I Didn't Set a Cookie

https://belibre.be/cookies/
5•JeanKage•50m ago•0 comments

Reckless Ben confronted Ideal Living's CEO over trafficking claims

https://thecreatorwire.com/article/reckless-ben-posed-as-doordash-delivery-to-confront-peter-spie...
2•thevinter•53m ago•1 comments

Fifty Shades of Klinker: The Bricks That Shaped Hamburg

https://alsterrunde.com/fifty-shades-of-klinker-the-bricks-that-shaped-hamburg/
1•mertbio•57m ago•0 comments

Show HN: FlarePeek – a chrome extension for Cloudflare Worker developers

https://chromewebstore.google.com/detail/flarepeek-a-browser-exten/ffdbljcgdjkbbbbodnjbbgpahhnkfbnl
1•ioslh•1h ago•0 comments

The Aphantasia Lie [video]

https://www.youtube.com/watch?v=UyBikVRPh6c
2•IdealeZahlen•1h ago•0 comments

In less than a year, Google made scraping 10× harder

https://growtika.com/blog/google-goto-links-study
5•Growtika•1h ago•2 comments

Droptick – one ad slot per week, the price only falls

https://www.droptick.io
1•CarstenSachse•1h ago•1 comments

A 12TB Steam "teraleak" spills more than a decade of lost PC gaming history

https://arstechnica.com/gaming/2026/08/a-12tb-steam-teraleak-spills-more-than-a-decade-of-lost-pc...
29•WithinReason•1h ago•3 comments

How AI Agents Make Discord Support Faster with SeaTicket

3•Daniel-Pan•1h ago•1 comments

One Plugin, One Config, One Starter = All-in-One Kit for 11ty / Build Awesome

https://buildawesome.one/
1•anydigital•1h ago•0 comments

Drug test policy search site

https://dotheydrugtest.com/
1•nullscape•1h 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.