frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

TalkFitly – Practice high-EQ conversations with AI

https://apps.apple.com/us/app/talkfitly/id6776912365
1•sghick•1m ago•0 comments

Reducing HBM Bottlenecks in JAX-Based LLM Training with Host Offloading

https://developer.nvidia.com/blog/reducing-high-bandwidth-memory-bottlenecks-in-jax-based-llm-tra...
1•matt_d•5m ago•0 comments

Compiler Testing – Part 2: Metamorphic Testing with Verified Identities

https://nowarp.io/blog/compiler-testing-part-2/
1•matt_d•8m ago•0 comments

Martha Lillard, last US polio patient using iron lung, dies at 78 in Oklahoma

https://apnews.com/article/iron-lung-last-patient-died-polio-41e5b4da4f4e710344dd0872d7fcf987
2•gscott•10m ago•1 comments

OpenAI Engineer's 'LOL' Moment Set Stage for Legal Fight with Apple

https://www.bloomberg.com/news/articles/2026-07-11/openai-engineer-s-lol-moment-set-stage-for-leg...
1•sbulaev•18m ago•1 comments

All the Government's 385,837 frames of UFO files released thus far

https://hypergrid.systems/war.gov-ufo-viewer/microfilm5
1•keepamovin•26m ago•0 comments

Ukraine accuses Russia of creating conditions for the spread of anthrax

https://outbreaknewstoday.substack.com/p/ukraine-accuses-russia-of-creating
5•pinewurst•31m ago•1 comments

Don't You Mean Extinct?

https://fabiensanglard.net/extinct/index.html
1•markus_zhang•32m ago•0 comments

Survival guide: Key advice for what to do if you find yourself in a wildfire

https://www.euronews.com/my-europe/2026/07/10/survival-guide-key-advice-for-what-to-do-if-you-fin...
2•rawgabbit•36m ago•0 comments

Small Inventors Are Being Squeezed by a Convoluted Patent Process

https://www.nationalreview.com/news/small-inventors-are-being-squeezed-by-a-convoluted-patent-pro...
7•petethomas•42m ago•0 comments

Show HN: We beat Anubis with our stealth MCP

https://tilion.dev/blog/anubis-proof-of-work
7•armanluthra_•49m ago•3 comments

Show HN: Quantum-Qec / Matrix-Free Quantum Homeostatic Engine(Blueprint)

https://github.com/PJHkorea/quantum-mesh-qec
3•PJHkorea•52m ago•1 comments

We Know Simple Fluids Can Flow. Turns Out, Some Can Fracture

https://www.quantamagazine.org/we-know-simple-fluids-can-flow-turns-out-some-can-fracture-20260710/
12•Anon84•54m ago•0 comments

Show HN: Confessor – replay what private info Claude Code accessed on your PC

https://github.com/ninjahawk/Confessor
4•ninjahawk1•58m ago•0 comments

Thoughts on the 1989 Film the Abyss (2024)

https://www.sffchronicles.com/threads/586366/
2•andsoitis•1h ago•0 comments

The Energetic Costs of Cellular Computation (2012)

https://arxiv.org/abs/1203.5426
5•lioeters•1h ago•0 comments

Largest housing affordability bill in decades becomes law

https://www.npr.org/2026/07/10/nx-s1-5885027/housing-bill-without-trump-signature
4•saucymew•1h ago•0 comments

Computation in Physical Systems

https://plato.stanford.edu/entries/computation-physicalsystems/
2•lioeters•1h ago•0 comments

Atlas: ROMbug Wants to Reinvent the Browser

https://rombug.com/
2•chainbuilder•1h ago•0 comments

AI notetakers promise easy meeting recaps, but some question their use

https://apnews.com/article/ai-notetaker-work-meetings-privacy-data-c700299371ca7cfec77dafdfb948067f
5•billybuckwheat•1h ago•2 comments

A Hundred Years Dry: The U.S. Navy's End of Alcohol at Sea

https://news.usni.org/2014/07/01/hundred-years-dry-u-s-navys-end-alcohol-sea
5•keepamovin•1h ago•0 comments

Neverclick: Desktop application for performing mouse actions with your keyboard

https://github.com/LazoVelko/neverclick
4•thunderbong•1h ago•0 comments

The logic behind Kirkland x Palantir

https://lexifina.com/blog/kirkland-palantir-partnership
2•alansaber•1h ago•0 comments

America Changed Me and Europe Was Wrong [video]

https://www.youtube.com/watch?v=fUd6QHUnLMk
4•keepamovin•1h ago•5 comments

I find AI roleplay therapeutic

https://chatbrat.ai/bratlog/ultimate-ai-roleplay-setup-guide-memory-lorebooks
2•henrypissler•1h ago•0 comments

Show HN: Levee – a self-tuning circuit breaker and concurrency limiter for Go

https://github.com/codemartial/levee
3•code_martial•1h ago•0 comments

RTX 5070 Ti throttles at 107C; Blackwell hotspot sensor readable via MODS tool

https://www.tomshardware.com/pc-components/gpus/hotspot-temperature-sensor-on-nvidias-blackwell-g...
3•sbulaev•1h ago•0 comments

Flock Camera Conspiracy, Prepare for Whats Coming [video]

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

Frequently Asked Questions on Expertise

https://jtpeterson.substack.com/p/faq-on-expertise
3•jger15•1h ago•0 comments

What xAI's Grok Build CLI Actually Sends to xAI

https://gist.github.com/cereblab/dc9a40bc26120f4540e4e09b75ffb547
55•jhoho•1h ago•21 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.