frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Needle: The benchmark your search engine can't memorize

https://keenable.ai/blog/needle-the-benchmark-your-search-engine-can-t-memorize
1•matt4711•1m ago•0 comments

Corporate political donations shatter record at $646M so far for US midterms

https://www.reuters.com/legal/government/corporate-political-donations-shatter-record-646-million...
2•petethomas•3m ago•0 comments

Outmano

https://outmano.com/
1•operationteam•3m ago•0 comments

Adobe is adding more AI to Photoshop

https://www.theverge.com/tech/985491/adobe-photoshop-ai-assisted-editor-markup
1•Brajeshwar•4m ago•0 comments

Show HN: ThunderPhone v2 – a new architecture for voice AI

https://thunderphone.com
1•kolchinski•4m ago•0 comments

Meta projected to spend $10B on Anthropic AI

https://www.nytimes.com/2026/08/27/technology/meta-anthropic-frenemies.html
1•louiereederson•4m ago•0 comments

The terrifying mechanics of the Nepali flash flood

https://www.economist.com/science-and-technology/2026/08/27/the-terrifying-mechanics-of-the-nepal...
1•vinni2•5m ago•0 comments

Show HN: Git for Designers

https://opacity.com/
1•x7ikmet•7m ago•0 comments

Security Advisory Bulletin 067

https://community.ui.com/releases/Security-Advisory-Bulletin-067/fc4a3488-7c43-4628-8bab-f715e96d...
1•metrofun•7m ago•0 comments

Panic passes Trump tariff refunds back to the Playdate customers who paid them

https://arstechnica.com/gaming/2026/08/panic-refunds-illegal-tariffs-customers-paid-on-its-playda...
1•ndr42•8m ago•0 comments

Ask HN: Ideas for dealing with overly-do-gooder agents

1•zof3•8m ago•0 comments

I just needed a thing that listens

https://ivanlugo.dev/writing/i-just-needed-a-thing-that-listens/
1•tikimcfee•8m ago•0 comments

Relentlessly Optimizing SIMD CSV Parsing

https://j-li.us/blog/relentlessly-optimizing-simd-csv-parsing
1•juliusgeo•9m ago•0 comments

Show HN: Revenue Agents that monitor churn, upsell, and deal risk

https://www.rimplo.com/
1•Hoss-Elkhateeb•10m ago•0 comments

Show HN: Turn every PR into animated architecture diagrams (open-source)

https://github.com/coldteadotai/pr-lens
3•TheAnkurTyagi•11m ago•0 comments

A sandbox is not a permission model for multi-agent systems

https://github.com/agentconnect-md/agentconnect
2•Kkkkki•14m ago•0 comments

Nvidia projects $673B in sales as AI demand widens

https://forgeeks.net/nvidia-673-billion-ai-growth-forecast/
2•kuuuzya•14m ago•0 comments

Show HN: TermDrop – Stream a local file to a remote server with one curl command

https://termdrop.sh/
1•npartin•15m ago•0 comments

OpenAI to start showing ads on ChatGPT's free and Go tiers in India

https://techcrunch.com/2026/08/27/openai-to-start-showing-ads-on-chatgpts-free-and-go-tiers-in-in...
3•Brajeshwar•16m ago•0 comments

Russian-speaking cybercriminals used SpaceX's Cursor AI to hack seven companies

https://www.reuters.com/world/russian-speaking-cybercriminals-used-spacexs-cursor-ai-tool-hack-se...
2•tartoran•17m ago•0 comments

Peter Cullen, Voice of Optimus Prime in 'Transformers,' Dies at 85

https://www.hollywoodreporter.com/movies/movie-news/peter-cullen-optimus-prime-transformers-eeyor...
5•cocacola1•17m ago•1 comments

Nothing Bad Can Happen, It Can Only Good Happen: An Anti-Semantic Analysis (2025)

https://hejon07.substack.com/p/nothing-bad-can-happen-it-can-only
1•debo_•17m ago•0 comments

Star Trek at 60: an exploration of humanity rather than aliens

https://theconversation.com/star-trek-at-60-the-secret-of-this-pioneering-series-was-its-explorat...
3•samizdis•17m ago•0 comments

Decompiling a Nintendo 64 Game in 84 Days

https://blog.chrislewis.au/decompiling-a-nintendo-64-game-in-84-days/
2•knackers•17m ago•0 comments

Show HN: Kupendo – Dating and networking app for the African diaspora

https://www.kupendo.co/
1•GodsentIzzy98•18m ago•1 comments

Immune 'reprogramming' could protect poultry from deadly diseases

https://www.bristol.ac.uk/news/2026/august/immune-reprogramming-could-protect-poultry-from-deadly...
1•gmays•19m ago•0 comments

Bastiat's Candlestick Makers' Petition

http://bastiat.org/en/petition.html
1•umlaut•21m ago•1 comments

"Have Done" Is Signal, "Would Do" Is Noise

https://pawelbrodzinski.substack.com/p/have-done-is-signal-would-do-is-noise
1•flail•23m ago•0 comments

Show HN: Banana Peel – OpenRouter for browser agents

https://bananapeel.com/
1•ygabriel27•23m ago•1 comments

India's campus talent landscape pivots to skill-based hiring: Deloitte India

https://www.deloitte.com/in/en/about/press-room/india-s-campus-talent-landscape-pivots-to-skill-b...
1•prabal97•23m 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.