frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Noclip – Look at maps from variety of games

https://noclip.website/
1•tontonius•1m ago•0 comments

Why Group Brainstorming Fails (and What Works Instead) – Brain Hurricane Blog

https://app.brainhurricane.ai/blog/why-group-brainstorming-fails
1•L1nefeed•4m ago•1 comments

Show HN: Add AI Features to Your Front-End in Minutes – FrontLLM

https://frontllm.com/
1•b4rtazz•4m ago•0 comments

AI-Powered Personal Knowledge Assistant for Mac, iPhone and iPad (2025)

https://elephas.app
1•janandonly•5m ago•0 comments

Berapa WhatsApp Tokopedia Seller

1•aman400•7m ago•0 comments

Berapa WhatsApp Tokopedia

1•aman400•8m ago•0 comments

Berapa Nomor Wa Tokopedia

1•aman400•8m ago•0 comments

A Graph Explorer of Epstein Emails

https://github.com/maxandrews/Epstein-doc-explorer
1•hirako2000•8m ago•0 comments

Researchers develop air-powered robots that move in sync without electronics

https://www.ox.ac.uk/news/2025-11-14-researchers-develop-air-powered-robots-move-sync-without-ele...
1•JeanKage•9m ago•0 comments

Relocating a floating bog on Wisconsin's Lake Chippewa

https://thekidshouldseethis.com/post/relocating-a-floating-bog-on-wisconsins-lake-chippewa
2•jackgavigan•11m ago•0 comments

Understanding Arduino Uno Hardware Design

https://www.allaboutcircuits.com/technical-articles/understanding-arduino-uno-hardware-design/
1•ankitg12•11m ago•0 comments

The time is changing: owning again (attention, things)

https://www.ssp.sh/blog/owning-things-attention/
2•articsputnik•15m ago•0 comments

Supercomputing Centers to Integrate Quantum Processors Using Nvidia's NVQLink

https://thequantuminsider.com/2025/11/17/supercomputing-centers-to-integrate-quantum-processors-u...
1•westurner•15m ago•0 comments

Can you just do things?

https://asteriskmag.com/issues/12-books/can-you-just-do-things
1•tasshin•17m ago•0 comments

Why Is Windows 11 So Slow and Unresponsive?

https://learn.microsoft.com/en-us/answers/questions/4267630/why-is-windows-11-so-slow-unresponsiv...
1•jcattle•19m ago•0 comments

Additive Manufacturing of Stretchable Polyethylene Glycol Hydrogels, Elastomers

https://advanced.onlinelibrary.wiley.com/doi/10.1002/adma.202512806
2•westurner•21m ago•0 comments

Beijing makes AI education compulsory in public schools

https://global.chinadaily.com.cn/a/202510/21/WS68f6d9bea310f735438b601e.html
1•algoghostf•28m ago•0 comments

Trump, 79, Has Dementia Just Like His Father: Niece

https://vechron.com/2025/11/trump-has-dementia-just-like-his-father-says-niece/
4•ashishgupta2209•29m ago•1 comments

AI slop security engineering: Okta's NextJS-0auth troubles

https://joshua.hu/ai-slop-okta-nextjs-0auth-security-vulnerability
2•ramimac•29m ago•0 comments

Google fixes new Chrome zero-day flaw exploited in attacks

https://www.bleepingcomputer.com/news/security/google-fixes-new-chrome-zero-day-flaw-exploited-in...
1•fleahunter•33m ago•0 comments

Strace-macOS: A clone of the strace command for macOS

https://github.com/Mic92/strace-macos
1•signa11•35m ago•0 comments

Show HN: iCloud Find My GPS Logger

https://chromewebstore.google.com/detail/icloud-find-my-gps-logger/doafcollkgnpicaijnokdnblahkdmgbb
1•buibuibui•36m ago•0 comments

InboxWhiz: Declutter Your Gmail Inbox

https://github.com/InboxWhiz/gmail-declutter-extension
1•shikharbhardwaj•39m ago•0 comments

Post-Cortex – Persistent memory for AI assistants with local semantic search

https://github.com/julymetodiev/post-cortex
1•juliusml•39m ago•0 comments

'I awoke at ½ past 7' – Self-monitoring and optimisation started before big tech

https://aeon.co/essays/victorian-diary-writers-kicked-off-our-age-of-self-optimisation
1•robtherobber•40m ago•0 comments

A.I. Video Is Threatening Our Ability to Trust Documentaries

https://www.nytimes.com/2025/11/18/movies/documentary-filmmaking-ai-trust.html
3•fleahunter•41m ago•0 comments

Microsoft: Windows 10 KB5072653 OOB update fixes ESU install errors

1•iamtech•42m ago•0 comments

RFC 9458 Oblivious HTTP

https://www.ietf.org/rfc/rfc9458.html
1•mrcsharp•46m ago•0 comments

Marjorie Taylor Greene Seeking to End H-1B Visa Program [video]

https://www.youtube.com/watch?v=jzj9HDiEoWY
2•thelastgallon•48m ago•0 comments

Install Nothing

https://github.com/buyukakyuz/install-nothing
4•sbt567•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•6mo 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•6mo 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•6mo 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.