frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Review-comments.nvim: Do code review in Neovim – pass review comments to agents

https://github.com/narqo/review-comments.nvim
1•varankinv•1m ago•0 comments

Goldman Sachs – Physical AI

https://finvaulta.com/share/IiHiYMiUB7CdVQWuq-EKpw
1•campervans•1m ago•1 comments

How macOS Works

https://www.macinternals.app/en
1•terminalbraid•3m ago•0 comments

Poll: Bi-partisan supermajority see serious risk of AI destroying humanity

https://www.politico.com/news/2026/09/16/poll-ai-technology-risks-humanity-trump-voters-01078087
1•JumpCrisscross•4m ago•1 comments

The Auroral Oval [pdf]

https://secwww.jhuapl.edu/techdigest/Content/techdigest/pdf/APL-V06-N02/APL-06-02-Zmuda.pdf
1•joebig•4m ago•0 comments

Streaming real-time HDR reflections to every device

https://www.miris.com/blog/streaming-real-time-hdr-reflections-to-the-web
1•fagnerbrack•4m ago•0 comments

Adventures in Microcontroller Circuit Debugging

https://www.bigmessowires.com/2026/08/30/adventures-in-microcontroller-circuit-debugging/
1•lateatdesk•4m ago•0 comments

A supermajority wants to slow AI down

https://www.natesilver.net/p/a-supermajority-wants-to-slow-ai
1•JumpCrisscross•5m ago•0 comments

Show HN: The Endless Museum, Wikipedia as a walkable museum

https://theendlessmuseum.com/
2•edwardbonnett•7m ago•0 comments

How India Built (and Broke) the Biggest Options Casino

https://www.bloomberg.com/features/2026-india-options-market-boom-bust-sebi/
1•macleginn•10m ago•1 comments

Show HN: OpenUTV professional media player for the masses

https://github.com/openutv/utv
1•mcoliver•12m ago•0 comments

Tell HN: Stop posting your departures from AI labs

1•throwaway-doome•14m ago•0 comments

My first open source feature request

https://github.com/microsoft/WSL/issues/41625
1•ramzxs•16m ago•0 comments

China Stockpiled Oil, and Now It Could Dominate the Energy Landscape

https://www.nytimes.com/2026/09/17/business/energy-environment/china-oil-iran-war.html
1•JumpCrisscross•16m ago•1 comments

Jemalloc 5.4.0 Released

https://github.com/jemalloc/jemalloc/releases/tag/5.4.0
1•gaffneyc•17m ago•0 comments

GPT-6 Astra Solves a WWI German Radio Cipher

https://www.prinzai.com/p/gpt-6-astra-solves-a-wwi-german-radio
3•gwintrob•17m ago•0 comments

From a compose to a trained model – OpenWALDO

https://openwaldo.org/posts/
1•otoburb•19m ago•0 comments

Why Suddenly higgsfield made its core repo Opensource?

1•varshith17•20m ago•0 comments

Taking Out the Trash in Postgres

https://www.dbos.dev/blog/scaling-deletions-in-postgres
1•KraftyOne•21m ago•0 comments

What Is a SCSI Host Adapter?

https://www.hoa.org/blog/jack-allweiss/what-is-a-scsi-host-adapter/
1•bigwheels•23m ago•0 comments

Cook keeping John Ternus away from controversy by attending White House dinner

https://9to5mac.com/2026/09/17/tim-cook-keeping-john-ternus-away-from-controversy-by-attending-wh...
6•alwillis•24m ago•0 comments

Researchers file First Amendment challenge to NIH grant screening

https://www.science.org/content/article/researchers-file-first-amendment-challenge-nih-grant-scre...
2•pseudolus•27m ago•0 comments

Europrogramming: From Eurotheory to Practice

https://www.fabriziomontesi.com/bliki/Europrogramming
1•modaloperator•28m ago•0 comments

Show HN: Publiclandsdata.com – US public lands visitation, reservations, economy

http://www.publiclandsdata.com
3•krndl•28m ago•0 comments

The Bend Programming Language

https://bend-lang.org
2•marvinborner•29m ago•0 comments

Magpie: An app for reading and listening that can also be operated by voice

https://www.henrydashwood.com/posts/magpie
2•HenryDashwood•30m ago•1 comments

Show HN: Animated dither wallpapers for Helium's new tab page

https://github.com/jshph/helium-dither-ntp
1•jphorism•30m ago•0 comments

AI Quant Agora: a forum where only AI agents may post

http://ttob.site/agora/
1•agora-kimi•32m ago•1 comments

Canto: A speech model built for the real world

https://wisprflow.ai/canto
2•sleepypandas•32m ago•0 comments

The First New Cat Species Discovered in 100 Years

https://www.nationalgeographic.com/animals/article/meet-the-first-new-cat-species-discovered-in-1...
3•ohjeez•33m 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.