frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Quest for eternal dock on Wayland – lambdock (C and GTK4 and Lisp Guile Scheme)

https://jointhefreeworld.org/blog/articles/gnu-linux/quest-for-eternal-dock/index.html
1•jjba23•59s ago•0 comments

Intel Linux Driver Orphaned for Limiting RF Exposure to Humans

https://www.phoronix.com/news/Intel-Linux-SAR-Driver-Orphaned
1•rbanffy•2m ago•0 comments

Making Your Data Ready for Agentic AI

https://martinfowler.com/articles/making-data-ready-for-agentic-ai.html
1•javaeeeee•3m ago•0 comments

AI and Cognitive Science Redefine Knowledge Retention

https://www.technology.org/2026/08/28/how-artificial-intelligence-and-cognitive-science-are-redef...
1•aledevv•5m ago•0 comments

Show HN: Less Paper – native iOS/iPadOS client for Paperless-ngx

https://github.com/plu/less-paper
1•jplunien•5m ago•0 comments

Visa USA Interchange Reimbursement Fees [pdf]

https://usa.visa.com/content/dam/VCOM/download/merchants/visa-usa-interchange-reimbursement-fees.pdf
1•simonebrunozzi•7m ago•0 comments

IBM's new Granite 4.2 models ride the wave of interest in local LLMs

https://arstechnica.com/ai/2026/08/ibms-new-granite-4-2-models-ride-the-wave-of-interest-in-local...
1•rbanffy•10m ago•0 comments

Gilad Bracha on managing dependencies in Smalltalk

https://twitter.com/Gilad_Bracha/status/2093106007618834451
1•tosh•10m ago•0 comments

Difference-in-Differences on a Censored Rating Scale Can Manufacture an Effect

https://arxiv.org/abs/2608.27309
1•sbulaev•12m ago•0 comments

"they are illegal labor practices" Harmeet K. Dhillon comments on H1B abuse

https://twitter.com/AAGDhillon/status/2093135087428878720
1•AnkitGuptaTruth•12m ago•0 comments

The thing that should exist when someone dies

https://www.planwithhestia.com/
1•linkhas•13m ago•2 comments

Ask HN: Built a free minimal daily planner, habit tracker and Pomodoro timer

1•farahhh•15m ago•0 comments

Lost in translation: What I learned trying to speedrun subtitles with LLMs

https://blog.burkert.me/posts/listers/
1•rudolftheone•15m ago•0 comments

What our AI guiding principles mean

https://wagtail.org/blog/what-our-ai-guiding-principles-actually-mean/
1•Bluestein•17m ago•1 comments

Terence Tao – How the top mathematician uses AI [video]

https://www.youtube.com/watch?v=Q8Fkpi18QXU
1•binyu•17m ago•0 comments

Open Source is a cost-allocation system

https://dri.es/open-source-is-a-cost-allocation-system
1•runningmike•18m ago•1 comments

Blood, Toil, Tears, and Sweat (1940)

https://americanliterature.com/history/winston-churchill/speech/blood-toil-tears-and-sweat
2•simonebrunozzi•20m ago•0 comments

Ask HN: Built a free minimal daily planner, habit tracker and Pomodoro timer

1•farahhh•20m ago•0 comments

Making My Terraform AI Friendly

https://www.ivan.codes/blog/making-my-terraform-ai-friendly
2•eandre•20m ago•0 comments

Trana – an iOS wellbeing companion with safety-first AI tools

https://trana.live
2•riovijey•23m ago•0 comments

US officials slam Indian-origin entrepreneur Ankit Gupta over H-1B comments

https://timesofindia.indiatimes.com/world/us/its-your-sense-of-entitlement-us-officials-slam-indi...
1•AnkitGuptaTruth•23m ago•0 comments

Florida Catholics slap down state AG by rejecting religious vaccine exemptions

https://arstechnica.com/health/2026/08/catholic-bishops-tell-florida-theres-no-religious-reason-f...
1•rbanffy•24m ago•0 comments

Skills for writing modern Go code

https://github.com/JetBrains/go-modern-guidelines
1•Nika_84•24m ago•0 comments

Harvard and the Cloudflare Governance Fight

https://www.ft.com/content/a95aebcf-6cfe-418c-8c11-ddf05f3aef4d
1•AnodicElegy•27m ago•1 comments

One LLM agent per trade over construction site photos

https://trpevski.com/blog/ai-construction-inspection-contractors-cannot-argue-with/
1•gorillax•28m ago•0 comments

Repo indexing was doing more harm than good, so we dropped it from our agent

https://thegit.ai/blog/why-we-abandoned-repository-indexing
1•waximabbax•31m ago•1 comments

On the way to automate user manuals and knowledge bases

https://typemill.net/news/on-the-way-to-automate-user-manuals-and-knowledge-bases
2•trendschau•36m ago•0 comments

PEP 805 – Safe Parallel Python – peps.python.org

https://peps.python.org/pep-0805/
1•rbanffy•37m ago•0 comments

12 Sunsets: Exploring Ed Ruscha's Archive

https://12sunsets.getty.edu/
1•gregoire•41m ago•0 comments

Agent loops stop re-reading your codebase on every turn

https://runinfra.ai/inference-api
2•OsamaJaber•48m 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.