frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

DevWars – Battle for Attention

https://devwars.lol/
1•PatsTools•52s ago•0 comments

BRIMAR (STC) Tunograph, Visual Tuning Indicator

https://lampes-et-tubes.info/ti/ti014.php
1•Bluestein•2m ago•0 comments

Show HN: Make open-source contributions fun and meaningful

https://helpwanted.dev/
1•LeonidBugaev•3m ago•0 comments

My notes on Pre-Seed in 2026

https://twitter.com/brettcalhounn/status/2094800636000804978
1•tosh•3m ago•0 comments

The flame graph was wrong by 57×. So I'm building a profiler

https://minogin.com/the-flame-graph-was-wrong-by-57x-so-im-building-a-profiler/
1•minogin•7m ago•0 comments

Deployah v0.8.0: tasks, CronJobs, and an init wizard

https://deployah.dev/
4•atkrad•7m ago•0 comments

Fast Kernel Headers (2022)

https://lwn.net/ml/linux-kernel/YdIfz+LMewetSaEB@gmail.com/
1•tosh•9m 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
1•klelatti•14m ago•0 comments

Show HN: Bags for Your Coins

https://www.21bags.io/
1•npguy•14m ago•0 comments

Show HN: Use AI API and scheduled Active Recall to pass any exam: LongTerMemory

https://longtermemory.com
1•aledevv•15m ago•0 comments

Show HN: Connection-Agnostic Presence Tracking for Distributed Back End

https://zenodo.org/records/21717242
1•duckydude20•15m ago•0 comments

Pmarca Guide to Personal Productivity (2007)

https://pmarchive.com/guide_to_personal_productivity.html
1•tosh•17m ago•0 comments

Internet Movie Cars Database

https://www.imcdb.org
1•dewey•19m ago•0 comments

Clean up your Android TV

https://tv.cobanov.dev/
1•giuliomagnifico•20m ago•0 comments

Three Common Misconfigurations in DMARC, BIMI, and SPF Records

https://senderledger.com/articles/three-common-misconfigurations-dmarc-bimi-spf
1•adulion•20m ago•0 comments

NATO DIANA announces 15 innovators to move forward to Mission Track

https://foxandlion.pub/news/nato-diana-announces-full-cohort-of-15-innovators-to-move-forward-to-...
5•ewfeber•23m ago•0 comments

Not a Translator

https://akgang-rgb.github.io/NotaTranslator/
1•akgang•24m ago•1 comments

Why the stock market bubble is likely to burst [video]

https://www.youtube.com/shorts/wdBEU87mCnU
1•thelastgallon•26m ago•0 comments

Sality Malware Disrupted in International Cyber Takedown

https://www.justice.gov/usao-cdca/pr/sality-malware-disrupted-international-cyber-takedown
1•doener•28m ago•0 comments

Do you remember Silicon Valley bro app?

https://brocoach.win/
1•harshalone•30m ago•1 comments

SoulAuth – Rust identity infrastructure for humans and AI agents

https://github.com/TrantorLabs/SoulAuth
2•Aziell•31m ago•0 comments

Riemann Hypothesis: Improved to 67.251

1•TakayukiKomada•32m ago•0 comments

Chippytea

https://www.chippytea.com
2•mcilroy•32m ago•0 comments

RFC9369: QUIC Version 2

https://www.rfc-editor.org/rfc/rfc9369.txt
1•tosti•32m ago•0 comments

Fable 5.1, Enterprise Frontier Safeguards

https://stratechery.com/2026/fable-5-1-enterprise-frontier-safeguards/
1•swolpers•32m ago•0 comments

Quasar 438B: Europe's Leading AI Model

https://multiversecomputing.com/resources/introducing-quasar-438b-europe-s-leading-ai-model
1•amunozo•33m ago•0 comments

LongCat-2.0 is now free to try in cline

https://twitter.com/Meituan_LongCat/status/2094996391387111865
1•oliviayii•37m ago•0 comments

Fake 10 Downing St (UK PM home) listing on Booking.com shows security failures

https://www.theguardian.com/money/2026/sep/02/fake-10-downing-street-listing-booking-com-highligh...
2•robaato•40m ago•1 comments

PDF4WCAG 1.12: PDF Accessibility Validation for WCAG and PDF/UA

https://pdf4wcag.com/blog-news/pdf4wcag-release-1.12
1•smartdev01•41m ago•3 comments

Can LLMs Discover Scientific Laws in Real and Parallel Worlds?

https://yiyihum.github.io/SciLaws-Bench/
1•root-parent•44m ago•1 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.