frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Keyway – Control your Mac from the keyboard

https://github.com/Njuhobby/keyway
1•njuhobby•12s ago•0 comments

Show HN: Lettered – a daily phrase puzzle game

https://lettered.io
1•ajhenrydev•49s ago•0 comments

A little bird told her: scientist wins $100k prize for decoding birdsong

https://www.theguardian.com/science/2026/jun/26/human-animal-communication-step-closer-scientist-...
1•Brajeshwar•1m ago•0 comments

Delete Doesn't Mean Deleted. Just Ask OpenAI

https://lindsaygross1.substack.com/p/delete-doesnt-mean-deleted-just-ask
1•herbertl•2m ago•0 comments

Explore+Anna's+Archive

https://annas-archive.is?aa_share=dkzcsggmtnt4rt1ehpy9r3yzkkaa8p8l&utm_source=share&utm_medium=ha...
2•constantanople•4m ago•0 comments

Israeli founder faces backlash on mobile OS launch

https://twitter.com/mil000/status/2070215925576728890
1•grandpajoey•6m ago•0 comments

Supalive, live queries for Postgres and MySQL

https://www.npmjs.com/package/@supalive/core
1•rebaz94•7m ago•0 comments

Show HN: My website as one connected graph – blog, second brain, and book

https://www.ssp.sh/
3•zazuke•9m ago•1 comments

Newsletter market in 2026: $10 per month is default price but not ceiling

https://pressgazette.co.uk/newsletters/newsletters-2026-prices-retention-churn/
1•bookofjoe•9m ago•0 comments

Outbound hold agent that pauses AI runtime while waiting on hold

https://github.com/team-telnyx/telnyx-code-examples/tree/main/outbound-hold-agent-python
1•anushathukral•10m ago•0 comments

What is a Lithium-ion capacitor?

https://www.jtekt.co.jp/e/products/capacitor/capacitor_about.html
2•ksec•10m ago•0 comments

How to Let AI, Workflows, and Custom Systems Manage Your Social Media

https://socialplod.com/blog/how-to-let-ai-workflows-and-custom-systems-manage-your-social-media-t...
1•dexterwura•11m ago•0 comments

More Than Syntax

https://redmonk.com/rstephens/2026/06/12/more-than-syntax/
1•wrxd•11m ago•0 comments

LlamaIndex integration for SynapCores (RAG, GraphRAG, and hybrid retrieval)

https://github.com/SynapCores/synapcores-llamaindex
1•Synapcores•11m ago•1 comments

Poll: Do most countries have the capacity to manufacture all RX drugs?

1•Bender•12m ago•0 comments

Packet_edit_meme (CVE-2026-46331) page cache poisoning vulnerability

https://github.com/sgkdev/packet_edit_meme
1•tanelpoder•12m ago•0 comments

Echoes of the AI Winter

https://netzhansa.com/echoes-of-the-ai-winter/
1•brazukadev•13m ago•0 comments

Notion killing Skiff-influenced email app since most users use AI agents instead

https://arstechnica.com/gadgets/2026/06/notion-killing-skiff-influenced-email-app-since-most-user...
1•Brajeshwar•14m ago•1 comments

When a Kaggle Submission Is Rejected Before It Scores

https://medium.com/@alanscottencinas/when-a-kaggle-submission-is-rejected-before-it-scores-58758d...
1•encinas88•14m ago•0 comments

Make PS2 games with one prompt

https://github.com/Ijtihed/ps2-forge
2•Ijtihed•16m ago•0 comments

Oracle promises to open up MySQL governance, but the community wants guarantees

https://www.theregister.com/databases/2026/06/26/oracle-promises-to-open-up-mysql-governance-but-...
1•speckx•16m ago•0 comments

Full Walkthrough: Workflow for AI Coding – Matt Pocock [video]

https://www.youtube.com/watch?v=-QFHIoCo-Ko
1•oriettaxx•16m ago•0 comments

Learning from Nature with System Dynamics

https://johncarlosbaez.wordpress.com/2026/04/24/learning-from-nature-with-system-dynamics/
1•surprisetalk•17m ago•0 comments

Three Agents Went to War over a Garden

https://johnmayosmith.substack.com/p/three-agents-went-to-war-over-a-garden
1•mayosmith•18m ago•1 comments

Ava Supernova – open-source coding agent for open-weight LLMs

https://github.com/AugmentedValueAcceleration/ava-supernova
1•AvaSupernova•24m ago•0 comments

VW may close four factories to adapt to the future, report says

https://arstechnica.com/cars/2026/06/vw-may-close-four-factories-to-adapt-to-the-future-report-says/
1•mikestew•24m ago•0 comments

The Exhaustion of Talking to a Tool

https://ohadravid.github.io/posts/2026-06-tool-talking/
3•BrunoBernardino•26m ago•0 comments

Flock-Powered Police LPR Abuse Triples at an Agency Once They Look

https://ipvm.com/reports/flock-police-triple-audit
1•jhonovich•27m ago•0 comments

Germany's railways grind to halt as IT maintenance snag takes down network

https://www.theguardian.com/world/2026/jun/24/germany-rail-network-deutsche-bahn-standstill-it-re...
1•muxamilian•28m ago•1 comments

Reinventing the Wheel, Now at a Bargain Price

https://zwischenzugs.com/2026/06/24/reinventing-the-wheel-now-at-a-bargain-price/
1•vinhnx•28m 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.