frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Previewing Ultrafast mode: GPT‑5.6 Sol at up to 14X the speed

https://openai.com/index/previewing-ultrafast/
1•meetpateltech•46s ago•0 comments

Inside UBS's Record $125M Anti-Money Laundering Penalty

https://brief.middesk.com/p/ubs-125-million-aml-penalty-fincen
1•petethomas•55s ago•0 comments

The EU Cyber Resilience Act Meets Its Match in Determinate Secure Packages

https://determinate.systems/blog/nix-cyber-resilience-act/
1•biggestlou•2m ago•0 comments

Chicago Mercantile Exchange will list futures contracts for GPU costs

https://www.cmegroup.com/media-room/press-releases/2026/8/11/cme_group_and_silicondatatolaunchcom...
1•p4ul•3m ago•0 comments

I built a memory tool for Claude Code that never leaves your disk

https://github.com/georgedagher/deposition
1•georgedagher•6m ago•0 comments

Forgetting Is a Feature

https://medium.com/@majid.fekri/forgetting-is-a-feature-2cc53c7693cc
1•supportm•6m ago•0 comments

Cloud should come with an app builder

https://blog.railway.com/p/dev-new
1•thisismahmoud_•7m ago•1 comments

In a first, US will allow some private firms to carry out cyberattacks

https://techcrunch.com/2026/08/13/in-a-first-us-will-allow-some-private-firms-to-carry-out-cybera...
2•Cider9986•8m ago•0 comments

Who Should Pay for Source Code Availability?

https://kristoff.it/blog/source-code-availability/
1•kristoff_it•9m ago•0 comments

Cloudflare Durable Objects, Ported to Rails

https://solidobjects.dev/
3•necrodome•10m ago•0 comments

The Biology of Claude's Tokenizer: Reverse Engineered

https://tokencontributions.substack.com/p/on-the-biology-of-claudes-tokenizer
1•goranmoomin•11m ago•0 comments

Marketers are Addicted to Bad Data (2020)

https://www.jacquescorbytuech.com/writing/marketers-addicted-bad-data
1•zbentley•12m ago•0 comments

Five European companies just agreed to buy AI compute that doesn't exist yet

https://thenewstack.io/mistral-third-party-open-models/
1•Brajeshwar•12m ago•0 comments

Greatness: Telegram-Distributed M365 AiTM PhaaS

https://zerobec.com/blog/greatness-phaas-aitm-and-device-code-phishing
1•speckx•13m ago•0 comments

Does AI save time at work?

https://censuseasy.com/blog/does-ai-save-time-at-work
1•misterinfo•13m ago•0 comments

Show HN: My Claude subscription did $5,868 of API-equivalent work last month

https://github.com/dpro10/cookbook-meter
1•dproz•14m ago•0 comments

US Navy sailors try to throw themselves overboard after 250 days at sea

https://www.telegraph.co.uk/world-news/2026/08/13/us-navy-sailors-jump-overboard-after-nine-month...
5•embedding-shape•15m ago•2 comments

The Prompt Sequence I Used to Make a Full Game and Deploy in 2 Days

https://github.com/Glitch-Gaming-Platform/AI-Prompts-For-Game-Development
1•bingewave•16m ago•0 comments

Boom

1•Hidalberto_•17m ago•0 comments

Elon Musk, the Most Famous EV Pioneer, Is Now Leaning into Fossil Fuels

https://www.wsj.com/business/energy-oil/elon-musk-the-worlds-most-famous-ev-pioneer-is-now-leanin...
2•melling•18m ago•0 comments

Researchers find Windows 11 can be hacked with no physical access

https://www.neowin.net/news/researchers-find-windows-11-can-be-hacked-with-no-physical-access-wit...
1•stalkHN24x7•18m ago•0 comments

AHP: Agent Handoff Protocol

https://github.com/DeepJudge-Agent-Handoff-Protocol/agenthandoffprotocol
1•westernmagic•19m ago•0 comments

Show HN: OpenAI network checker using 31 browser and IP signals

https://www.getplus.ai/openai-ip-check
1•lixiaofei•20m ago•0 comments

Fix "Your Connection Is Not Private" in Chrome

https://tlsradar.com/blog/fix-not-private-chrome
1•tlsradar•24m ago•0 comments

From AGI to ASI

https://arxiv.org/abs/2606.12683
1•yarapavan•25m ago•0 comments

Automated Websites, Run by Claude

https://theautomatedoperator.substack.com/p/10-fully-automated-websites-run-by
1•idopmstuff•25m ago•0 comments

Project Palingenesis: A Game of Life That Learns to Remember

https://medium.com/@carmineds.pro/project-palingenesis-a-game-of-life-that-learns-to-remember-26d...
1•cadeos•26m ago•0 comments

GeForce Now on Linux Native App Exits Beta

https://www.phoronix.com/news/GeForce-NOW-Linux-Exits-Beta
2•ErenayDev•26m ago•0 comments

Amazon loses US court ban on Perplexity's AI shopping tools

https://www.reuters.com/business/retail-consumer/amazon-loses-us-court-ban-perplexitys-ai-shoppin...
3•petethomas•27m ago•0 comments

Gakutensoku

https://en.wikipedia.org/wiki/Gakutensoku
2•benbreen•27m 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.