frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The world may have less time than it thinks on climate change

https://economist.com/by-invitation/2026/08/30/the-world-may-have-less-time-than-it-thinks-on-cli...
1•andsoitis•1m ago•0 comments

Why shaming people about AI slop isn't enough to stop Big AI

https://www.anildash.com/2026/08/21/ai-slop-and-shame/
4•jethronethro•1m ago•0 comments

Live cloud GPU rental prices

https://gputable.dev/
1•davedx•1m ago•0 comments

Pokémon Shock (1997)

https://en.wikipedia.org/wiki/Denn%C5%8D_Senshi_Porygon
1•i5heu•6m ago•0 comments

Is a One Person Company (OPC) just another type of Uber driver?

1•Bobby_Liu•7m ago•0 comments

GPT 5.6 has broken the record on large gaps between primes

https://www.erdosproblems.com/forum/thread/4/proof-claims
2•surprisetalk•12m ago•1 comments

Show HN: A Big Five personality test with no "Types" and free scores

https://fiveprint.app/en
1•fusionPT•14m ago•0 comments

Show HN: AnVendor – see your competitor's customers

https://anvendor.com/
1•ia_soul•15m ago•1 comments

Bootstrapping enables human-level concept learning in self-supervised models

https://www.science.org/doi/10.1126/sciadv.aea7202
1•m-hodges•15m ago•0 comments

Opendepot – Buy and Sell by Text

https://opendepot.dev/
1•sutji•17m ago•0 comments

Show HN: Cogram Studio – CAD and BIM workspace for humans and agents

https://studio.cogram.com/
2•alexvboe•19m ago•0 comments

Which Linux distribution do you like the most, and why?

https://textlog.cc/post/1174
1•stagas•20m ago•0 comments

How on Earth does a Search Console for LLMs still not exist?

https://embassia.com
2•ramazanaliakdas•20m ago•2 comments

Why open source rocks – a new SM750 (Silicon Motion GPU) HDMI Driver

https://github.com/KodeMunkie/sm750hdmifb
3•SillyUsername•20m ago•1 comments

Scans of 400 handwritten notes about people's relationships with AI

https://www.whatwetellai.com/
1•momentmaker•22m ago•0 comments

Show HN: MyTops – A database of films, books, games that builds itself on demand

https://mytops.io/
1•Zartof•23m ago•0 comments

Data Exfil: OpenAI polices private chats exfiltrated through Codex Memories

https://github.com/openai/codex/issues/41711
2•tmpnode•25m ago•1 comments

Make Your Life Easier

https://himanshusinghbisht.substack.com/p/make-your-life-easier
1•gilfoyle_7•25m ago•0 comments

We Just Wanted to Deploy a PHP Website

https://sarah-robin.com/blog/we-just-wanted-to-deploy-a-website
1•sarah-robiin•27m ago•0 comments

Mothbox Insect Monitor

https://mothbox.org/
1•rickcarlino•28m ago•0 comments

Attention deficit hyperactivity disorder shapes sexual experiences

https://www.psypost.org/how-attention-deficit-hyperactivity-disorder-shapes-sexual-experiences/
1•downbad_•32m ago•0 comments

Electricity Doesn't Need a Return Wire [video]

https://www.youtube.com/watch?v=it5UMt0lL8I
1•fussylogic•33m ago•1 comments

Life in the deep Atlantic depends on the Labrador Sea

https://news.cornell.edu/stories/2026/08/life-deep-atlantic-depends-labrador-sea
1•gmays•34m ago•0 comments

"The Fate of the Riemann Hypothesis" by Richard Evan Schwartz [pdf]

https://www.math.brown.edu/reschwar/Stories/AI.pdf
2•bananaflag•41m ago•1 comments

ProofWiki

https://proofwiki.org/wiki/Main_Page
1•Tomte•42m ago•0 comments

Monitoring the distribution of euro coins across borders (2021)

https://www.sciencedirect.com/science/article/pii/S2352340921003656
1•Tomte•42m ago•0 comments

Salesforce CEO says the 'SaaSpocalypse' is nonsense

https://www.cnbc.com/2026/08/26/salesforce-ceo-marc-benioff-saaspocalypse-nonsense.html
3•adletbalzhanov•45m ago•1 comments

Experiments with AI – Structure of Third Party Agentic Apps

https://karankurani.com/writing/post/w_20260722063839_af741a/experiments-with-ai-structure-of-thi...
1•BIackSwan•47m ago•0 comments

Record attempt: Longest train journey in the EU

https://crossborderrail.eu/longestjourney/
4•SiempreViernes•47m ago•1 comments

Looking for few users feedback for my community project

1•Chorum•48m ago•1 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.