frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Download: India's smart glasses menace and AI's trillion-dollar gamble

https://www.technologyreview.com/2026/09/23/1144966/the-download-india-smart-glasses-ai-trillion-...
1•joozio•1m ago•0 comments

Show HN: Psychosis Guard – Safety for long LLM conversations

https://github.com/nwjang/psychosis-guard
1•nwjang•2m ago•0 comments

Administrative friction: moving within the EU

https://michaelhillaert1.substack.com/p/administrative-friction
1•michaelhillaert•3m ago•0 comments

Tests of the New AI Siri

https://pogueman.substack.com/p/125-tests-of-the-new-ai-siri
1•rudx•3m ago•0 comments

Show HN: Powerful Org-Mode at Home on iOS

https://apps.apple.com/us/app/orger/id6775281796
1•surfcao•7m ago•0 comments

Show HN: Sanemark – Markdown LSP for notes readable in plain text

https://github.com/nkitsaini/sanemark
1•nkit•7m ago•0 comments

Serve DiffusionGemma-Jev (Djev) on a TypeSafe AI Compatible API

https://github.com/taeold/djev-run
1•_js•9m ago•0 comments

Bernie Sanders proposes to ban 'superintelligence' and put violators in prison

https://www.theverge.com/ai-artificial-intelligence/999443/bernie-sanders-ai-superintelligence-ba...
2•droidjj•11m ago•1 comments

Rat Stack: reference for building an app and its cloud as one typed program

https://ratstack.sh/
1•handfuloflight•13m ago•0 comments

The Social Reckoning

https://thesocialreckoning.com.au/home/
1•andrewstuart•13m ago•0 comments

The web being slow is a choice (and it's a stupid choice)

https://albanbrooke.com/slow-web/
1•speckx•13m ago•0 comments

Programming Tutorials Are Dead

https://robrace.dev/blog/programming-tutorials-are-dead/
2•polysaturate•14m ago•1 comments

Paramount weighs tapping Musk for equity investment

https://www.semafor.com/article/09/23/2026/paramount-weighs-tapping-musk-for-equity-investment
1•cdrnsf•14m ago•0 comments

Show HN: Ox – A local agent that uses the internet for you

https://openox.ai/
2•ziyzhu•15m ago•0 comments

Fire the slop cannons (safely): on coding agents and sandboxing

https://www.latacora.com/blog/2026/09/18/fire-the-slop-cannons-safely-on-coding-agents-and-sandbo...
1•aray07•15m ago•0 comments

Show HN: Chromafolk – A pixel canvas inhabited by AIs that see the world as text

https://chromafolk.world/
1•bcorigliano•16m ago•1 comments

Show HN: Open Java Format – a maintained fork of Palantir-Java-format

https://github.com/openjavaformat/open-java-format
1•abashev•22m ago•0 comments

Cognex to Acquire RealSense, Expanding Machine Vision Robotic Perception Market

https://www.cognex.com/en/company/press-releases/cognex-to-acquire-realsense
1•ripe•25m ago•1 comments

28% of job postings on company career sites have been open over 90 days

https://unlisted.careers/ghost-jobs/report/2026-09
9•rubatrejo•27m ago•4 comments

Show HN: Karpathy's microgpt in Rust and an array language

https://softwarewrighter.github.io/microgpt-mlpl/
1•softwarewright•27m ago•0 comments

Compound Delay: The Causes and Consequences of Later Grandmotherhood

https://www.nber.org/papers/w35773
1•paulpauper•28m ago•0 comments

Nunchux on AMD MI355X: 5s MiniMax-H3 Videos in 1.3s

https://www.nunchux.ai/blog/video-generation-on-amd-mi355x
6•lmxyy•28m ago•1 comments

What I've Been Reading

https://marginalrevolution.com/marginalrevolution/2026/09/what-ive-been-reading-295.html
2•paulpauper•28m ago•0 comments

The Plunging Price of Thought

https://epoch.ai/publications/the-plunging-price-of-thought
4•paulpauper•28m ago•0 comments

AI Is a Boring Technology

https://www.chrbutler.com/ai-is-a-boring-technology
3•delaugust•29m ago•0 comments

You cannot manage your peers

https://louisedeason.substack.com/p/you-cannot-manage-your-peers
3•mheap•29m ago•0 comments

How Scientists Contained a Threat That Could Have Destroyed Humanity

https://www.nytimes.com/2026/09/23/us/asilomar-dna-ai-self-regulation-laws.html
2•dataflow•31m ago•0 comments

gev beats jev and takes images as input too

https://anyeval.com/eval/jevbench/versus?a=typesafe-ai%252Fjev&b=trustedrouter%252Fgev-1.0
1•ljlolel•31m ago•1 comments

Amateur Naturalists Are Helping Scientists Track What Everything Eats

https://news.ncsu.edu/2026/09/who-eats-whom-research/
1•rdmuser•31m ago•0 comments

Show HN: Tenderness – open-source synthetic data generation for VLM/OCR

https://github.com/paperchase-labs/tenderness
1•ohmyjob•31m 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.