frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

"I somehow managed to import 1.8M books to calibre"

https://old.reddit.com/r/DataHoarder/comments/1tr37eb/i_somehow_managed_to_import_18m_books_to_ca...
1•r721•20s ago•0 comments

Show HN: I launched a micro-gig marketplace and used it to buy my own GTM plan

1•alanhalley•3m ago•0 comments

Auto-review mode is now available in Cursor

https://cursor.com/changelog/auto-review
1•davidgomes•3m ago•0 comments

Delayed Tensor Parallelism for Faster Transformer Inference

https://blog.kog.ai/delayed-tensor-parallelism-for-faster-transformer-inference/
1•matt_d•4m ago•0 comments

Aliens.gov

https://www.whitehouse.gov/aliens/
2•saikatsg•4m ago•1 comments

The Compose Key and –/.XCompose

https://blog.gavide.dev/blog/compose-key-linux
1•gavide•5m ago•0 comments

The Machine God Wants to Talk to You

https://twitter.com/olvrgln/status/2060419489351754049
1•OliverGilan•7m ago•0 comments

SQLite is all you need for durable workflows

https://obeli.sk/blog/sqlite-is-all-you-need-for-durable-workflows/
8•tomasol•8m ago•0 comments

A call for secure coding standards across the Canada government

https://bsky.app/profile/shehackspurple.bsky.social/post/3mmz25aplk52a
1•mooreds•8m ago•0 comments

Nvidia Twitter Post Teasing: A New Era of PC

https://twitter.com/nvidia/status/2060390710797328574
1•HeyMeco•9m ago•1 comments

Multiplayer Harness for Agents and Humans

https://thruwire.ai
1•noashavit•10m ago•0 comments

The Greatest Show on Earth: The Evidence for Evolution

https://en.wikipedia.org/wiki/The_Greatest_Show_on_Earth:_The_Evidence_for_Evolution
1•chistev•11m ago•0 comments

Tesla's AI trainers don't trust its self-driving tech – or its safety stats

https://www.reuters.com/investigations/why-teslas-ai-trainers-dont-trust-its-self-driving-tech-or...
2•grassfedgeek•12m ago•1 comments

What if remote working, not AI, is to blame for weak junior hiring?

https://www.ft.com/content/2205e2d0-50dc-4e80-9bf7-78d0272276c0
3•uxhacker•12m ago•1 comments

Google DeepMind's AlphaProof Nexus solves decades-old math problems

https://the-decoder.com/google-deepminds-alphaproof-nexus-solves-decades-old-math-problems-for-a-...
1•gmays•15m ago•0 comments

Robinhood now lets your AI agents trade stocks

https://techcrunch.com/2026/05/27/robinhood-now-lets-your-ai-agents-trade-stocks/
16•wapasta•16m ago•12 comments

Sample Music with Chrome

https://www.tabsampler.com/
1•asolis0105•16m ago•0 comments

Mosquitoes seem to be getting over insect repellent

https://www.economist.com/science-and-technology/2026/05/28/mosquitoes-seem-to-be-getting-over-in...
1•Brajeshwar•17m ago•1 comments

Windows PC Industry Reacts to MacBook Neo

https://www.macrumors.com/2026/05/29/windows-pc-industry-reacts-to-macbook-neo/
1•tosh•17m ago•1 comments

National Design Service Websites Registry

https://thedreydossier.github.io/NDS_servers_map/
1•ravenical•18m ago•0 comments

Normalized Compression Distance

https://en.wikipedia.org/wiki/Normalized_compression_distance
1•woliveirajr•18m ago•0 comments

Another tech company says it will cut jobs amid pivot to AI

https://www.latimes.com/business/story/2026-05-29/another-tech-company-says-it-will-cut-hundreds-...
1•1vuio0pswjnm7•18m ago•0 comments

Zero Evidence of AI-Related Job Losses

https://www.apollo.com/wealth/the-daily-spark/zero-evidence-of-ai-related-job-losses
2•akyuu•18m ago•0 comments

Generative Unix CTF for RL

https://vmax.ai/team/unix-ctf-procedural-environments-for-unix-competence-reinforcement-learning
1•ronald_raygun•20m ago•0 comments

Open-source security mess: IBM and Red Hat bet $5B and 20k engineers can fix it

https://www.zdnet.com/article/open-source-security-is-a-mess-ibm-and-red-hat-bet-5-billion-to-fix...
1•CrankyBear•20m ago•0 comments

AionOS – self-healing microkernel in Zig (boots on real hardware)

https://github.com/rodancz/aion
1•rodancz•20m ago•0 comments

The origin of quorum systems in distributed computing [pdf]

https://vukolic.com/QuorumsOrigin.pdf
2•fanf2•20m ago•0 comments

Are all BSDs created equally? OpenBSD vs. NetBSD vs. FreeBSD (2018) [video]

https://www.youtube.com/watch?v=AvSPqo3_3vM
2•Caarticles•23m ago•0 comments

To see to it that the forces of Napoleon are driven out of Spain (1809)

https://wellsoc.org/society-member-pages/anecdotes-of-wellington/
2•backuprestore•23m ago•0 comments

Show HN: Train Claude Code's replacement (ds4 and pi and aoe)

https://github.com/njbrake/dotpi/tree/main
1•river_otter•24m ago•0 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.