frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A blueprint for formal verification of Apple corecrypto

https://security.apple.com/blog/formal-verification-corecrypto/
1•hasheddan•53s ago•0 comments

Greeter terminal for bash, zsh, fish, PowerShell, Linux, macOS, Windows

https://github.com/clefspear/starcommand
1•peetabread•3m ago•0 comments

SteelSpine: Replay tool for debugging AI agents

https://steelspine.ai
1•jeremyfelps•4m ago•1 comments

Interpreting Polygenic Prediction of Cognitive Ability

https://icajournal.scholasticahq.com/article/158459-interpreting-polygenic-prediction-of-cognitiv...
1•gmays•5m ago•0 comments

What I've Learned from Agentic Design

https://chrislachance.com/what-ive-learned-from-agentic-design/
1•speckx•6m ago•0 comments

Bun's unreleased Rust port has 13,365 unsafe blocks

https://bun.com/bun-unsafe-audit
4•helloplanets•6m ago•0 comments

Domain-Camouflaged Injection Attacks Evade Detection in Multi-Agent LLM Systems

https://arxiv.org/abs/2605.22001
1•sbulaev•7m ago•0 comments

Packj flags malicious/risky open-source packages

https://github.com/ossillate-inc/packj
2•my2c•11m ago•0 comments

The ten steps towards a dictatorship

https://nonogra.ph/the-ten-steps-towards-a-dictatorship-05-22-2026
3•han1•12m ago•0 comments

Marketing sites don't need a CMS anymore

https://frigade.com/blog/from-framer-back-to-code
1•pancomplex•13m ago•0 comments

How did Asterix and Obelix learn to speak fluent Hindi? (2019)

https://www.indulgexpress.com/cover/2019/Apr/05/were-going-desi-by-toutatis-how-did-asterix-and-o...
1•ripe•16m ago•1 comments

Show HN: Generate free golf yardage books from OpenStreetMap data

https://npilk.github.io/openyardage-web/
1•npilk•16m ago•0 comments

Batty: A Multiplexer Built on Ghostty

https://batty.sstools.co/
1•smallsharptools•18m ago•1 comments

NYSE Compression Case Study

https://code.kx.com/q/kb/compression/fsicasestudy/
1•tosh•19m ago•0 comments

God Is Technology (2010)

https://archive.org/download/MitchellHeismanSuicideNote/Mitchell%20Heisman%20-%20Suicide%20Note.p...
2•senkora•19m ago•1 comments

Show HN: macOS utility to record and playback mouse, keyboard events

https://github.com/uAIex/KeyMouseRecorder
2•harr01•19m ago•0 comments

Why the NTSB Shut Down Their Plane Crash Report Archive [video]

https://www.youtube.com/watch?v=phjRQckjVJc
4•cratermoon•25m ago•1 comments

Interview with the Engineer of Uruky, a Private Search Engine

https://theprivacydad.com/interview-with-the-engineer-of-uruky-a-private-search-engine/
1•Brajeshwar•26m ago•0 comments

OpenCode and Cursor's Composer 2.5

https://cursor-api.standardagents.ai
5•lcavalcare•27m ago•0 comments

Google Updates Android Bug Bounty Program with $1.5M Offer

https://www.forbes.com/sites/daveywinder/2026/05/05/google-to-pay-15-million-for-pixel-phone-secu...
3•Cider9986•29m ago•0 comments

Herasight found embryo with potential IQ score in 99.99th percentile

https://twitter.com/GeneSmi96946389/status/2057860062039920682
2•gmays•29m ago•0 comments

Schwung – open up your Ableton Move

https://schwung.dev/
1•Tomte•30m ago•0 comments

Shortcuts Playground: Create Apple Shortcuts with Claude Code/Codex

https://www.macstories.net/stories/introducing-shortcuts-playground/
1•logged4upvoting•32m ago•0 comments

60 Percent of Grades at Harvard Were A's. Enough Is Enough

https://www.nytimes.com/2026/05/21/opinion/harvard-easy-a-grades.html
2•paulpauper•32m ago•4 comments

AI as a Design Medium

https://www.harvarddesignmagazine.org/articles/ai-as-a-design-medium-rodenbeck/
2•CharlesW•32m ago•0 comments

Secure Boot and Microsoft CA Rollover – a heads-up for distributions

https://blog.einval.com/2026/05/22#secure_boot_ca_rollover
2•speckx•32m ago•0 comments

Social Science at the NSF

https://www.abundanceandgrowth.org/p/social-science-at-the-nsf
1•paulpauper•33m ago•0 comments

Frontier labs don't use most AI compute (yet)

https://epochai.substack.com/p/frontier-labs-dont-use-most-ai-compute
1•gmays•33m ago•0 comments

Meta Released a Reddit-Like App Built Around Facebook Groups

https://firethering.com/meta-forum-reddit-like-app-facebook-groups/
3•steveharing1•33m ago•0 comments

At Tyler Cowen University, No One Would Have Tenure

https://www.bloomberg.com/opinion/articles/2021-07-05/what-would-your-fantasy-university-look-like
1•paulpauper•33m 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.