frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bounded Agents: Delegation Security for Multi-Agent AI Systems

https://arxiv.org/abs/2608.15888
1•xmuruaga•3m ago•0 comments

Google gives publishers a new way to fight AI-driven traffic losses

https://techcrunch.com/2026/08/20/google-gives-publishers-a-new-way-to-fight-ai-driven-traffic-lo...
2•jnord•8m ago•0 comments

We Changed Travel Forever

https://hotels.cooveb.com
1•sshinde•9m ago•1 comments

Scientists tracked kids for 8 years – the screen time result was unexpected

https://www.sciencedaily.com/releases/2026/08/260815064803.htm
1•jnord•9m ago•0 comments

Emacs 31.1 will release on 8/24

https://github.com/emacs-mirror/emacs/blob/062dcd2aead00c3b47c14ff5b6c40313f7a775f5/etc/HISTORY
5•birdculture•15m ago•0 comments

Bulwark Gateway – fail-closed security proxy for LLM agents (self-hosted)

https://github.com/red-orbita/bulwark-gateway
1•rokitoh•17m ago•0 comments

Engaging with AI for serious maths research – Norman Wildberger

https://www.youtube.com/watch?v=Q7d2KMdVp9E
1•nyc111•17m ago•0 comments

The Defense-Tech Bubble Is Headed for Consolidation

https://fox-and-lion.vercel.app/analysis/the-defense-tech-bubble-is-headed-for-consolidation
2•bdjsmsm•21m ago•0 comments

SQLite plans can drastically differ with CTE and temp table

https://askrecall.dev/blog/44-minute-ci-job/
1•vira28•22m ago•0 comments

SQLite for Everything

https://joecode.com/2026-08-19-sqlite3/
1•mpweiher•23m ago•0 comments

Survival Guide for a Censored Internet

https://akitaonrails.com/en/2026/08/19/survival-guide-for-a-censored-internet/
1•g0xA52A2A•26m ago•0 comments

Compilation of Elon Musk promising self driving Tesla 'next year' for 10 years

https://www.reddit.com/r/EnoughMuskSpam/s/ROk3lHIdqQ
3•fsuts•27m ago•1 comments

Inadvertent Context Leakage in Language Models

https://arxiv.org/abs/2608.19857
1•sbulaev•28m ago•0 comments

Voluntary attention regulates acute immune responses in humans

https://www.nature.com/articles/s41562-026-02541-1
1•morsch•31m ago•0 comments

America Inc has a tight grip on allied governments

https://www.economist.com/business/2026/08/16/america-inc-has-a-tight-grip-on-allied-governments
1•edward•32m ago•0 comments

Bitcoin's short squeeze traced to a Treasury bond buyback decision

https://davidebtc186.substack.com/p/bitcoin-just-had-its-biggest-squeeze
1•shadowbip•37m ago•0 comments

Only one type of lawyer will survive the AI wipeout

https://www.afr.com/work-and-careers/workplace/judges-may-be-the-only-survivors-of-law-s-ai-carna...
2•asdefghyk•39m ago•1 comments

Writing with AI Is Stupid

https://lambdaland.org/posts/2026-08-07-ai-writing-stupid/
4•frizlab•43m ago•3 comments

Better Batteries

https://matklad.github.io/2026/08/20/better-batteries.html
1•olexsmir•46m ago•0 comments

MOQ Video Streaming for Robots, Drones, and Embedded Devices

https://www.red5.net/blog/moq-video-streaming-for-robots-drones-and-embedded-devices/
1•mondainx•57m ago•0 comments

Claude Opus 4.6 returned nothing 900/900 times. Should agents retry?

https://zenodo.org/records/21696066
5•aiagenttester•1h ago•1 comments

Why to Start a Startup in a Bad Economy (2008)

https://paulgraham.com/badeconomy.html
1•tosh•1h ago•0 comments

Stop Clutching Your FPV Drones

https://foxandlion.pub/analysis/stop-clutching-your-fpv-drones
4•ewfeber•1h ago•0 comments

El Niño set to be 'strongest in living memory', says Met Office

https://www.bbc.co.uk/weather/articles/c3ekg93vjz9o
2•iamben•1h ago•0 comments

ISO 24495-1:2023 Plain language

https://www.iso.org/standard/78907.html
2•Bluestein•1h ago•0 comments

Show HN: Meg – I processed 259M nodes on my laptop using 6.91MB RAM

https://github.com/blueray313164-a11y/Quantum-Drive-Solver
1•blueray313164•1h ago•0 comments

See Through Walls with WiFi

https://github.com/ruvnet/RuView
1•chunkyslink•1h ago•1 comments

The Lost Treasure of Sid Meier's Pirates

https://remapradio.com/articles/the-lost-treasure-of-sid-meiers-pirates/
34•spankibalt•1h ago•9 comments

Going Freestanding

https://antonz.org/going-freestanding/
3•ingve•1h ago•0 comments

Small Models Can Introspect, Too (2025)

https://vgel.me/posts/qwen-introspection/
2•networked•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.