frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Free, BYOK resume optimizer to beat the ATS black hole

https://ats.myurll.in/
1•nookeshkarri7•1m ago•0 comments

Dwarf Fortress in the Browser

https://github.com/Sessa93/remote-df
1•andre9317•2m ago•1 comments

Everything's Fine. (2024)

https://arxiv.org/abs/2403.19891
1•hamburgererror•2m ago•0 comments

UK to ban social media for under-16s, following Australia's model

https://www.gov.uk/government/news/social-media-to-be-banned-for-under-16s-in-landmark-government...
1•chrishawes•4m ago•0 comments

AI Study Tools: A Comparison of Flashcard and Spaced Repetition Apps

https://longtermemory.com/b/ai-study-tools-comparison-2026/
1•aledevv•5m ago•0 comments

SimpleRelay, self-hosted SMTP relay for apps in a single Docker container

https://relay.mailtoinbox.vip
1•toinbox•5m ago•0 comments

Millions of Lifetimes

https://wilsoniumite.com/2026/06/15/millions-of-lifetimes/
2•Wilsoniumite•6m ago•0 comments

Agentic-fs, a cloud-hosted filesystem for AI agents

https://github.com/vivekkhimani/agentic-fs
1•vivekkhimani•7m ago•0 comments

War Is a Racket

https://en.wikipedia.org/wiki/War_Is_a_Racket
1•simonebrunozzi•7m ago•0 comments

LLM SoccerArena: Which model predicts the 2026 World Cup best?

https://llmsoccerarena.up.railway.app/
1•philipp1234•9m ago•0 comments

Switching to a low-profile split keyboard after years on a TKL

https://www.elimkeys.jp/
1•xingshi0066•9m ago•0 comments

The Ridiculous Engineering of Figma [video]

https://www.youtube.com/watch?v=5t8dh3DSdBk
1•enritarta•13m ago•0 comments

Keir Starmer confirms social media ban for all children under 16

https://metro.co.uk/2026/06/15/keir-starmer-confirms-social-media-ban-children-16-28780800/
2•oneeyedpigeon•13m ago•1 comments

Smooth: A Framework for Turning AI from Interesting to Useful

https://www.spockdataservices.com/blog/smooth-ai-workflow-framework
1•rcshubhadeep•13m ago•0 comments

The Cloudflare for Autonomous AI Agents

https://github.com/tkngate/tkngate
2•kilopalisme•15m ago•1 comments

Anthropic Dispatches Staff to D.C., Racing to Resolve AI Export Restrictions

https://www.wsj.com/tech/ai/anthropic-dispatches-staff-to-d-c-racing-to-resolve-ai-export-restric...
2•thm•17m ago•0 comments

I know I can, but should I? Capability vs. Intent in the AI Goldrush

https://aibuilderseries.substack.com/p/i-know-i-can-but-should-i-capability
1•seantheviking•17m ago•0 comments

Asterinas: A production-grade Linux-compatible alternative kernel

https://asterinas.github.io/
1•yankcrime•19m ago•0 comments

UK Brings in Full Social Media Ban for Under-16s

https://deadline.com/2026/06/uk-social-media-ban-under-16s-x-youtube-tiktok-reddit-1236956163/
4•01-_-•20m ago•0 comments

Inside tech elites’ madcap war against the California billionaire tax

https://sfstandard.com/2026/06/13/billionaire-tax-fight-sergey-brin-chris-larsen-mike-moritz-ron-...
2•thm•21m ago•1 comments

Derbyshire officer investigated for using AI to create evidence in cases

https://news.sky.com/story/derbyshire-police-officer-investigated-for-using-ai-to-create-evidence...
3•01-_-•21m ago•0 comments

Do-the-work instead of proof-of-work, for Git hosting

https://blog.legoktm.com/2026/06/14/do-the-work-instead-of-proof-of-work-for-git-hosting.html
1•rapnie•22m ago•0 comments

Ukraine's Zelenskiy discusses peace talks in call with Trump

https://www.reuters.com/world/europe/ukraines-zelenskiy-discussed-war-diplomacy-call-with-trump-a...
1•Soumya_Max•24m ago•0 comments

Show HN: Canopy – parallel, sandboxed Claude Code sessions on macOS

https://github.com/juliensimon/canopy
1•julsimon•24m ago•0 comments

Proof

https://en.wikipedia.org/wiki/Proof_(play)
1•tosh•25m ago•0 comments

Apple PowerMac G4 – Weapon (1999) [video]

https://www.youtube.com/watch?v=lb7EhYy-2RE
1•DesaiAshu•25m ago•0 comments

You don't need React: creating a minimal UI library

https://pedroth.github.io/?p=post/NoNeedReact
1•pedro_movai•26m ago•0 comments

Building a personal meeting assistant that routes through your existing audio

https://techstackups.com/articles/deepgram-personal-meeting-assistant/
1•ritzaco•26m ago•0 comments

A spy in your pocket? How the UK's on-device nude image blocking could work

https://www.techradar.com/vpn/vpn-privacy-security/a-spy-in-your-pocket-how-the-uks-proposed-on-d...
1•nickslaughter02•26m ago•1 comments

Employees are checking out of AI

https://www.asymptotes.ai/notes/the-self-replacement-crisis
1•spinmaster•27m 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.