frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Moment the Atlantic Filled a Desert [video]

https://www.youtube.com/watch?v=XQURgDXevf0
1•ksec•49s ago•0 comments

"Why did ANOVA fall out of fashion?"

https://statmodeling.stat.columbia.edu/2026/08/29/why-did-anova-fall-out-of-fashion/
1•Tomte•2m ago•0 comments

Three mistakes of new AI teams

https://softwaredoug.com/blog/2026/08/29/ai-team-mistakes.html
1•Tomte•3m ago•0 comments

W Social is a textbook case for everything wrong with digital sovereignty

https://www.structural-integrity.eu/wsocial-is-a-textbook-case-for-everything-wrong-with-digital-...
1•emaro•8m ago•0 comments

Scientists collaborated with narwhals to study warming waters in the Arctic

https://www.npr.org/2026/08/28/nx-s1-5945279/scientists-collaborated-with-narwhals-to-study-warmi...
1•Brajeshwar•8m ago•0 comments

A geroprotective probiotic and its functional metabolite to extend healthspan

https://www.nature.com/articles/s43587-026-01181-4
1•bilsbie•8m ago•0 comments

Claude permanently raising weekly limits by 25%

https://bsky.app/profile/anthropicbot.bsky.social/post/3muaaxs5nx424
2•someone4958923•11m ago•0 comments

YouTube Safety Update: New Parental Controls for Teens

https://blog.youtube/news-and-events/updates-youtube-supervised-accounts-teens/
1•ohjeez•13m ago•0 comments

ICE eyes spending up to $2M on Boston Dynamics robot dogs to up 'officer safety'

https://www.bostonglobe.com/2026/08/29/business/boston-dynamics-robot-dog-ice/
2•bookofjoe•15m ago•1 comments

A Must-Have Capture Tool for Mac App Store Developers

https://medium.com/@chris.ahrweiler/a-must-have-capture-tool-for-mac-app-store-developers-5154b8e...
1•docjojo•15m ago•0 comments

The Pain of Knowing Your Child Will Never Launch

https://www.thecut.com/article/brooding-pain-of-knowing-your-child-will-never-launch.html
1•mooreds•16m ago•0 comments

Introduction to Solving Ordinary Differential Equations Numerically

https://davidumsonst.github.io/IntroToSolvingODEsNumerically/voici/render/IntroductionToSolvingOD...
1•vismit2000•17m ago•0 comments

LeVJEPA: Efficient and Scalable Video Pretraining Without the Heuristics

https://levjepa.github.io/
1•smusamashah•18m ago•0 comments

Htmx and Django LiveView, side by side

https://en.andros.dev/blog/94d14a9e/htmx-and-django-liveview-side-by-side/
2•ibobev•19m ago•0 comments

Forcing all derived classes to implement a specific non-virtual method, part 2

https://devblogs.microsoft.com/oldnewthing/20260828-00/?p=112654
1•ibobev•19m ago•0 comments

Introduction to Probability – 2nd Edition

https://open.umn.edu/opentextbooks/textbooks/introduction-to-probability
2•ibobev•19m ago•0 comments

Australian cops cuff alleged TeamPCP masterminds

https://www.theregister.com/security/2026/08/28/australian-cops-cuff-alleged-teampcp-masterminds/...
2•jruohonen•22m ago•0 comments

Ireland Moves $38M in Bitcoin Tied to Drug Dealer's Lost Fishing Rod

https://cryptonews.net/news/bitcoin/33367182/
1•mywacaday•23m ago•0 comments

Why Living Past 115 Is Almost Impossible [video]

https://www.youtube.com/watch?v=WKi9FHrGAjA
1•mgh2•23m ago•0 comments

Trees for a Changing Climate and Resilient Urban Forest (2022)

https://www.coolboulder.org/news/trees-for-a-changing-climate-resilient-urban-forest
1•mooreds•24m ago•0 comments

Envault –- A local, minimum, encrypted vault for coding agents

https://github.com/MildyNora/envault
1•MildyNora•24m ago•0 comments

Algebra Explorer

https://dreksh.github.io/algebra-explorer/blog/
1•vismit2000•25m ago•0 comments

Discovering Productive Numbers

https://prodgang.github.io/prod/words/intro.html
1•vismit2000•25m ago•0 comments

Show HN: SHOOK - A Hook for ASD Simplified English

https://github.com/viktorinkov/shook
1•viktorinkov•26m ago•0 comments

Spect2test – Playwright Test Generation

https://spec2test-intelligence.streamlit.app/
1•gaya3bollineni•30m ago•1 comments

One 'absolutely prolific' male bird is keeping his species alive in the U.K

https://www.cbc.ca/radio/asithappens/monatgus-harriers-9.7323206
3•ohjeez•31m ago•1 comments

The growing divide between AI hype and software engineering reality

https://optimizedbyotto.com/post/why-open-source-projects-ban-ai/
2•jruohonen•32m ago•0 comments

In less than a year, Google made scraping 10× harder

https://growtika.com/blog/google-goto-links-study
2•Growtika•38m ago•0 comments

Show HN: Idea Miner – I stopped ranking ideas by how often they're mentioned

https://idea-miner.com/en/
1•alexstarks•38m ago•0 comments

Why aren't my two Cortex-A9 cores cache coherent?

https://thejpster.org.uk/blog/blog-2026-08-22/
1•ingve•38m 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.