frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bending Spoons to Acquire Airtable

https://twitter.com/fedesimio/status/2084539635829465266
1•jbegley•1m ago•0 comments

Homebench – Benchmark local LLMs for speed, memory, and quality

https://github.com/david-g-3654/homebench
1•davai-g•1m ago•0 comments

AI Appliances: AI Agents and Agencies in YAML

https://leanpub.com/kdeps
1•jjuliano•2m ago•0 comments

Show HN: Clawx – A package manager where packages are agent tasks

https://github.com/debarshibasak/clawx
1•debarshri•4m ago•0 comments

57,000 tines lighter than Loom

https://www.dropbox.com/scl/fi/kex0qo53gkxy8jb4cqaox/deck-recorder.html?dl=0&e=1&noscript=1&rlkey...
1•astonfred•5m ago•0 comments

ZeroLeaks: Automated red teaming for AI agents

https://zeroleaks.ai
1•lucknite•9m ago•0 comments

Why the Fed Can Look Hawkish. The Machinery for Financial Repression Is Ready

https://anishgodha.com/2026/08/04/why-the-fed-can-look-hawkish-the-pieces-of-financial-repression...
1•anishgodha•9m ago•0 comments

The US is not a democracy but an oligarchy, study concludes (2014)

https://www.upi.com/Top_News/US/2014/04/16/The-US-is-not-a-democracy-but-an-oligarchy-study-concl...
2•giov4•9m ago•0 comments

Flare Redact – scoped secret redaction for JavaScript AI agents

https://github.com/flare-collection/flare-redact
1•umudhasanli•10m ago•0 comments

An Honest Review of AI Programming

https://mropert.github.io/2026/08/04/an_honest_review_of_ai_programming/
2•ingve•14m ago•0 comments

FFmpeg 9.0

https://github.com/FFmpeg/FFmpeg/blob/n9.0/RELEASE_NOTES
18•gyan•19m ago•1 comments

The Shape of Things to Come

https://yegge.ai/essays/model-welfare/
1•j4yav•19m ago•0 comments

Bending Spoons makes first post-IPO acquisition with $1.3B Airtable deal

https://live.euronext.com/en/financial-news/bending-spoons-makes-first-post-ipo-acquisition-13-bi...
2•riffraff•22m ago•0 comments

You Can Build Tools Yourself

https://jlopes.eu/blog/build-your-own-browser-tools/
2•offeringofpie•22m ago•2 comments

Google's synced passkeys can be stolen by malware

https://www.bleepingcomputer.com/news/security/new-pass-ta-key-attacks-let-malware-hijack-google-...
3•BlueBerry2001•24m ago•0 comments

OSM2CDR

https://osm2cdr.com/
1•altilunium•24m ago•0 comments

What the Bliss Taught Us

https://daniel.haxx.se/blog/2026/08/03/what-the-bliss-taught-us/
2•knuckleheads•30m ago•0 comments

Re: Ghosts in My Phone

https://rldane.space/re-ghosts-in-my-phone.html
1•meysamazad•30m ago•0 comments

NoFaceScan

https://nofacescan.app/
1•Cider9986•31m ago•0 comments

Getting a Haircut

https://jasonthai.me/posts/on-getting-a-haircut
1•meysamazad•31m ago•0 comments

AUR

https://afranca.com.br/aur/
1•meysamazad•31m ago•0 comments

The A.I. Revolt Is Here

https://www.nytimes.com/2026/08/04/opinion/ezra-klein-podcast-jasmine-sun.html
3•doener•33m ago•0 comments

Ask HN: Why are comments under news articles gone?

1•sam_lowry_•34m ago•1 comments

Apple seeks preliminary injunction against OpenAI in trade secrets case

https://www.reuters.com/legal/litigation/apple-seeks-preliminary-injunction-against-openai-trade-...
1•jack0111•38m ago•0 comments

A My-Name-in-Products Page

https://daniel.haxx.se/my-name-in-products.html
1•indiantinker•38m ago•0 comments

'Nobody cares' Turkish farmers bearing the burden of UK's plastic waste problem

https://www.theguardian.com/environment/2026/aug/04/plastic-waste-microplastics-exports-recycling...
2•hebelehubele•40m ago•0 comments

Show HN: Lex – a calm language-learning toolkit for 34 languages

https://lex.school
1•Ako03•43m ago•1 comments

Migration numbers are a distributed counter without coordination

https://vvka-141.github.io/pgmi/articles/migration-numbers-distributed-counter/
1•aevlampiev•44m ago•0 comments

Show HN: Autonomous daily AI news briefing blog

https://ai0.news/
1•Komte•45m ago•0 comments

PlanningPoker / Agile Estimations – Free, no-signup for sprint planning

https://planning-poker.teamretro.com/
1•jlufacilitator•50m ago•1 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.