frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bank ID vendor traced to a dark web license sale

https://www.americanbanker.com/news/bank-id-vendor-traced-to-a-dark-web-license-sale
1•NewCzech•1m ago•0 comments

In Defense of Polyfills

https://lea.verou.me/blog/2026/polyfills/
1•eustoria•8m ago•0 comments

German startup sends first commercial rocket into space from Europe

https://www.theguardian.com/business/2026/sep/06/german-startup-sends-first-commercial-rocket-int...
1•giuliomagnifico•9m ago•0 comments

MotionSites AI – Official Premium AI Website Prompts

https://motionsites.ai/
1•eustoria•9m ago•0 comments

Dither Garden

https://www.dithergarden.com/
1•eustoria•10m ago•0 comments

Ask HN: I just learned of the term "Recall@K" – tell me more please?

1•consumer451•10m ago•0 comments

The aesthetic turn in intellectual property law copyright lessons from Pelham II

https://www.elgaronline.com/view/journals/qmjip/16/2/article-p99.xml
1•rbanffy•10m ago•0 comments

Ask HN: How safe are our password managers in face of LLM cyber attacks?

1•muddi900•13m ago•0 comments

If a startup worth your career

https://www.thetrueengineer.com/p/ego-equity-or-exit-checklist-to-decide
3•adletbalzhanov•16m ago•1 comments

Ask HN: Model Sycophancy Benchmarks?

1•gradus_ad•18m ago•0 comments

Show HN: Ontoplano, FOSS Life Management desktop and mobile app with MCP server

https://github.com/ontoplano/ontoplano
1•chedieck•18m ago•0 comments

The purpose of DNS is to spread scams

https://shkspr.mobi/blog/2026/09/the-purpose-of-dns-is-to-spread-scams/
3•edward•19m ago•0 comments

Show HN: Yume, a desktop workspace for Claude Code sessions

https://aofp.github.io/yume/
1•yuruko•21m ago•0 comments

YouTube Had a Bug – I Used ChatGPT to Investigate

https://blog.thezilber.com/3-youtube-had-a-bug-chatgpt-helped-me-to-investigate
2•theZilber•23m ago•0 comments

Casio 'CasioNaut' G-Shock GMC-2500 GAC-2500 Series: Price, Specs, Availability

https://www.wired.com/story/casio-g-shock-casionaut-looks-like-a-patek-philippe-classic/
2•joozio•24m ago•0 comments

Any Nix package, live in the browser

https://fzakaria.com/2026/09/04/any-nix-package-live-in-your-browser
7•domenkozar•24m ago•1 comments

Tinymongo

https://tinymongo.org/
2•schapman1974•26m ago•1 comments

GitHub Status – Disruption with Copilot Code Review

https://www.githubstatus.com/incidents/zw1hbx2yyhvr
1•kyisaiah47•26m ago•0 comments

Where Will RISC-V Be in 20 Years? Poll Results

https://thechipletter.substack.com/p/where-will-risc-v-be-in-20-years
2•rbanffy•27m ago•0 comments

Show HN: Layerz – Native App Designer

https://www.layerz.app/
1•jaeyoung_choi•28m ago•0 comments

Bitcoin mining data center condemned after leaking 3M gallons of water

https://www.tomshardware.com/tech-industry/data-centers/bitcoin-mining-data-center-condemned-afte...
3•rbanffy•28m ago•0 comments

How algorithms are making our environments bland

https://theconversation.com/how-algorithms-are-making-our-environments-bland-289917
1•geox•28m ago•0 comments

An off the self BYOA platform

1•theguysudo•29m ago•0 comments

The Man That Invented the Popup

https://galratner.substack.com/p/the-man-that-invented-the-popup
1•blartpaul•30m ago•0 comments

Washington Post says Piker used AI generated audio but admits it has no proof

https://twitter.com/washingtonpost/status/2096304873557877132
2•slowin•31m ago•0 comments

All of Claude's hilarious "Never Do This" in Fable 5.1 System Prompt

https://artifactbin.dev/@vivek/MLWEU6-claude-s-nevers
2•nuwandavek•31m ago•0 comments

Connecting Kubernetes dependencies to application telemetry

2•chipfixer•31m ago•0 comments

Big Brother is going to college: The federal plan to track students for life

https://www.washingtonexaminer.com/op-eds/4710733/college-transparency-act-student-privacy-risks/
3•iamnothere•33m ago•2 comments

Apex City – Build a city that works

https://apexcity.reallexi.io
1•m22386•35m ago•0 comments

FDA Recalls IV Fluids over Possible Fiberglass, Stainless Steel Contaminants

https://www.healthline.com/health-news/fda-recalls-iv-saline-fluids-fiberglass-stainless-steel-co...
4•speckx•36m 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.