frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why TypeScript picked Go over Rust for its new compiler

https://www.thetrueengineer.com/p/typescript-team-chose-go-over-rust
1•adletbalzhanov•1m ago•0 comments

OpenAI's Sam Altman to Brief UN Security Council Next Week

https://www.reuters.com/business/openais-sam-altman-to-brief-un-security-council-next-week-during...
1•layer8•2m ago•0 comments

Microsoft Systems Journal Interviews Gordon Letwin (1987)

https://computeradsfromthepast.substack.com/p/microsoft-systems-journal-interviews
1•rbanffy•4m ago•0 comments

EtherCON

https://en.wikipedia.org/wiki/EtherCON
2•gregsadetsky•6m ago•0 comments

We got a cybersecurity expert to hack this BYD. It was too easy

https://www.abc.net.au/news/2026-09-21/byd-hacked-by-cybersecurity-expert-vehicle-sabotage-survei...
3•dbaupp•7m ago•0 comments

A Good Reason to Stop Me from Pasting Passwords

https://ciamweekly.substack.com/p/a-good-reason-to-stop-me-from-pasting
1•mooreds•7m ago•0 comments

The Haters Guide to Broadcom

https://www.wheresyoured.at/premium-the-haters-guide-to-broadcom/
1•gballan•9m ago•0 comments

Steam Frame, a Linux machine, doesn't support Linux?

https://gbl08ma.com/posts/steam-frame-a-linux-machine-doesnt-support-linux/
1•garaetjjte•9m ago•0 comments

ATProto in Practice #1: Identity

https://mackuba.eu/2026/07/20/atproto-in-practice-identity/
1•mooreds•10m ago•0 comments

Show HN: A parry focused game built in ThreeJS (WIP)

https://ashina-chi.vercel.app/
1•sherujgr•10m ago•0 comments

Oracle and OpenAI Are Trampling Native Treaty Rights to Build Data Centers

https://truthout.org/articles/big-tech-is-trampling-native-treaty-rights-to-build-data-centers/
1•paimapi•11m ago•0 comments

Mad Max 'Humungus Machine' Is Up for Auction on Bring a Trailer

https://www.caranddriver.com/news/a73781356/ford-f150-based-mad-max-humungus-machine-auction/
1•RickJWagner•12m ago•0 comments

>be me >discover effective altruism

https://twitter.com/banteg/status/2100619607648121199
1•yurivish•22m ago•0 comments

The New Church of Finance (2012)

https://www.deseret.com/2012/12/9/20445386/clayton-m-christensen-the-new-church-of-finance-deeply...
1•simonebrunozzi•22m ago•0 comments

Show HN: Openmsg, agent-to-agent talk while they run, Claude<>Codex<>OpenCode

https://github.com/marciob/openmsg
2•marciob•24m ago•2 comments

One wallet, 27 systems: can the EU build an untraceable Digital ID?

https://www.euronews.com/my-europe/2026/09/17/one-wallet-27-systems-can-the-eu-build-an-untraceab...
4•devonnull•25m ago•0 comments

Jev identifies as a Qwen model (and no other)

https://ouijev.com/?q=Are+you+a+qwen+model
1•Rom2•25m ago•0 comments

Autolith: The Common Lisp agent that rewrites itself and rocks

https://autolith.rocks
1•sroerick•25m ago•0 comments

Lawsuit says Anthropic, OpenAI and Google made illegal agreement on AI slowdown

https://www.cnn.com/2026/09/19/business/ai-slowdown-lawsuit-antitrust
5•mattm•26m ago•0 comments

Confessions of an Unrepentant Slop Snob

https://charity.wtf/p/confessions-of-an-unrepentant-slop
1•gholap•29m ago•0 comments

President claims he will for a new 'AI Force' but calls AI fears a 'hoax'

https://abcnews.com/Politics/trump-form-new-ai-force-continues-call-ai/story?id=136591343
2•anigbrowl•31m ago•0 comments

Why are AI agents lying, cheating and coordinating?

https://yoshuabengio.org/en/blog/why-are-ai-agents-lying-cheating-and-coordinating
2•r4ndomname•32m ago•0 comments

Expert ratings are ignoring signs of a blue wave

https://www.natesilver.net/p/expert-ratings-are-ignoring-signs
2•7777777phil•32m ago•0 comments

I see the mathematicians panicking at what we can do with agentic AI

https://twitter.com/lemire/status/2101684818358439959
1•tosh•32m ago•0 comments

Better Call Sol or Better yet Claude or Astra

https://thezvi.substack.com/p/better-call-sol-or-better-yet-claude
2•7777777phil•32m ago•0 comments

The Future of Web Browsers

https://sarahjamielewis.com/log/2026/future-of-web-browsers.html
2•Muhammad523•33m ago•0 comments

Casbin Gateway: a security gateway for the AI coding agents on your machine

https://github.com/apache/casbin-gateway
3•jhan667•34m ago•0 comments

Astro Mechanica (2024)

https://www.notboring.co/p/astro-mechanica
1•simonebrunozzi•35m ago•0 comments

Frontier Labs Are Selling Garbage to Fools in Washington

https://deadneurons.substack.com/p/frontier-labs-are-selling-garbage
19•nr378•39m ago•3 comments

Interview reveals Ed Zitron does not understand how AI works at any level

https://twitter.com/AlexanderMcCoy4/status/2100744088169447816
3•enraged_camel•42m ago•2 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.