frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Window Sweaters

https://github.com/saragordic/window-sweaters
1•nickswalker•16s ago•0 comments

Show HN: I solved a 12yr math problem using AI (formalized; awaiting review) [pdf]

https://raw.githubusercontent.com/kbr-/math-research/3979e0cc0a75dde9b845df7ec8869d033dfcd8d4/pub...
1•kbr-•56s ago•0 comments

Pair programming: still a good idea

https://revise.io/blog/09-15-2026/pair-programming-still-a-good-idea
2•artursapek•1m ago•0 comments

Code of Conduct for MAI Models

https://microsoft.ai/news/mai-code-of-conduct/
2•sergiotapia•1m ago•1 comments

Mapsnap: Automated Georeferencing for Historic Sanborn Insurance Maps

https://www.danvk.org/2026/09/10/mapsnap.html
1•evakhoury•2m ago•0 comments

Tag index for Org Mode blog

https://entropicthoughts.com/tag-index-for-org-mode-blog
2•ibobev•2m ago•0 comments

Spelling the type of a "self" parameter with Reflection

https://quuxplusone.github.io/blog/2026/09/15/self/
1•ibobev•2m ago•0 comments

Small Programming Tricks

https://will-keleher.com/posts/small-programming-tricks-matter/
1•birdculture•4m ago•0 comments

Malleable software: Restoring user agency in a world of locked-down apps

https://www.inkandswitch.com/essay/malleable-software/
1•evakhoury•4m ago•0 comments

Show HN: deadSPEAKER, inc. – horror comedy puzzle game

https://run.world/lthrjckrjckr/deadspeaker-inc
1•lthrjcktjckr•4m ago•0 comments

Testosterone scripts for women rise, along with denials and delays

https://www.reuters.com/business/healthcare-pharmaceuticals/testosterone-scripts-women-rise-along...
1•elo2000•4m ago•0 comments

From Intern to Software Architect

https://chauhankiran.blogspot.com/2026/09/levels.html
2•ibobev•5m ago•0 comments

California attempts to crack down on health spending

https://www.axios.com/2026/09/14/california-health-spending-limits-affordability
1•elo2000•5m ago•0 comments

China tightens control of overseas travel in new law

https://www.ft.com/content/3f2b2172-0c1a-4708-aba2-559eb37eabc8
1•JumpCrisscross•7m ago•0 comments

From a Whiteboard to Nvidia

https://sageox.ai/blog/thoughts-on-nvidia-hf
1•skadamat•9m ago•0 comments

Vapor 5 Beta

https://blog.vapor.codes/posts/vapor-5-beta/
1•frizlab•9m ago•0 comments

Riddlance – A Puzzle Game

https://riddlance.io
1•bravilogy•10m ago•0 comments

India ends free ride for larger transactions on UPI

https://techcrunch.com/2026/09/15/india-ends-free-ride-for-larger-transactions-on-its-ubiquitous-...
2•twapi•10m ago•0 comments

Tracking the slide into authoritarianism wihin the United States of America

https://protectdemocracy.org/threat-tracker/
2•Varelion•11m ago•0 comments

Neuro-Formal Verification: Agentic Language-Agnostic Formal Program Reasoning

https://arxiv.org/abs/2608.21516
3•matt_d•13m ago•0 comments

Rope Splicing

https://en.wikipedia.org/wiki/Rope_splicing
1•ZeljkoS•13m ago•0 comments

Uridium/Fraktion – The Best of the C64 Game, Uridium

https://uridium.homemade.systems/
1•mwenge•14m ago•0 comments

Public Schools' Eye of Sauron

https://www.educationnext.org/public-schools-eye-of-sauron-student-surveillance-merrill-v-marana-...
2•murphyslab•14m ago•2 comments

What made global e-commerce possible (it wasn't encryption)

https://syntheticauth.ai/posts/the-trust-stack-02-nobody-in-the-room
1•zerolayers•15m ago•0 comments

The Siberian Ice Maiden and the Scythian World

https://patrickwyman.substack.com/p/the-siberian-ice-maiden-and-the-scythian
1•NaOH•15m ago•0 comments

Learning to Solve Hard Problems in RL for LLMs by Never Giving Up

https://mnoukhov.github.io/posts/ngu/
1•natolambert•17m ago•0 comments

What every kernel programmer should know about Jump Labels

https://walac.github.io/jumplabels/
2•mococa•17m ago•0 comments

Understanding Is the New Bottleneck

https://www.geoffreylitt.com/2026/07/02/understanding-is-the-new-bottleneck.html
2•evakhoury•17m ago•3 comments

OGAS- National Automated System for Computation

https://en.wikipedia.org/wiki/OGAS
1•danielmorozoff•21m ago•0 comments

Treemapolis – Your disks, as a city you can fly through

https://github.com/smourier/Treemapolis
1•bj-rn•22m 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.