frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A girl with a will to live: the love, hope and pain of raising Elsie

https://www.theguardian.com/lifeandstyle/2026/sep/16/love-hope-pain-raising-elsie-rare-genetic-di...
1•ljf•22s ago•0 comments

14,000 Security Guards for Major Tech Companies Plan to Strike

https://www.kqed.org/news/12099765/14000-security-guards-for-major-tech-companies-plan-to-strike
1•PLenz•1m ago•0 comments

I Only Wanted the Tests to Run Faster

https://www.differentshelf.com/i-only-wanted-the-tests-to-run-faster/
1•seductivebarry•4m ago•0 comments

JJ Con '26 [video]

https://www.youtube.com/watch?v=DFjbAsWQ9ns
1•joshka•5m ago•0 comments

The Google Play app review process now regularly takes longer than a week

https://gultsch.social/@daniel/117280438824908947
1•inputmice•6m ago•0 comments

I Made a Time Machine

https://1matin.com/time-machine/
1•1matin•8m ago•0 comments

Is anyone else losing their motivation to nerd out and tinker because of AI?

1•rizsyed1•8m ago•1 comments

Anna Holmes on Saying No and Yes

https://www.cjr.org/the-interview/anna-holmes-saying-no-and-yes-jezebel-founder-struggle-freedom-...
1•Tomte•9m ago•0 comments

Nvidia announces native GPU programming in Rust

https://developer.nvidia.com/blog/introducing-cuda-rust-two-tracks-for-writing-gpu-kernels/
1•nonmaskable•9m ago•0 comments

Europe Time Machine, an interactive map of Europe's borders

https://europe-time-machine.vercel.app/
1•bebanR•11m ago•0 comments

Ask HN: How do you prevent customer PII from reaching LLMs unnecessarily?

1•Securelytixdev•11m ago•0 comments

An LLM-Turbocharged Community Calendar Reboot (2024)

https://thenewstack.io/an-llm-turbocharged-community-calendar-reboot/
1•zeristor•12m ago•1 comments

Devastated father says his 9-year-old son spent $118,000 on YouTube ads

https://www.tomshardware.com/video-games/devastated-father-says-his-9-year-old-son-spent-usd118-0...
1•vanburen•12m ago•0 comments

Silly Sound Bastard It is yet another clone of the well known Covox Speech Thing

https://github.com/necroware/silly-sound-bastard
1•Bluestein•18m ago•0 comments

Should markets discount the AI apocalypse?

https://www.ft.com/content/845a7c03-15b4-4bff-a49c-25781287b75c
1•cc62cf4a4f20•18m ago•0 comments

Cyber Defense for the Hybrid Enterprise in the Age of AI

https://www.ciscopress.com/store/cyber-defense-for-the-hybrid-enterprisein-the-age-of-9780135472781
1•teleforce•19m ago•0 comments

AI models need more data about biology, and OpenAI is paying to create it

https://www.technologyreview.com/2026/09/15/1144129/ai-models-need-more-data-about-biology-and-op...
1•joozio•22m ago•0 comments

Show HN: Omastorm – Live NEXRAD weather radar for Omarchy

https://github.com/wesleygrimes/omastorm
1•wesgrimes•24m ago•0 comments

Apodex – FrontierAgent

https://github.com/ApodexAI/FrontierAgent
1•marksully•24m ago•0 comments

Internal Tool Delegation for Agents vs. External Payment Auth

https://skyfire.xyz/ai-agent-authentication-authorization-platforms/
1•mooreds•25m ago•0 comments

Ask HN: What is the most career altering course or book you have gone through?

2•learner_yearner•26m ago•2 comments

China's open-weight AI models are now just 4 months behind frontier US offerings

https://www.tomshardware.com/tech-industry/artificial-intelligence/chinas-open-weight-ai-models-a...
2•rbanffy•26m ago•0 comments

What writing for the Washington Post taught me about standup comedy

https://pammoore.substack.com/p/what-writing-for-the-washington-post
1•mooreds•27m ago•0 comments

Mythos 5 Transcript Release

https://github.com/anthropics/mythos-5-incident-transcript
2•marksully•28m ago•0 comments

HP ZBook Ultra G3a 16 Preview: 192GB Unified Memory Aims for Top Local AI Laptop

https://www.storagereview.com/review/hp-zbook-ultra-g3a-16-preview-192gb-of-unified-memory-aims-f...
1•rbanffy•29m ago•0 comments

Show HN: IndexLaunch – free indexability checker and IndexNow submission queue

https://www.indexlaunch.site/
1•mp866137•29m ago•0 comments

The New Chinese Way of Cyberwar

https://www.foreignaffairs.com/china/new-chinese-way-cyberwar-ai
1•michaelhillaert•31m ago•0 comments

Show HN: Gescom MiniDisc Runner – 88 tracks, 88! possible orders

https://github.com/EI3LH/Gescom-MiniDisc-Runner
1•austinallegro•32m ago•0 comments

The End of EWS in Mail and AppleScript in Outlook

https://mjtsai.com/blog/2026/08/20/the-end-of-ews-in-mail-and-applescript-in-outlook/
1•vinni2•33m ago•0 comments

When Software Becomes Cheap, Trust Becomes Expensive

https://medium.com/@hbbio/when-software-becomes-cheap-trust-becomes-expensive-621cf347880f
1•hbbio•34m 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.