frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Breaks – A Breaking Encyclopedia

https://thebreaks.org/index.html
1•bryanrasmussen•2m ago•0 comments

Mom-as-a-Service

https://www.momasaservice.com/
1•edest28build•6m ago•1 comments

PowerContext, Context for work that humans and agents hand off and continue

https://github.com/oceanbase/powercontext
1•jinqueeny•11m ago•0 comments

Microsoft AI Publishes Its Humanist AI Code of Conduct

https://microsoft.ai/code-of-conduct/
1•CoderLim110•12m ago•0 comments

Volkswagen Mission Efficiency Sets 3 World Records

https://autoindiadaily.in/car-news/volkswagen-mission-efficiency-revealed/
1•snikolaev•13m ago•1 comments

XProtect behavioral flop: the Golden Gasp

https://melomac.com/posts/xprotect-behavioral-flop-the-golden-gasp/
1•lladnar•15m ago•0 comments

Show HN: Daemon OS – An intelligence layer for infrastructure

https://daemon-os.lebarionellison.workers.dev
1•lellison1•21m ago•0 comments

We are all Product Engineers now

https://seldo.com/posts/we-are-all-product-engineers-now/
4•vinhnx•22m ago•0 comments

The Hardness of 4-to-1 Games with Perfect Completeness

https://eccc.weizmann.ac.il/report/2026/179/
1•momeara•22m ago•0 comments

Purely Functional Operating Systems

https://eighty-twenty.org/2022/06/23/henderson-functional-operating-systems-1982
1•vinhnx•22m ago•0 comments

DeepMind's new genome 'atlas' charts effects of all 9B human gene mutations

https://www.nature.com/articles/d41586-026-02835-4
1•jonbaer•23m ago•0 comments

METR Anthropic Network

https://twitter.com/kevinnbass/status/2099621874279817638
3•andrewljohnson•24m ago•0 comments

One Pass to Parse Them All: Fused Parallel CSV Processing [pdf]

https://www.vldb.org/pvldb/vol19/p3579-ellmann.pdf
1•cpard•24m ago•0 comments

India's Dedicated Freight Corridor's last mile challenge

https://finshots.in/archive/the-dedicated-freight-corridors-last-mile-challenge/
1•vismit2000•36m ago•0 comments

Mouse

https://github.com/mousedev/mouse-harness/tree/main
2•Aeroi•36m ago•0 comments

CrofAI Is an OpenRouter Wrapper

https://kendell.dev/blog/crofaifalse/
1•wut42•38m ago•0 comments

Internet Guestbooks: The Rise, Decline, and Afterlife

https://curiouxify.com/internet-guestbooks/
1•mastazi•38m ago•0 comments

An open-source interactive 3D PC Anatomy explore what's inside a computer

https://pc-anatomy.vercel.app/
1•Zeruxe•38m ago•1 comments

Does Scaling Web-Video Pre-Training Help Real Robots Do Real Work?

https://www.rhoda.ai/research/scaling-web-video-pretraining
2•gmays•39m ago•0 comments

The Physical Agent Harness: a portable interface to persistent agents

https://rashidazarang.com/c/the-physical-agent-harness
2•rashidae•42m ago•0 comments

Air Force secretary acknowledges the US has weapons in space

https://abcnews.com/Politics/air-force-secretary-acknowledges-us-weapons-space/story?id=136437923
2•SanjayMehta•42m ago•0 comments

World AI Cooperation Organization

https://en.wikipedia.org/wiki/World_Artificial_Intelligence_Cooperation_Organization
1•soundworlds•43m ago•1 comments

Show HN: Day week calendar app inspired by the French Revolutionary calendar

https://github.com/OlegIGalkin/tendayweekcalendar
1•cantouch•45m ago•0 comments

US-China AI strategic planning

https://sinocism.com/p/us-china-strategic-ai-dialogue-said
2•neptunetriton•47m ago•0 comments

The harms of short-form video on the brain are starting to show

https://www.theguardian.com/commentisfree/2026/sep/14/zuckerberg-short-form-video-cognitive-harm
2•pizzaiolo•55m ago•0 comments

I worked at Google DeepMind. You should listen to the warnings about AI

https://www.theguardian.com/technology/2026/sep/14/google-deepmind-ai-warnings
5•gibspaulding•55m ago•1 comments

The Rise of the Forward Deployed Engineer – and How to Do the Job Right

https://www.latent.space/p/forward-deployed-engineer-best-practices
1•yarapavan•57m ago•0 comments

Exploring mathematics with your computer (1993)

https://archive.org/details/exploringmathema0000enge
1•vismit2000•59m ago•0 comments

Why is nobody signing up even though I launched an unlimited plan on my website?

2•petebay•59m ago•2 comments

Efficient capital allocation in media as it relates to catalog IP

https://sidecar-part-ii.danieldeboulay.com
2•deboulaymxf•1h 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.