frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Web Push notification suppression bypass (Chrome, Edge, Safari)

https://www.bountyy.fi/blog/sleeping-agent-web-push
1•chinesemango•34s ago•0 comments

We Need a More Serious Discussion About Suicide and AI Chatbots

https://www.techdirt.com/2026/05/18/we-need-a-more-serious-discussion-about-suicide-and-ai-chatbots/
1•cdrnsf•57s ago•0 comments

Purchased Digital Content may become unavailable due content provider licensing

https://twitter.com/WallStreetApes/status/2056231025731408181
2•bilsbie•2m ago•0 comments

Show HN: WldBoost: Burn Worldcoin for Better ChatGPT Prompts

https://wldboost.com
1•nner7210•2m ago•0 comments

How to Have Good Taste

https://www.commonreader.co.uk/p/how-to-have-good-taste
1•simplegeek•3m ago•0 comments

Lemon.li – extension of the charm.li database of car manuals (models thru 2025)

https://lemon-manuals.la/nfo.html
1•sans_souse•3m ago•0 comments

I created a 126K line Android app with AI – the workflow that worked for me

1•sminchev•3m ago•0 comments

The day CSS made me learn algebra again, and I liked it

https://schalkneethling.com/posts/the-day-css-made-me-learn-algebra-and-i-liked-it/
1•speckx•5m ago•0 comments

How to Start a Career When AI Is Doing Your Entry-Level Job

https://every.to/working-overtime/how-to-start-a-career-when-ai-is-doing-your-entry-level-job
1•momentmaker•8m ago•0 comments

Ben Forta - Does Vibe Coding Change My Answer?

https://forta.com/blog/does-vibe-coding-change-my-answer
1•rmason•8m ago•0 comments

How to build an AI helper for your team with Cowork

https://www.theaithinker.com/p/how-to-build-an-ai-helper-for-your
1•adamfaik•8m ago•0 comments

Stack Overflow but for AI Agents

https://app.coauthor.skarp.app
1•ozzynxe•10m ago•1 comments

App to Record phone call on Android 11-16, without root, FOSS, privacy friendly

https://github.com/kitsumed/ShizuCallRecorder
1•kitsumed•13m ago•0 comments

Was my $48K GPU server worth it?

https://rosmine.ai/2026/05/13/was-my-48k-gpu-worth-it/
1•apwheele•14m ago•0 comments

Rankly's Agentic Commerce Protocol Tracker

https://www.tryrankly.com/protocol-tracker
1•rankly_admin•17m ago•1 comments

Grafana says stolen GitHub token allowed attackers to download its codebase

https://www.bleepingcomputer.com/news/security/grafana-says-stolen-github-token-let-hackers-steal...
2•p_stuart82•18m ago•0 comments

The FBI Wants to Buy Nationwide Access to License Plate Readers

https://www.404media.co/the-fbi-wants-to-buy-nationwide-access-to-license-plate-readers/
2•cdrnsf•18m ago•0 comments

Hyperpolyglot Lisp: Common Lisp, Racket, Clojure, Emacs Lisp

https://hyperpolyglot.org/lisp
4•veqq•20m ago•0 comments

Show HN: React-logic – DI and signals – write react without hooks

https://roypeled.github.io/react-logic/
1•halflife•20m ago•0 comments

See how websites might look like in the future

https://www.interactlabs.ai/?auto_open=true
1•Suyash_karn•21m ago•1 comments

Red Hat Delivers On-Premises Cost Telemetry to Meet Data Sovereignty Demands

https://cloudnativenow.com/features/red-hat-delivers-on-premises-cost-telemetry-to-meet-data-sove...
1•CrankyBear•22m ago•0 comments

Session Amnesia: The Hidden Cost of Stateless AI Coding Assistants

https://www.aisterna.com/post/session-amnesia-the-hidden-cost-of-stateless-ai-coding-assistants
1•yanbing•22m ago•0 comments

Silicate-derived calcium as a pathway to low-carbon Portland cement

https://www.nature.com/articles/s44458-026-00056-4
1•PaulHoule•22m ago•0 comments

RSS is not dead. It just changed audience

https://hoeijmakers.net/rss-is-not-dead-it-just-changed-audience/
2•speckx•22m ago•2 comments

Asteroid Mining Simulator 2026

https://play.unity.com/en/games/902159c3-5843-431e-90d1-ae74881006bb/asteroid-mining-simulator-2026
1•merridew22•25m ago•1 comments

Show HN: We missed Winamp, so we built an audio player for macOS

https://www.advanced-research.net/180db
6•surganov•27m ago•0 comments

AI, "Humanity", and Dr. Manhattan Syndrome

https://www.personfamiliar.com/p/ai-humanity-and-dr-manhattan-syndrome
1•gampleman•29m ago•0 comments

I-have-ADHD – Claude Code plugin for ADHD-friendly output

https://github.com/ayghri/i-have-adhd
2•ashitlerferad•29m ago•0 comments

What Is Blackout Poetry? Examples and Inspiration

https://writers.com/what-is-blackout-poetry-examples-and-inspiration
1•Tomte•30m ago•0 comments

Snowboard Kids 2 is 100% Decompiled

https://blog.chrislewis.au/snowboard-kids-2-is-100-decompiled/
1•knackers•30m 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.