frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Letting an LLM write robot programs

https://boesch.dev/posts/llm-trajectory/
1•encrux•1m ago•0 comments

Show HN: I built a local first web-app that builds 3D maps of your knowledge

https://cognir.netlify.app/
1•Sahil-Das•2m ago•1 comments

I ran an AI pentester on a vibe-coded quiz app and found 22 vulnerabilities

https://github.com/FrancescoStabile/numasec
1•francesco_sta•3m ago•0 comments

Stewart Brand on How Progress Happens

https://www.newyorker.com/books/book-currents/stewart-brand-on-how-progress-happens
1•bookofjoe•3m ago•1 comments

10 Enduring Lessons from Adam Smith

https://thedailyeconomy.org/article/the-wealth-of-nations-at-250-ten-profound-quotations-from-ada...
1•RickJWagner•3m ago•0 comments

Scraping Ecommerce Data with Cloudflare Browser Rendering APIs

https://browserflare.xyz/blog/scraping-walmart-ecommerce-data-with-cloudflare-browser-rendering/
1•hgarg•4m ago•0 comments

Don't Write Like AI (1 of 101): "It's Not X, it's Y"

https://www.blakestockton.com/dont-write-like-ai-1-101-negation/
1•croemer•5m ago•1 comments

Show HN: Factagora API – Before your AI hallucinates, Factagora verifies

https://enterprise.factagora.com/en/api
1•ttlcc13•5m ago•0 comments

I get wanting to test models on CTFs but lame to do this at our university event

https://twitter.com/_sy1vi3/status/2041379985114411379
2•da_grift_shift•5m ago•0 comments

New chip survives 1300°F (700°C) and could change AI forever

https://openyourmindabretumente.blogspot.com/2026/04/this-new-chip-survives-1300f-700c-and.html
1•ericzapata•6m ago•0 comments

Is It Possible That the Oldest Stone Tools on Earth Were Not Made by Humans?

https://www.thecollector.com/lomekwian-oldest-stone-tools/
1•Tomte•7m ago•0 comments

Show HN: Skrun – Deploy any Agent Skill as an API (open source)

https://github.com/skrun-dev/skrun
2•frizull•9m ago•0 comments

ESP32 Intelligent Fire Detection System Using ML/CV for Safety in Indian MSME

https://www.techrxiv.org/doi/full/10.36227/techrxiv.174857955.53524830/v1
3•hellic07•12m ago•4 comments

Greyline: We Built a Counter-Agent to Stop AI Agents from Looting Your API

https://themeridianlab.com/signals/your-api-has-no-idea
1•mmayberry•12m ago•0 comments

Why social change is so excruciatingly difficult

https://www.volts.wtf/p/why-social-change-is-so-excruciatingly
1•speckx•12m ago•0 comments

Show HN: ZeroID – Open-source identity and delegation for autonomous agents

https://github.com/highflame-ai/zeroid
4•saucam•13m ago•0 comments

Show HN: Vulnetix VDB – Live package security within Claude Code

https://www.vulnetix.com/articles/bypassing-scanners
2•ascended•13m ago•1 comments

Trump says 'a whole civilization will die tonight' if Iran does not make a deal

https://www.reuters.com/world/middle-east/trump-says-a-whole-civilization-will-die-tonight-if-ira...
14•jacquesm•18m ago•6 comments

The Soul of an Old Machine

https://skalski.dev/the-soul-of-an-old-machine/
1•mskalski•19m ago•0 comments

AI "Guardrails" Are Just Suggestions

https://spin.atomicobject.com/ai-guardrails-are-suggestions/
2•ingve•20m ago•0 comments

"The new Copilot app for Windows 11 is really just Microsoft Edge"

https://twitter.com/i/status/2041112541909205001
3•bundie•22m ago•0 comments

They can fly 200 miles with no fuel - Tom Scott [video]

https://www.youtube.com/watch?v=zKx1VJsLsfk
2•jfoucher•22m ago•1 comments

Show HN: td – a CLI to manage tasks, sessions, and worktrees for agentic coding

https://github.com/rosgoo/td
3•rosgoo•23m ago•0 comments

Show HN: AvatarBook – Verifiable AI agent workflows

https://github.com/noritaka88ta/avatarbook
1•noritaka88•24m ago•0 comments

Iran's supreme leader 'unconscious and receiving treatment in Qom'

https://www.thetimes.com/world/middle-east/israel-iran/article/iran-supreme-leader-mojtaba-khamen...
1•Tomte•26m ago•0 comments

Show HN: Petrarca: Voice first spaced repetition – track knowledge across books

https://networkedthought.substack.com/p/petrarca-an-intelligent-companion
1•houshuang•28m ago•0 comments

chugchug: A modern, dependency-free progress bar for Python

https://github.com/unnir/chugchug
2•vdmbrsv•28m ago•2 comments

A small task, executed exceptionally, carries super-nonlinear potential

https://twitter.com/ActionDigest/status/2041230438149034230
1•curiouska•28m ago•0 comments

Shots Fired at Indianapolis Councilman's Home, After Vote Backing Data Center

https://www.nytimes.com/2026/04/06/us/indianapolis-data-center-shooting.html
2•ndiddy•31m ago•1 comments

What Is a Property?

https://alperenkeles.com/posts/what-is-a-property/
1•alpaylan•33m ago•0 comments
Open in hackernews

Show HN: AgentShield SDK – Runtime security for agentic AI applications

https://pypi.org/project/agentshield-sdk/
2•iamsanjayk•11mo 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•11mo 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•11mo 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.