frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

You can just build any software now

https://mkagenius.substack.com/p/you-can-just-any-build-software-now
1•mkagenius•54s ago•0 comments

A 57-byte x86-64 Linux ELF

https://tmpout.sh/5/3.html
1•Retr0id•1m ago•0 comments

Rendering Shooter

https://drawcall.grok.me/
1•kvark•2m ago•0 comments

Show HN: OutMap – a live map of 235 countries where anyone can place a link

https://outmap.lol
1•ifrosted•3m ago•0 comments

Open source solution for supply chain attacks

https://github.com/ossillate-inc/packj
1•dave17•3m ago•1 comments

It's OK. Do Your Thing. Some (reluctant) thought on our AI moment

https://buttondown.com/carlton/archive/its-ok-do-your-thing/
1•speckx•4m ago•0 comments

Digitalocean Control Panel and API Down

https://status.digitalocean.com/
2•wilsonfiifi•5m ago•0 comments

A ghostly ribbon of stars reveals hidden dark matter

https://www.sciencedaily.com/releases/2026/08/260823015000.htm
1•samso26•5m ago•0 comments

Digitalocean Cloud Control Panel and API Incident Ongoing

https://status.digitalocean.com/incidents/4qwm6pzlx1z3
3•microsoftedging•6m ago•1 comments

The Eminem Show's 24th Year Review

https://medium.com/theentertainmentbreakdown/theeminemshows20thanniversaryreview-31bc4c623ea
1•raynchad•9m ago•0 comments

Show HN: Kern – container and resource runtime in a 1.5 MB binary, no daemon

https://github.com/getkern/kern
1•realexweb•10m ago•0 comments

RayNeo creates new type of smart glasses with Heads Up Display and no camera

https://www.rayneo.com/pages/rayneo-io-ai-glasses
2•ck2•11m ago•4 comments

A technology that counts reps and scores muscle failure from the Apple Watch

1•baraa_bilal•12m ago•0 comments

We Optimized the Qwen 3.6 Model for Our Junie Agent

https://blog.jetbrains.com/junie/2026/08/qwen-for-junie/
1•svieira•13m ago•0 comments

StateM: Stateful Control for Long-Horizon Agents

https://github.com/henryqin1997/statem
7•johntrob14•13m ago•1 comments

Your "File" Menu Isn't About Files

https://adam.farkas.pro/your-file-menu-isnt-about-files/
3•b__d•13m ago•0 comments

Visualizing Binary Files

https://movq.de/blog/postings/2026-08-05/0/POSTING-en.html
2•zdw•14m ago•1 comments

Redacted Script

https://fonts.google.com/specimen/Redacted+Script
1•gaws•15m ago•0 comments

Please keep HN clean so it doesn't get blocked at school

http://crystalpvp.ru/boze/
1•Preston67•15m ago•1 comments

DHS: Fee for Certain H-1B Petitions [pdf]

https://public-inspection.federalregister.gov/2026-17324.pdf
1•impish9208•17m ago•0 comments

Technology Is Over

https://www.taylorforeman.com/p/technology-is-over
1•michael0church•17m ago•0 comments

ICE officers with electric-shock gloves

https://www.theguardian.com/us-news/2026/aug/24/ice-officers-electric-shock-gloves
5•Alien1Being•19m ago•0 comments

What Is a Syslog Server?

https://blog.greencloudvps.com/what-is-a-syslog-server.php
3•theanonymousone•19m ago•3 comments

Em Dash Is Fine – It Is AI That Sucks

https://blog.torh.net/2026/08/24/em-dash-is-fine-it-is-ai-that-sucks/
2•speckx•20m ago•0 comments

Gitwal

https://gitwal.io/
3•tosh•20m ago•0 comments

ThisDay

https://this-day.app
2•acudell•22m ago•0 comments

Recreation of Battle of Cannae (Hannibal vs. Rome) in Unreal Engine

https://www.youtube.com/watch?v=MxHjUcVNFEg
2•lifeisstillgood•22m ago•0 comments

Linktree is DEAD Use myabout.page

https://myabout.page/
2•ajonline•22m ago•0 comments

Show HN: I built a lite LPU that can do inference on Karpathy's MicroGPT

https://www.lpulite.com
3•sakshambatraa•23m ago•1 comments

The Economics of the Intelligence Frontier

https://www.worldgov.org/frontier.html
3•seanlinehan•25m 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.