frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DSL Mania

https://astledsa.substack.com/p/dsl-mania
1•astledsa•3m ago•0 comments

AI cancer cures slowed by chip shortage, says Arm boss

https://www.bbc.com/news/articles/c0m39g7xzevo
1•dabinat•3m ago•0 comments

TeamAI by Tencent

https://github.com/Tencent/teamai-cli
1•handfuloflight•6m ago•0 comments

Hollywood's Box Office Boom Comes with 248M Missing Tickets

https://www.nytimes.com/interactive/2026/09/07/business/media/summer-movies-box-office.html
1•ChrisArchitect•11m ago•1 comments

The Weather Is the Plan: Crossing Lake Michigan

https://sailandsavor.blog/2026/09/07/the-weather-is-the-plan-crossing-lake-michigan-part-2/
1•mekdoonggi•12m ago•0 comments

I Couldn't Play Guitar, So I Spent 6 Years Building a Guitar Robot [video]

https://www.youtube.com/shorts/XgJjdkYOKz8
2•kristianpaul•15m ago•1 comments

The robots.txt user-agent lines that do not name what they look like

https://ai-visibility.lastminutedealshq.com/robots-txt-user-agent-tokens
1•reesecalder•17m ago•0 comments

There's a new "Google Jail" for independent wikis

https://weirdgloop.org/blog/google-jail
1•pizzaiolo•17m ago•0 comments

Giving Minecraft Infinite Time to Beat Itself [video]

https://www.youtube.com/watch?v=9t2fV52jMA8
1•nstents•18m ago•0 comments

Jellyfin 12.0

https://jellyfin.org/posts/jellyfin-release-12.0/
37•0xC0ncord•18m ago•5 comments

Terence Tao – Reflections on the Foundations of Interpretability Workshop

https://www.youtube.com/watch?v=AXlif6z9a2A
1•twoodfin•20m ago•0 comments

Show HN: Froogle – a search engine portal in one HTML file

1•scosman•22m ago•0 comments

Vagrant is approaching EOL. No more "Docker for VMs"

https://developer.hashicorp.com/hcp/docs/vagrant/hcp-vagrant-eol
1•stasge•23m ago•0 comments

Mathematical Cranks

https://en.wikipedia.org/wiki/Mathematical_Cranks
1•_ttg•25m ago•0 comments

DUPR (pickeball rating system) outage: 3rd day and no explanation

https://www.reddit.com/r/Pickleball/comments/1w9iroh/the_dupr_situation_its_bad/
1•gbin•25m ago•0 comments

My business partner sent a 5K vibe-coded PR that he didn't even test

https://ycj.bearblog.dev/ai-again/
2•yhcj•27m ago•2 comments

Anthropic Said to Walk Away from $6B Decart Acquisition

https://www.bloomberg.com/news/articles/2026-09-08/anthropic-said-to-walk-away-from-6-billion-dec...
2•mfiguiere•27m ago•0 comments

Monero is our most-used crypto at NanoGPT

https://reddit.com/r/Monero/comments/1w9my20/monero_is_our_mostused_crypto_at_nanogpt_were_now/
2•Cider9986•27m ago•1 comments

OpenAI and the Wiki Incident

https://thezvi.substack.com/p/openai-and-the-wiki-incident
1•Khaine•28m ago•0 comments

Release pnpm 11.26 · pnpm/pnpm

https://github.com/pnpm/pnpm/releases/tag/v11.26.0
1•kyisaiah47•29m ago•0 comments

Show HN: Termjack – blackjack in the terminal with a built-in strategy trainer

https://github.com/eddietex/termjack
1•esdrasevt•30m ago•1 comments

LLM Guided Evolution for Circle Packing: Breaking 10 Packomania Records for $28

https://arxiv.org/abs/2609.05093
1•practicalsystem•32m ago•0 comments

Show HN: Gorilla Quake

https://github.com/duncancarroll/gorillaquake
2•duncancarroll•34m ago•0 comments

After 9/11, Documents Suggest New Yorkers Were Misled About Air Quality

https://www.nytimes.com/2026/09/07/nyregion/sept-11-air-quality-cancer.html
2•littlexsparkee•39m ago•1 comments

An audit of the Bible and the God in it

https://medium.com/freedomofthought/an-audit-of-the-bible-and-the-god-in-it-88410af31682
2•raynchad•47m ago•2 comments

Divergent betacoronavirus with functional furin cleavage site in S.American bats

https://www.nature.com/articles/s41467-026-77599-6
1•ceejayoz•51m ago•0 comments

World Models from Scratch Part 1: Tokenizing Super Mario Land

https://www.youtube.com/watch?v=KyqrUA25424
2•jadidbourbaki•53m ago•0 comments

A Multiplayer Pong over SSH

https://antics.gg/ssh
2•eric_khun•55m ago•0 comments

Throng – A new way to browse Bluesky

https://throng.cee.wtf/
2•twotwoz•57m ago•1 comments

I've factored the RSA keys of a Certificate Authority from the 90s

https://mcpherrin.ca/2026/09/07/rsa.html
77•ahlCVA•58m ago•12 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.