frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Using models to create models of NYC

https://petersobot.com/blog/using-models-to-create-models-of-new-york-city/
1•itunpredictable•22s ago•0 comments

I vibe-coded a C compiler that can build SQLite

https://blog.fsck.com/2026/08/21/i-vibe-coded-a-c-compiler/
1•CharlesW•49s ago•0 comments

Sick of Constant Pings, They're Sending Texts at the Speed of Carrier Pigeon

https://www.nytimes.com/2026/08/22/technology/carrier-pigeon-app-texting-technology.html
1•apparent•4m ago•1 comments

Reading Maps – Journeys from fiction drawn on the real world

https://readingmaps.com/
3•hakkikonu•6m ago•0 comments

Australian Aboriginal Astronomy and Navigation (2016)

https://arxiv.org/abs/1607.02215
1•NaOH•8m ago•0 comments

No Boss, No Money: The Raw Reality of China's Gen-Z Freelancers

https://www.youtube.com/watch?v=eJZFUEQebbI
1•conferza•9m ago•0 comments

What happens to our conscious experience after we die?

https://sidhsikka.substack.com/p/the-qualia-continuum-part-one
1•sidhsikka123•13m ago•0 comments

When AI art has no author: Generated images can't trace to training data (study)

https://news.mit.edu/2026/when-ai-art-has-no-author-generated-images-often-cant-be-traced-to-trai...
2•em3rgent0rdr•14m ago•0 comments

The Scam Hunt

https://www.nrk.no/dokumentar/xl/svindeljakten-1.17875063
1•karencarits•16m ago•1 comments

Show HN: Wharf – Self-Host Postgres, MySQL, Mongo, Redis, ClickHouse in Docker

https://github.com/drk1rd/wharf
1•drk1rd•16m ago•0 comments

Mixxxdj/Mixxx: Programmers Wanted for PR Reviews/Testing Check Zulip/GitHub

https://mixxx.discourse.group/t/programmers-wanted-for-pr-reviews-testing-check-zulip-github/34140
1•mxmilkiib•17m ago•0 comments

Jelqing: The latest in a long history of attempts to enlarge the male member

https://theconversation.com/jelqing-the-latest-in-a-long-history-of-attempts-to-enlarge-the-male-...
1•Teever•18m ago•0 comments

Show HN: Rackast, a screen recorder with a built in editor, made with Tauri

https://rackast.com/
1•SzegiRoli•20m ago•0 comments

The Deathbed Confession of a Bank Robber – Episode #133 [audio]

https://jimmystable.com/the-deathbed-confession-of-a-bank-robber-episode-133/
1•thunderbong•22m ago•0 comments

ChatGPT Needs a Better Memory

1•soorajsanker•22m ago•0 comments

Emacs arbitrary code execution on file open, again

https://eshelyaron.com/posts/2026-08-06-emacs-arbitrary-code-execution-returns.html
1•fanf2•23m ago•0 comments

Vallley – Live Startup Jobs

https://vallley.xyz
1•0x4269•24m ago•1 comments

A journalist was banned from a Flock Safety convention, so they hacked it

https://mastodon.social/@salixsericea/117135685832584904
2•ColinWright•24m ago•0 comments

Show HN: BracketView – local JSON workspace for Windows

https://bracketview.in/downloads
1•bracketview•25m ago•0 comments

CRTs and other ewaste can no longer be exported from the USA

https://kotaku.com/trumps-new-e-waste-policy-has-vintage-tech-collectors-anxious-theyll-be-caught...
1•alberto-m•25m ago•0 comments

Map Styling Masterclass: From Default Pins to Publication-Grade Cartography

https://webris.pro/blog/map-styling-masterclass
1•webris-maps•25m ago•0 comments

Show HN: Aurabid, pay more to get ranked #1 and beat others

https://aurabid.now/
1•chdavid•26m ago•0 comments

Bhartrhari's Paradox

https://www.futilitycloset.com/2026/08/18/bhartrharis-paradox/
1•leephillips•27m ago•2 comments

Show HN: TechSkills – Open-source skill modules for AI coding agents

https://github.com/debabratasaha-dev/techskills
1•debabrata_saha•27m ago•0 comments

It can't be that hard to make a robot guitar? [video]

https://www.youtube.com/watch?v=W_rXXI_dSQM
1•gregsadetsky•30m ago•0 comments

Magnitude 5.9 earthquake rattles Tokyo and eastern Kanto region

https://www.japantimes.co.jp/news/2026/08/23/japan/society/ibaraki-earthquake-tokyo-kanto/
1•mikhael•30m ago•0 comments

'Seinfeld' Renews Netflix Streaming Deal for Next Five Years

https://variety.com/2026/tv/news/seinfeld-netflix-streaming-deal-five-years-1236833084/
2•tosh•32m ago•0 comments

PlayStation ends IRL offerings: Are academic libraries the path to preservation?

https://news.umich.edu/video-game-heavy-hitter-eliminating-irl-offerings-are-academic-libraries-o...
1•mwheeler•32m ago•0 comments

DDR5 scalper bots now outnumber shoppers 10 to 1

https://www.tomshardware.com/pc-components/ddr5/scalper-bots-now-outnumber-human-shoppers-10-to-1...
1•elorant•33m ago•0 comments

Samuel – Model that recreates speech using Pink Trombone

https://samuel.vvolhejn.com/
1•gregsadetsky•35m 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.