frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Listen to my free techno songs you freeloading tech hobo's

https://soundcloud.com/user-111956257
1•minimaxa•56s ago•0 comments

Jobs to Be Done

https://stratnotes.substack.com/p/jobs-to-be-done
2•swastikanayak•1m ago•0 comments

N8N in Production: Lead Qualification That Works

https://trpevski.com/blog/n8n-in-production-lead-qualification-that-works/
1•dzugumot•3m ago•0 comments

Computing Graph Dominators

https://neugierig.org/software/blog/2026/08/dominators.html
1•fanf2•7m ago•0 comments

Show HN: UltimateXO – Open-Source Ultimate Tic-Tac-Toe Web Game

https://ultimatexo.com/
1•mekky16•10m ago•0 comments

People with Stronger Psychopathic Traits Carry Certain Gut Bacteria

https://www.rathbiotaclan.com/study-reveals-microbes-in-your-gut-and-mouth-may-track-psychopathic...
1•Akasci•13m ago•0 comments

Secondhand UK and Irish booksellers suspect AI firms behind strange bulk orders

https://www.theguardian.com/technology/2026/aug/15/uk-ireland-booksellers-suspect-ai-companies-bu...
1•mellosouls•14m ago•0 comments

DX12.0 and Vulkan 1.0 were designed for ~15 year old GPUs

https://twitter.com/SebAaltonen/status/2087870023557697856
1•ksec•22m ago•0 comments

One of the Most Important Policy Decisions of Our Lifetime

https://www.nytimes.com/2026/08/14/opinion/ai-policy-tax-technology.html
2•reasonableklout•28m ago•0 comments

Show HN: HN Without AI Stories

https://hnnoai.readpipe.org/
5•zorked•32m ago•1 comments

manim: Framework for Creating Mathematical Animations

https://github.com/manimCommunity/manim
1•pykello•35m ago•0 comments

Coreboot Overclocking Arrives on MSI's Z690 and Z790

https://hwbusters.com/news/coreboot-overclocking-arrives-on-msis-z690-and-z790-experimental-and-u...
1•pietrushnic•35m ago•1 comments

No Plan Survives Contact with the Enemy (Reality)

https://blog.exe.dev/planning
1•tosh•35m ago•0 comments

Causation in Climate Change: ICJ)'S Climate Change Advisory Opinion Re Tort Law

https://opiniojuris.org/2026/03/03/causation-in-climate-change-the-international-court-of-justice...
1•bryanrasmussen•35m ago•1 comments

Healthcare Palantir Prototype

https://tmg.marcokittel.de
1•evlute•36m ago•1 comments

Show HN: Chemistry AI – step-by-step chemistry solver

https://chemistryai.chat
1•realisticaigen•38m ago•0 comments

Jason Arday, professor at centre of Cambridge plagiarism row, found dead

https://www.theguardian.com/uk-news/2026/aug/14/jason-arday-found-dead-after-resigning-from-cambr...
2•jimnotgym•38m ago•0 comments

Show HN: Homelander – free desktop app that applies for apartments in Germany

https://www.youtube.com/watch?v=udNWQz3WNBI
1•b1z0n•39m ago•0 comments

Charity and Sylvia: The Extraordinary Claims of Rachel Hope Cleves

https://buttondown.com/thene/archive/charity-and-sylvia-the-extraordinary-claims-of/
1•bryanrasmussen•40m ago•0 comments

OpenAI updates its Privacy Policy to include ads

3•1equalsequals1•40m ago•1 comments

Qwen3.8 27B Coming to Cerebras

https://twitter.com/cerebras/status/2088419572416147582
1•Moduke•45m ago•1 comments

Django is moving to an annual release cycle

https://www.djangoproject.com/weblog/2026/aug/10/annual-release-cycle/
3•JodieBenitez•49m ago•0 comments

Using GCC's Nested Functions with Wide Pointers and No Trampolines II

https://uecker.codeberg.page/2026-07-14.html
1•uecker•50m ago•0 comments

Show HN: Sandbox the install step of any NPM package

https://www.npmjs.com/package/@kenwea/mcp
1•Myzura•50m ago•0 comments

State media control influences large language models

https://www.nature.com/articles/s41586-026-10506-7
1•theanonymousone•55m ago•0 comments

René Goscinny

https://en.wikipedia.org/wiki/Ren%C3%A9_Goscinny
2•wolfi1•59m ago•0 comments

Copyright Is Brain Damage

https://www.youtube.com/watch?v=XO9FKQAxWZc
2•theanonymousone•59m ago•0 comments

Tell HN: My open-source form builder has reached ~7k registered users

1•darkhorse13•1h ago•0 comments

Tropical Storm Lala forecast to bring hurricane conditions to Hawaii Saturday

https://www.hawaiinewsnow.com/2026/08/15/tropical-storm-lala-forecast-bring-hurricane-conditions-...
1•saisrirampur•1h ago•0 comments

High-performance single-GPU inference for selected model checkpoints and GPUs

https://github.com/Neroued/ninfer
1•davedx•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•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.