frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple's Always-Listening Tech: A Privacy Nightmare Waiting to Happen

https://this.weekinsecurity.com/watch-what-you-say-apple-opens-the-door-to-a-nightmare-world-of-a...
1•signa11•22s ago•0 comments

Why big tech will hate the Australian tax office's latest ruling

https://theconversation.com/why-big-tech-will-hate-the-australian-tax-offices-latest-ruling-291571
3•billybuckwheat•1m ago•0 comments

Michaelsoft Binbows

https://binbows.net/
1•austinallegro•8m ago•0 comments

Closure Compiler: A JavaScript checker and optimizer

https://github.com/google/closure-compiler
1•csmantle•9m ago•0 comments

Anecdotally, Programmers Dislike "Reduce"

https://evanhahn.com/posts/2026-09-13-programmers-dislike-reduce/
2•vinhnx•12m ago•0 comments

BYD has apparently canceled this year's profit bonus

https://www.kucoin.com/news/insight/BYD/6aa543e9ccf4ec00077d0eb2
1•gainsurier•12m ago•0 comments

TimIQ – Smart Tech, AI and Software Insights

https://timiq.blogspot.com/
1•Timmphil•12m ago•0 comments

PlotLines

https://peter-guillam123.github.io/plotlines/
1•austinallegro•12m ago•0 comments

Satellite images show extent of damage to major Saudi pipeline

https://www.theguardian.com/world/2026/sep/14/saudi-pipeline-drone-attack-houthis-global-oil-supp...
1•ljf•16m ago•0 comments

Mr

1•giddyboy•18m ago•0 comments

The Void Spiral: How to Avoid the Void

https://mathstodon.xyz/@isaacg/117264263631423022
1•rapnie•18m ago•0 comments

Show HN: TrackLLM: Are the LLM APIs you rely on stable?

https://www.trackllm.net/
1•timotheechauvin•19m ago•1 comments

Why Does SpaceX Have 11,000 Starlink Satellites? [video]

https://www.youtube.com/watch?v=DW-aL_MiUz4
1•marklit•20m ago•0 comments

Why I Still Read Code

https://alex.draftist.io/blog/why-i-still-read-code-iiaz6lku8
1•saikatsg•21m ago•0 comments

Just stop the Anthropic IPO already

https://www.thebignewsletter.com/p/monopoly-round-up-just-stop-the-anthropic
2•chmaynard•21m ago•0 comments

'Tidal wave' of PFAS being launched to satisfy AI industry

https://www.theguardian.com/environment/2026/sep/14/pfas-firms-tidal-wave-forever-chemicals-ai-in...
2•defrost•23m ago•0 comments

The bottleneck in multi-agent coding is the human, not the agents

https://tskulbru.dev/posts/beads-local-shadow-for-agent-work/
1•tskulbru•24m ago•0 comments

Of Gods and Languages: On "When God Spoke Greek" (2013)

https://lareviewofbooks.org/article/of-gods-and-languages-on-when-god-spoke-greek/
7•bryanrasmussen•24m ago•1 comments

Eliza: The AI That Fooled the World

https://liacademy.co.uk/the-story-of-eliza-the-ai-that-fooled-the-world/
1•andsoitis•25m ago•0 comments

What is it like to be a Thermostat?

https://consc.net/notes/lloyd-comments.html
2•andsoitis•27m ago•0 comments

Anthropic tells investors it will be profitable for second straight quarter

https://www.ft.com/content/4564e6a5-69e9-40a6-bf0f-a888f2f4f002
2•theahura•33m ago•0 comments

Sunsetting Remove.bg

https://www.remove.bg/faq
1•sh_tomer•33m ago•0 comments

Tork: A lightweight, distributed workflow engine

https://github.com/runabol/tork
2•saikatsg•34m ago•0 comments

One UI 9 Beta 2 update is rolling out to the Galaxy S24

https://www.sammobile.com/news/galaxy-s24-one-ui-9-beta-2-update-released/
1•kuuuzya•35m ago•0 comments

The Matrix as Metaphysics

https://consc.net/papers/matrix.html
1•andsoitis•36m ago•1 comments

Build to Delete: When a model release makes your work redundant

https://softwareguru.substack.com/p/build-to-delete
1•ssamptur•37m ago•0 comments

Show HN: Meta neural band PoC connected to Mac without needing the glasses

https://github.com/callbacked/neural-band-poc/
1•callbacked•38m ago•0 comments

Ambition Is Frozen Desire

https://pmillerd.com/david-whyte-ambition/
1•bwest87•39m ago•1 comments

Show HN: Chrome Extension to Save, Organize and Switch Bookmarks

https://chromewebstore.google.com/detail/leotabs-—-tab-manager-swi/heolckkdeandgagkiefggcneodni...
1•ringlochid•39m ago•0 comments

Ask HN: Why AI is giving biased Racist/Misandrist answers?

1•skwasimin•39m 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.