frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

New 'Mars GPS' lets Perseverance pinpoint its location within 25 centimeters

https://phys.org/news/2026-02-mars-gps-perseverance-centimeters.html
1•PaulHoule•43s ago•0 comments

I turned down a $1M acquisition offer because I wanted to own what I built

https://useviralize.com
1•jcrosbz•2m ago•1 comments

Play Wolfenstein: Enemy Territory online on the browser, WebSocket relay

https://et.klaussilveira.com
1•klaussilveira•2m ago•0 comments

Airbnb has a recruiting easter egg in its JavaScript output

https://www.airbnb.de/
1•datawars•3m ago•0 comments

OpenAI Fires an Employee for Prediction Market Insider Trading

https://www.wired.com/story/openai-fires-employee-insider-trading-polymarket-kalshi/
1•nadis•4m ago•0 comments

The LLM Sycophancy Antidote

https://photostructure.com/coding/sycophancy-antidote/
1•mceachen•5m ago•0 comments

Lessons from Building Claude Code: Seeing Like an Agent

https://twitter.com/trq212/status/2027463795355095314
1•nadis•5m ago•0 comments

Hyperion author Dan Simmons dies from stroke at 77

https://arstechnica.com/culture/2026/02/hyperion-author-dan-simmons-dies-from-stroke-at-77/
1•speckx•7m ago•0 comments

PicoClaw: Ultra-Efficient AI Assistant in Go

https://github.com/sipeed/picoclaw
1•xtracto•7m ago•0 comments

Forgiven – A Vim/Spacemacs terminal editor with native Copilot agent (Rust)

https://github.com/danebalia/forgiven
1•danebalia•9m ago•2 comments

Show HN: Goodfriendsbook.com Let's ask you, want opensourced to GitHub

1•gitprolinux•9m ago•0 comments

Lazard LCOE+ 2025 [pdf]

https://www.lazard.com/media/eijnqja3/lazards-lcoeplus-june-2025.pdf
1•toomuchtodo•9m ago•1 comments

Trump officials move to kill system that protects US from chemical disasters

https://www.theguardian.com/environment/2026/feb/27/trump-fire-chemical-safety-system-epa
3•mitchbob•10m ago•1 comments

NASA announces Artemis III mission no longer aims to send humans to moon

https://www.theguardian.com/science/2026/feb/27/nasa-changes-delays-moon-missions
3•bookofjoe•11m ago•2 comments

Why is getting a cheap prepaid SIM card in the USA so complicated?

1•huntsmans•13m ago•1 comments

Pure LLMs Score 0% on ARC-AGI-2. Why the Third Wave of AI Looks Like the First

https://ai.gopubby.com/neuro-symbolic-ai-arc-agi-alphaproof-third-wave-48177339d698
1•Aedelon•13m ago•0 comments

ByteDance Seed 2.0

https://seed.bytedance.com/en/blog/seed2-0-%E6%AD%A3%E5%BC%8F%E5%8F%91%E5%B8%83
1•kristianp•15m ago•0 comments

Our new frontier model: Ian

https://ian.ianmyjer.com/
1•enmyj•15m ago•0 comments

Warner Bros signs $110B deal with Paramount

https://www.reuters.com/sustainability/sustainable-finance-reporting/warner-bros-signs-110-billio...
4•Vitamin_Sushi•15m ago•1 comments

The Distillation Problem, It's Not a Cold War, It's Napster

https://www.stickybit.com.br/distillation-napster-en/
1•TiMagazine•16m ago•0 comments

Is This Waymo a Better Person Than You?

https://www.newyorker.com/humor/shouts-murmurs/is-this-waymo-a-better-person-than-you
1•mitchbob•16m ago•1 comments

Lasse Collin

https://liberapay.com/Larhzu/
1•pinkmuffinere•17m ago•0 comments

Ask HN: Apple locked me out of the developer program for a technical error

2•LoganDark•17m ago•0 comments

IronCurtain: A Personal AI Assistant Built Secure from the Ground Up

https://www.provos.org/p/ironcurtain-secure-personal-assistant/
1•jmort•17m ago•0 comments

Instant DB clones for AI agents

https://contextbits.com/
1•classx•19m ago•1 comments

Should everyone be taking statins?

https://www.worksinprogress.news/p/should-everyone-be-taking-statins
1•salonium_•19m ago•1 comments

Even with Coding Agents, You Still Can't Recreate StackOverflow in a Weekend

https://orischwartz.com/posts/even-with-fleet-of-coding-agents.html
3•fleaflicker•20m ago•0 comments

DOS Memory Management

http://www.os2museum.com/wp/dos-memory-management/
3•supermatou•20m ago•0 comments

Show HN: AO – Deploy Python agents without managing production infrastructure

https://aodeploy.com
1•mrtng•23m ago•0 comments

Show HN: DumpCleaner – Native macOS/iPadOS app to filter SQL dumps

https://dumpcleaner.app
1•marcelglaeser•24m ago•1 comments
Open in hackernews

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

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