frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Can AI help solve the peer-review crisis? Here are its promises and pitfalls

https://www.science.org/content/article/can-ai-help-solve-peer-review-crisis-here-are-its-promise...
1•thinkingemote•55s ago•0 comments

The Hardest Math Book Every Programmer Needs

https://www.youtube.com/watch?v=I_pzpg1ukkI
1•Betelbuddy•4m ago•0 comments

GPUI Kit v0.6.0

https://github.com/longbridge/gpui-kit/releases/tag/v0.6.0
1•droidjj•5m ago•0 comments

Global warming will exceed limit set in 2015, UN says

https://apnews.com/article/climate-change-threshold-catastrophe-overshoot-un-warming-1b2d126e8359...
2•anigbrowl•7m ago•0 comments

GPT-6 Astra makes major gains in the Artificial Analysis Coding Agent Index

https://artificialanalysis.ai/articles/benchmarking-gpt-6-astra
6•wertyk•8m ago•1 comments

Six Systems That Save You Months

https://khalilstemmler.com/articles/six-systems-that-save-you-months/
1•stemmlerjs•9m ago•0 comments

The Future of Self-Evolving Software

https://ateliti99.substack.com/p/the-future-of-self-evolving-software
1•olirex99•15m ago•1 comments

AI Financial Advisor – FiscalAI· Streamlit

https://thefiscalai.streamlit.app
1•theadidev•16m ago•0 comments

Open-source pixel-art editor

https://github.com/Josiah-Turnquist/myrling-sprite-editorIn-BrowserDemo:https://josiah-turnquist....
1•josiahturnq•17m ago•2 comments

Record baby boom brings heaviest parrot back from the brink

https://www.nbcnews.com/world/asia/kakapo-parrot-baby-boom-worlds-heaviest-bird-rise-new-zealand-...
4•Teever•17m ago•0 comments

Keycheats.com – Offical Reseller for All Cheats Products|Cheap Pricing

https://keycheats.com/
1•bursgames•18m ago•0 comments

Show HN: We built client-side AST SEO audits for a Next.js CMS to avoid LLM lag

https://github.com/nextblock-cms/nextblock
2•nextblock•20m ago•0 comments

Show HN: Aidcrew a team of coding agents, each on its own model, in one terminal

https://github.com/antoniociccia/aidcrew
1•arkhan89•22m ago•0 comments

AI Norms and Values, Part 2 of 3: AI for Honeycomb Engineering

https://www.honeycomb.io/blog/ai-norms-values-part-2-ai-honeycomb-engineering
1•mooreds•24m ago•0 comments

ICE Gave New Hires Access to Restricted Info on Palantir App

https://theintercept.com/2026/09/03/ice-palantir-privacy-personal-info-access/
3•cdrnsf•24m ago•0 comments

Omarchy Hyprland – external monitor multi-GPU configuration

https://publish.obsidian.md/gslf/%F0%9F%8C%90+WEBSITE/%F0%9F%93%9D+Journal/%F0%9F%92%BB+DEV/Omarc...
2•gioeleslfierro•25m ago•0 comments

Who Eats Memory Costs

https://streetsignal.substack.com/p/who-eats-memory-costs-2a1
1•gmays•25m ago•0 comments

GPT-6 Astra Achieves SOTA on ARC-AGI

https://twitter.com/arcprize/status/2095597602545025138
2•porridgeraisin•27m ago•0 comments

Hi Reddit I'm Wile E. Coyote. I'm taking on ACME. AMA

https://www.reddit.com/r/movies/comments/1w58qjb/hi_reddit_im_wile_e_coyote_im_taking_on_acme_ama/
1•bthallplz•31m ago•0 comments

Transformation Tracker

https://digitaleconomy.stanford.edu/project/indicators/transformation-tracker/
1•gmays•31m ago•0 comments

One Year Suspension for Steve Balmer

https://www.espn.com/nba/story/_/id/49806356/nba-announces-punishments-clippers-kawhi-probe
3•Betelbuddy•31m ago•0 comments

Using GPT-6 Astra – OpenAI Docs

https://developers.openai.com/api/docs/guides/latest-model
1•tekacs•32m ago•0 comments

France had its hottest summer since records began over a century ago

https://www.euronews.com/my-europe/2026/09/03/france-had-its-hottest-summer-since-records-began-o...
5•geox•32m ago•0 comments

Three-LLM: Three.js-based WebGPU LLM inference engine

https://three-llm.ben3d.ca
4•bhouston•33m ago•0 comments

Word42 – A Wordprocessor

https://github.com/office-42/word42
2•roschdal•33m ago•0 comments

OpenAI's GPT-6 Astra on ARC-AGI-3

https://arcprize.org/blog/astra
16•vignesh_warar•35m ago•4 comments

SF's Tech Right Debates the Ideal Dictator

https://bayareacurrent.com/sfs-tech-caesar/
2•tastyface•35m ago•0 comments

Claude Fable 5.1 decoded a centuries-old royalist message hidden in since 1653

https://the-decoder.com/claude-fable-5-1-decoded-a-centuries-old-royalist-message-hidden-in-plain...
3•Vaslo•36m ago•0 comments

GPT 6 Astra Vibe Check

https://every.to/vibe-check/gpt-6-astra-vibe-check
1•ScotterC•36m ago•0 comments

Are others seeing Google's ReCAPCHA rejecting Firefox users?

4•Animats•41m ago•2 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.