frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Situs Inversus

https://en.wikipedia.org/wiki/Situs_inversus
1•sjclemmy•23s ago•0 comments

Show HN: I put 20 ad slots under a Harberger tax

https://anyonecanbuy.com/
1•nadermx•42s ago•0 comments

Show HN: ArtGram – a notation system for abstract paintings

https://artgraph.co/artgram
1•rituraj•5m ago•0 comments

AI's memory crunch is coming for Android apps

https://techcrunch.com/2026/08/27/ais-memory-crunch-is-coming-for-android-apps/
1•627467•5m ago•0 comments

AI Engineer Notebooks – free, framework-free RAG/agents/evals on Colab

https://github.com/calmrocks/ai-engineer-notebooks
1•calmrocks•6m ago•0 comments

I built a pure-Rust headless browser. No Chromium. No V8

https://www.reddit.com/r/webscraping/comments/1w07jov/i_built_a_purerust_headless_browser_no_chro...
1•syumei•6m ago•0 comments

Copyrightability of LLM-generated code: Can we license "vibe code"?

https://fsfe.org/news/2026/news-20260825-01.en.html
1•WhyNotHugo•7m ago•0 comments

Intel previews future instruction-set documentaton

https://intel.github.io/SDM/announcement/2026/08/20/announce-preview.html
2•mmcloughlin•7m ago•0 comments

Outbid case study: auction became the ad (2026)

https://medium.com/@threadotter/outbid-case-study-auction-became-the-ad-2026-719bf85c3c7d
1•threadotter•8m ago•0 comments

Four reproducible vLLM parser failures that return 200 with the wrong tool call

https://ingot.tools/reports/parser-silent-failure
1•glitch003•10m ago•0 comments

Anomalyco/OpenCode Review

https://github.com/anomalyco/opencode
1•paretolaw•12m ago•1 comments

Show HN: IQ Routing – route every call to the cheapest model that holds quality

https://iq-routing.com
1•Georgeavvila•12m ago•0 comments

Show HN: Per Diem, a daily dice game like Balatro

https://perdiem.loch.tools
1•lwansbrough•12m ago•0 comments

Storm Summoner, a MIDI controller for effects pedals

https://kabaragoya.com/products/storm-summoner
1•peteforde•14m ago•0 comments

The Minolta SR-T I kept for myself

https://robertmay.photography/journal/the-minolta-sr-t-i-kept-for-myself
1•robotmay•15m ago•0 comments

Agent Swarms Are a Distributed Systems Problem

https://www.trychroma.com/engineering/transactions
1•rescrv•19m ago•1 comments

Ask HN: How does your preferred AI handle questions we are not allowed to ask?

1•arionhardison•19m ago•0 comments

The Weed Got Too Strong

https://www.nytimes.com/2026/08/24/opinion/weed-marijuna-children-regulation.html
3•bookofjoe•22m ago•2 comments

The Trump administration's March to the Spoils System

https://www.contrariannews.org/p/the-trump-administrations-march-to
1•petethomas•22m ago•0 comments

Model Success Rate May Count the Wrong Runs

https://topicqueue.substack.com/p/four-new-benchmarks-say-your-success
1•DISCURSIVE•22m ago•0 comments

Tim O'Reilly – Writing with AI

https://oreillyradar.substack.com/p/writing-with-ai
1•rmason•24m ago•0 comments

Simple Machine

https://en.wikipedia.org/wiki/Simple_machine
2•ogogmad•25m ago•0 comments

Selected by Mel Brooks (20 titles): 100 Years at the Movies

https://www.americancinematheque.com/series/programmed-by-mel-brooks-100-years-at-the-movies/
1•mdp2021•25m ago•1 comments

Why coding agents stop early on long-horizon software tasks

https://factory.com/news/what-it-takes-for-coding-agents-to-complete-large-software-tasks
2•favoboa•26m ago•0 comments

Show HN: Webtoolio dev tools that run entirely in the browser, nothing uploaded

https://webtoolio.org/
1•deezduudez•27m ago•0 comments

Show HN: A shop that makes it hard to buy things

https://earnyourdescent.com/
1•rexfuzzle•28m ago•0 comments

Bill Gates proposes major limits on AI development

https://www.cnn.com/2026/08/26/business/bill-gates-wants-limits-on-ai
1•rmason•28m ago•2 comments

OpenAI Is Developing a 'Persistent' AI Agent

https://www.wired.com/story/openai-is-developing-a-persistent-ai-agent/
2•thm•29m ago•0 comments

YouTube Shopping Creators can now tag Amazon products

https://blog.youtube/news-and-events/youtube-shopping-amazon-creator-affiliates/
2•thm•29m ago•0 comments

Show HN: ChessRabbit – The AI Chess Analysis Platform

https://chessrabbit.com
1•ahmedhosssam•30m 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.