frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

BunnyCDN has been silently losing our production files for 15 months

https://old.reddit.com/r/webdev/comments/1sglytg/bunnycdn_has_been_silently_losing_our_production/
1•speckx•11s ago•0 comments

Show HN: Rust based eBook library for Python, with MIT license

https://github.com/arc53/fast-ebook
1•larry-the-agent•1m ago•0 comments

Show HN: Curated list of ~40 AI browser extensions across 9 categories

https://github.com/kklt92/awesome-ai-extensions
1•imvyarqoyzcuem•1m ago•0 comments

The Training Example Lie Bracket

https://pbement.com/posts/lie_brackets/
1•pb1729•4m ago•0 comments

Benchmarking LLMs with Marimo Pair

https://ericmjl.github.io/blog/2026/4/8/benchmarking-llms-with-marimo-pair/
1•akshayka•6m ago•0 comments

MS Aspire – Open-source stack, streamlined

https://aspire.dev/
1•evo_9•6m ago•0 comments

Tip: Use services, not the terminal, to run local backends

https://probablymarcus.com/blocks/2026/04/09/use-os-services-for-your-local-backends.html
1•mrcslws•7m ago•0 comments

Show HN: Linear RNN/Reservoir hybrid generative model, one C file (no deps.)

https://raw.githubusercontent.com/bggb7781-collab/lrnnsmdds/refs/heads/main/lrnnsmdds
1•adinhitlore•9m ago•0 comments

We simulate target market so you can ask anything ±4% vs. real surveys

https://inqvey.com/hn
1•yarasheff•10m ago•0 comments

How to achieve P90 sub-microsecond latency in a C++ FIX engine

https://akinocal1.substack.com/p/how-to-achieve-p90-sub-microsecond
1•klaussilveira•10m ago•0 comments

Show HN: Undocumented Qualcomm mesh topology 802.11 frames

https://david.weekly.org/blog/2026-04-09-orbi-mesh-beacon-topology/
1•dweekly•11m ago•0 comments

AI Speedometer: Real-time AI model speed benchmarks

https://ai-speedometer.oliveowl.xyz/
1•sea-gold•15m ago•1 comments

Show HN: Coderegon Trail – A retro game to help you explore open-source repos

https://www.davidtran.me/coderegon-trail/
2•dtran•16m ago•2 comments

FCC considers retroactive ban on foreign hardware

https://docs.fcc.gov/public/attachments/DOC-420715A1.txt
3•topspin•17m ago•1 comments

Good Writing

https://www.paulgraham.com/goodwriting.html
1•MarlonPro•17m ago•0 comments

The Iran war depleted US weapons. Rebuilding will require China's cooperation

https://www.politico.com/news/2026/04/09/middle-east-war-weapons-china-00864622
2•n1b0m•18m ago•0 comments

CyberAgent moves faster with ChatGPT Enterprise and Codex

https://openai.com/index/cyber-agent
2•surprisetalk•19m ago•0 comments

Camofox-browser: Anti-detection browser for AI agents, powered by Camoufox

https://github.com/jo-inc/camofox-browser
1•luispa•20m ago•0 comments

How a stranger's kind words stayed with a father and daughter

https://text.npr.org/nx-s1-5774524
2•1659447091•25m ago•0 comments

New NextTool Mini Flagship

https://nextoolstore.com/products/mini-flagship-f12-nextool®?srsltid=AfmBOooF5hZ7TFUk05yeE5Po3gmP...
2•nate•27m ago•1 comments

Kagi Product Tips – Customize Your Search Results with URL Redirects

https://blog.kagi.com/tips/redirects
3•treetalker•30m ago•0 comments

goose has a new home – the Agentic AI Foundation (AAIF)

https://goose-docs.ai/blog/2026/04/07/goose-moves-to-aaif/
1•wicket•32m ago•0 comments

Did Airbnb, Medium, Beats, and Flipboard Rip Off Their Logos? (2016)

https://thehustle.co/airbnb-medium-beats-flipboard-logo
2•bookofjoe•35m ago•0 comments

Verification Is the Next Bottleneck in AI-Assisted Development

https://www.opslane.com/blog/verification-bottleneck
1•aray07•35m ago•0 comments

OpenAI looks to take on Anthropic with $100 per month ChatGPT Pro subscriptions

https://www.cnbc.com/2026/04/09/openai-chatgpt-pro-subscription-anthropic-claude-code.html
1•HiroProtagonist•36m ago•0 comments

AI micro-dramas are shaking up Chinese entertainment

https://economist.com/china/2026/04/09/ai-micro-dramas-are-shaking-up-chinese-entertainment
1•andsoitis•39m ago•0 comments

The AI Jobs Blind Spot: Why Job Creation Is the Default

https://substack.norabble.com/p/the-ai-jobs-blind-spot
1•nedruod•40m ago•0 comments

Gitbutler

https://gitbutler.com/
2•handfuloflight•40m ago•0 comments

Perplexity computer is based on the OSS browser use library

https://twitter.com/mamagnus00/status/2042339700082610345
3•whytai•42m ago•0 comments

BYD teams up with KFC to offer 9 minute EV charging

https://electrek.co/2026/04/09/byd-fast-food-giant-offer-9-minute-ev-charging/
3•breve•42m 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.