frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Froot Loops and a Graphics Card

https://danielmay.co.uk/posts/froot-loops-and-a-graphics-card/
1•danielrmay•1m ago•0 comments

Stick Charts

https://en.wikipedia.org/wiki/Marshall_Islands_stick_chart
1•helterskelter•2m ago•0 comments

Six Selfish Reasons to Have Kids

https://kevinkelly.substack.com/p/six-selfish-reasons-to-have-kids
1•MetaMalone•3m ago•0 comments

Data from a phone becomes a death sentence

https://www.jpost.com/defense-and-tech/article-895697
1•iugtmkbdfil834•7m ago•0 comments

One Agent Sandbox Is Not Enough

https://multikernel.io/2026/03/25/sandlock-mcp-per-tool-sandboxing/
1•kjok•8m ago•0 comments

Researchers tune Casimir force using magnetic fields

https://phys.org/news/2024-06-tune-casimir-magnetic-fields.html
1•bilsbie•8m ago•0 comments

DMA: A Community Hackerspace in Seattle

https://dma.space/
1•bleeperblooper•12m ago•0 comments

YA3 – Yet Another 303 clone, that runs in the browser and as a DAW plugin

https://ya3.surge.sh/
2•stagas•12m ago•0 comments

Synthetic Exercise World – Fictional dataset for cyber exercises and standards

https://github.com/MISP/Synthetic-Exercise-World-Format
1•adulau•14m ago•0 comments

Humanoid Robots Are the Next Phase of the AI Hype Cycle

https://www.bloomberg.com/news/articles/2026-05-08/humanoid-robots-aren-t-as-advanced-as-the-ai-h...
2•wslh•16m ago•1 comments

Lies, damned lies, and Elastic's benchmarks

https://www.gouthamve.dev/lies-damned-lies-and-elastics-benchmarks/
1•gsky•19m ago•0 comments

Stoa – open substrate for agent-readable SaaS (spec, runtime, registry)

https://stoa.tryvext.com/
1•alayton•21m ago•0 comments

Ask HN: Would you use a verified social platform?

2•jacobwiseberg•24m ago•2 comments

Bottleneck – The Strait of Hormuz Crisis Game

https://bottleneck.jakubgornicki.com/en
1•smartmic•26m ago•0 comments

MIT researchers revive 40 year old triangular zipper concept

https://www.tomshardware.com/3d-printing/mit-researchers-revive-40-year-old-triangular-zipper-con...
2•MassPikeMike•28m ago•0 comments

Goblin Hunt

https://blog.leloew.com/goblin-hunt/
1•lysecret•34m ago•0 comments

Court Awards Aylo $4.2M, Not $84M, in Pornhits Piracy Case

https://torrentfreak.com/court-awards-aylo-4-2-million-not-84-million-in-pornhits-piracy-case/
2•Brajeshwar•34m ago•0 comments

Voyager FDS Emulator

https://zanehambly.com/voyager
1•vsrinivas•37m ago•1 comments

COBOL Is the Asbestos of Programming Languages

https://www.wired.com/story/cobol-is-the-asbestos-of-programming-languages/
3•birdculture•37m ago•0 comments

Show HN: Mosaic – arrange iOS icons by color using an evolutionary algorithm

https://github.com/RTiK/mosaic
1•artkh•38m ago•0 comments

Hacking Tesla, so the doors open mechanically in an emergency

https://www.thestar.com/news/canada/i-couldnt-live-with-the-idea-of-my-kids-trapped-in-my-tesla-h...
2•ranit•41m ago•1 comments

Show HN: SimplyBudget, AI Finance Tracker

https://simplybudget.framer.ai/
1•zaintechsavvy•41m ago•0 comments

Show HN: KI im Mittelstand oder KI-Frustration? inkl. Demo

https://christopher-helm.com/einfuehrung-von-ki-im-mittelstand/
1•chelm•43m ago•1 comments

Adventures in Science Fiction Cover Art: Inside the Skull

https://sciencefictionruminations.com/2012/08/31/adventures-in-science-fiction-cover-art-inside-t...
1•jruohonen•44m ago•0 comments

There are only two paths left for software

https://www.a16z.news/p/there-are-only-two-paths-left-for
2•noashavit•45m ago•1 comments

Generative Recommendation for Large-Scale Advertising

https://arxiv.org/abs/2602.22732
1•mfiguiere•46m ago•0 comments

How FAANG Became General Electric

https://danunparsed.com/p/how-faang-became-general-electric
1•sambellll•52m ago•1 comments

ESP-IDF 6 Setup in VS Code: Blink and Debug an ESP32-S3 [video]

https://www.youtube.com/watch?v=y2pIqbZa-iA
1•iamflimflam1•52m ago•0 comments

Crack and Crab

https://languagelog.ldc.upenn.edu/nll/?p=73489
1•jruohonen•53m ago•0 comments

Beat – open-source screenwriting app for Mac/iOS

https://www.beat-app.fi/
1•tekkk•58m 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.