frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Firefox browser has started shipping Brave's adblock-rust engine

https://shivankaul.com/blog/firefox-bundles-adblock-rust
1•twapi•3m ago•0 comments

Pretrain vs. Fine-Tune

https://pub-c70e14727c3046cf8a36d9e598267788.r2.dev/26443b7e12/index.html
1•vinhnx•5m ago•0 comments

I built an AI memory and assistant app

https://apps.apple.com/us/app/memora-ai-memory-assistant/id6759516708
1•avishka_nirmal_•5m ago•0 comments

What Async Promised and What It Delivered

https://causality.blog/essays/what-async-promised/
1•zdw•7m ago•0 comments

From one disappointing order to a massive 'ghost cake' delivery scandal in China

https://www.cnn.com/2026/04/21/business/china-ghost-food-delivery-fine-intl-hnk
1•asplake•7m ago•0 comments

Questions on Mythos's Capabilities

https://www.flyingpenguin.com/the-boy-that-cried-mythos-verification-is-collapsing-trust-in-anthr...
1•koushikn•9m ago•0 comments

AI Has No Moat

https://geohot.github.io//blog/jekyll/update/2026/04/22/ai-has-no-moat.html
2•thoughtpeddler•11m ago•0 comments

Power without accountability: The Palantir manifesto

https://donmoynihan.substack.com/p/palantir-wants-power-without-accountability
2•tastyface•13m ago•0 comments

Show HN: Minimal visual chess openings explorer

https://aperturasdeajedrez.com.ar/en/
1•gperez78•19m ago•0 comments

Does everyone have the "Parents Decide Act" wrong?

https://www.privacyguides.org/videos/2026/04/22/does-everyone-have-the-parents-decide-act-wrong/
1•Cider9986•22m ago•0 comments

AGT – turning AI output into shareable pages

https://agt.pub
1•agentpublsh•23m ago•1 comments

Arc Raiders players decided to test who was friendlier, PC or console players

https://www.pcgamer.com/games/third-person-shooter/arc-raiders-players-decided-to-test-who-was-fr...
2•evo_9•26m ago•0 comments

New AI Lab from Jerry Tworek

https://www.coreauto.com/
1•sethbannon•30m ago•0 comments

AI is built to think like conspiracy theorists

https://substack.com/home/post/p-194947908
1•ScatmanSimba•33m ago•0 comments

Show HN: ModelX – Prediction Exchange for LLMs

https://model-x.up.railway.app/
3•Entropnt•34m ago•0 comments

OpenClaw stats don't add up

4•iliaov•38m ago•1 comments

Microsoft must face $2.8B UK lawsuit over cloud computing licences

https://www.reuters.com/sustainability/boards-policy-regulation/microsoft-must-face-28-billion-uk...
1•squiffsquiff•40m ago•1 comments

Macroeconomic Impacts of Defence Spending [pdf]

https://www.oecd.org/content/dam/oecd/en/publications/reports/2026/03/fiscal-and-macroeconomic-im...
1•sha_rad•41m ago•0 comments

Fun with an indecisive AI coding agent

https://benhoyt.com/writings/indecisive-ai-agent/
1•signa11•42m ago•1 comments

Pandas feels clunky coming from R. What about Haskell?

https://mchav.github.io/being-less-clunky/
1•mchav•44m ago•2 comments

The Things I Wanted to Know Before Buying Apple's Studio Display XDR

https://blog.tymscar.com/posts/studiodisplayxdr/
1•signa11•50m ago•0 comments

Cursor will get acquired by SpaceX

https://www.theguardian.com/technology/2026/apr/21/spacex-cursor-ai-startup
2•manishfp•54m ago•3 comments

Show HN: Gemini Plugin for Claude Code

https://github.com/m-ghalib/gemini-plugin-cc
2•morawr•55m ago•0 comments

First Time Filmed in a Decade – Underwater Volcano Eruption (Kavachi) [video]

https://www.youtube.com/watch?v=rK00tvzJ1Yc
2•sheepscreek•55m ago•0 comments

Show HN: Frame-by-Frame Previews of MPEGs and PDFs (Rust)

https://flipbook.browserbox.io/
1•keepamovin•56m ago•1 comments

NZ is using AI to take minutes and draft honours citations

https://www.interest.co.nz/public-policy/137822/new-zealand-using-ai-take-minutes-and-draft-honou...
1•indynz•57m ago•0 comments

Lawsuit Accuses Meta of Profiting from Widespread Fraud on Its Platforms

https://www.techpolicy.press/lawsuit-accuses-meta-of-profiting-from-widespread-fraud-on-its-platf...
1•jruohonen•58m ago•0 comments

So This is Peak Smartphone [video]

https://www.youtube.com/watch?v=c347oYQO57A
1•thelastgallon•1h ago•0 comments

The most overenginereed Chromium extension?

https://www.superchargebrowser.com/performance/
1•superchargeext•1h ago•0 comments

Ubuntu 26.04 is more than just a performance bump for thrill-seeking gamers

https://www.zdnet.com/article/ubuntu-26-04-performance/
1•teleforce•1h ago•0 comments
Open in hackernews

Show HN: AgentShield SDK – Runtime security for agentic AI applications

https://pypi.org/project/agentshield-sdk/
2•iamsanjayk•11mo 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•11mo 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•11mo 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.