frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Amazon set to expand drone delivery of lightweight packages to 500 US cities

https://apnews.com/article/amazon-drone-delivery-expansion-walmart-20db399ba65e8bc36a76b547f990b118
1•geox•1m ago•0 comments

Artificial Anthology – AI improving AI writing about AI

https://artificialanthology.com/
1•xianshou•1m ago•0 comments

I Built a Password Manager with No Back End. It Works Better Than I Expected

https://kryptprivacy.com/articles/password-manager-no-backend.html
1•clausemint•2m ago•0 comments

Web Authentication API (WebAuthn) Level 3

https://blog.timcappalli.me/p/webauthn-3/
1•mooreds•2m ago•0 comments

AI Software Development – What Does the Data Say?

https://codemanship.wordpress.com/2026/08/12/ai-software-development-what-does-the-data-say/
2•rudenoise•3m ago•0 comments

Beraterslang

https://www.beraterslang.de/
1•nixass•3m ago•0 comments

This may be the first academic profession to see its work taken over by AI

https://www.washingtonpost.com/technology/2026/08/19/mathematicians-ask-whats-left-humans-when-ai...
2•sonabinu•4m ago•0 comments

How Claude is accelerating protein design and analytical chemistry

https://www.anthropic.com/research/Claude-accelerates-protein-design
1•momeara•5m ago•0 comments

Where do people spend their money?

https://gingerjuice.club/article/where-do-people-spend-their-money-38516e54
1•streetai•8m ago•0 comments

Why AI Output Is the New XSS

https://symfony.com/blog/symfonycon-warsaw-2026-why-ai-output-is-the-new-xss
1•velmu•8m ago•0 comments

What to Know About the Social Security "Do-Over"

https://www.schwab.com/learn/story/what-to-know-about-social-security-do-over
1•mooreds•11m ago•0 comments

Hister – Search Engine for Local Files and Visited Webpages

https://hister.org/
1•RebelPotato•11m ago•0 comments

The Specification Is Not a Document

https://aicoding.leaflet.pub/3mtgs36dnq22o
1•chadfowler•13m ago•0 comments

I treat my AI coding agents as subcontractors

https://karavox.org/devlog/agents-as-subcontractors.html
1•lukasznowak•15m ago•0 comments

GitHub blames 8-hour outage on autoscaling fail and VS Code retry storm

https://www.theregister.com/saas/2026/08/19/github-blames-8-hour-outage-on-autoscaling-fail-and-v...
1•stevehipwell•17m ago•0 comments

Button Stealer

https://anatolyzenkov.com/stolen-buttons/button-stealer
1•surprisetalk•17m ago•0 comments

Fuji: A minimal harness to deploy agents at scale

https://github.com/paradise-runner/fuji
2•dividedcomet•17m ago•1 comments

Proxima Fusion Raises €411M to Build Europe's Commercial Fusion Champion

https://www.proximafusion.com/press-news/proxima-fusion-raises-eu411-million-to-build-europes-com...
1•robin_reala•18m ago•0 comments

For no apparent reason Oral-B removed flossing from their app

https://blog.jgc.org/2026/08/for-no-apparent-reason-oral-b-removed.html
3•jgrahamc•19m ago•2 comments

The Pattern Cards: How the Spec Became the Source Code

https://kelright.com/blog/the-pattern-cards
2•orbOfOrthanc•20m ago•0 comments

Moderna, Merck cancer vaccine shows promise in late-stage phase three trial

https://www.cnbc.com/2026/08/19/moderna-merck-cancer-vaccine-shows-initial-late-stage-melanoma-da...
9•dominikposmyk•24m ago•1 comments

Show HN: JobEasyApply – AI job auto-applier for LinkedIn, Greenhouse and Lever

https://jobeasyapply.com
4•workplace_1•24m ago•0 comments

GPS-01: A simplified interactive explainer of how GPS works

https://gps-01.dmytro.fyi/
3•dimuuu•24m ago•0 comments

Does ChatGPT recommend your local business? I measured it

https://localseen.ai/
2•iskifogl•26m ago•0 comments

Show HN: Carno.js – a Nest-style application framework for Bun

https://github.com/carnojs/carno.js
4•l-crispr•26m ago•0 comments

California regulators restrict by 70% what replacement tires you can buy

https://www.kcra.com/article/san-joaquin-county-maintenance-district-fee-increase/73470859
2•ytNumbers•28m ago•1 comments

PulseMarkt – An AI-powered marketplace for discovering trending products

https://www.pulsemarkt.com/
2•scottchecola•28m ago•0 comments

You Don't Need a Fancy IDP to Build Platform Self-Service in 2026

https://newsletter.masterpoint.io/p/you-don-t-need-a-fancy-idp-to-build-self-service-in-2026
3•mooreds•30m ago•0 comments

"This is how great powers decline" [video]

https://www.youtube.com/watch?v=s6qIYufgvg8
2•mooreds•30m ago•1 comments

Firefox 154.0 Released

https://www.firefox.com/en-US/firefox/154.0/releasenotes/
5•DemiGuru•30m 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.