frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Level-Triggered vs. Edge-Triggered Notification Explained

https://embeddedpathashala.com/level-triggered-vs-edge-triggered-notification-explained/
1•ankitg12•3m ago•0 comments

How we stopped working for our agents: when software factory DOESN'T work

https://islo.dev/blog/how-we-stopped-working-for-our-agents/
1•adamgold7•4m ago•0 comments

Show HN: I read 177 products' websites to find how they got users

https://howtodistribute.com
1•matthiasMRC•4m ago•0 comments

Superintelligence is a dragon: What Mark Zuckerberg misunderstands about AI

https://www.platformer.news/zuckerberg-ai-manifesto-dragons/
2•swolpers•6m ago•0 comments

Lean prover Dirac solves the 2026 International Mathematical Olympiad

https://www.boundlessintuition.com/blog/dirac-perfect-score-imo-2026
3•bi_labsx•6m ago•1 comments

Se-harness – portable, tool-agnostic AI coding harness generator

https://github.com/manuuuel/seh
1•manuuuel•8m ago•0 comments

ASD Has Handed Australian and New Zealand Boards 16 Questions on Frontier AI

https://insiconcyber.com/blog/asd-frontier-ai-board-considerations
1•insicon_cyber•14m ago•0 comments

OpenAI launches GPT-5.6-Cyber – 95% completion on advanced cybersecurity tasks

https://venturebeat.com/technology/openai-launches-gpt-5-6-cyber-with-reduced-refusals-95-complet...
1•ashurandi•16m ago•0 comments

LLMs and Xfwl4

https://www.spurint.org/journal/2026/07/llms-and-xfwl4
1•LaSombra•17m ago•0 comments

SB116 Programmers Calculator

https://unimplementedtrap.com/sb116-programmers-calculator/
1•jandeboevrie•23m ago•0 comments

IsThisBS?

https://isthisbs.org/
3•yanko•26m ago•0 comments

What Design Engineers Earn in Europe: Results from a Survey of 106

https://hymera.co/research-design-engineer-salary-europe
4•ablazevics•31m ago•2 comments

Moving integer division to floating-point is trivial

http://marc-b-reynolds.github.io/math/2026/08/10/IntDivByFP.html
3•matt_d•33m ago•0 comments

Peter Steinberger: "Fun Is Velocity" [video]

https://www.youtube.com/watch?v=whcfSGN6CAU
3•tosh•34m ago•0 comments

Half of Europe's towns and villages have fewer residents than 60 years ago

https://correctiv.org/en/europe/2026/04/21/half-of-europes-towns-and-villages-have-fewer-resident...
23•Pamar•36m ago•12 comments

OLM to PST Converter

https://www.perfectdatasolutions.com/en/olm/olm-to-pst-converter.html
2•tieanderson•39m ago•0 comments

The AI threat to India's IT jobs machine

https://www.ft.com/content/dee4bd2c-fbad-4713-9b14-22d441967ce4
3•JumpCrisscross•40m ago•0 comments

OpenAI wraps $7B share sale ahead of potential IPO

https://www.cnbc.com/2026/08/10/openai-wraps-7-billion-share-sale-ahead-of-potential-ipo-.html
7•kristianp•41m ago•2 comments

France Bans Unsolicited Telemarketing Calls

https://www.nytimes.com/2026/08/11/world/europe/france-ban-unsolicited-telemarketing-calls.html
12•JumpCrisscross•45m ago•1 comments

New Features in Python 3.15

https://www.infoworld.com/article/4166693/the-best-new-features-in-python-3-15.html
3•theanonymousone•47m ago•0 comments

MP3 piracy was born August 10, 1996

https://dfarq.homeip.net/the-first-pirated-mp3/
2•giuliomagnifico•51m ago•0 comments

DeepSeek: Reverse Engineering an AI Assistant by Interviewing Itself

https://manish.sh/writings/models/inside-deepseek-reverse-engineering-an-ai-assistant-by-intervie...
15•ms7892•52m ago•2 comments

Trump Said to Have Used Military Jet to Leave Turkey Amid Threats

https://www.nytimes.com/2026/08/10/us/politics/trump-plane-ruse.html
2•blltprfmnk•55m ago•0 comments

Show HN: Mcptoon – MCP CLI client that cuts tool discovery tokens by 97%

https://github.com/activeing123/mcptoon
20•mcptokensaver•55m ago•7 comments

Bow Windshield

https://en.wikipedia.org/wiki/Bow_windshield
4•CalChris•58m ago•0 comments

Coop Roost: Free, Open Source Child Safety Infrastructure for Every Platform

https://roost.tools/blog/coop-1-0-world-s-first-free-open-source-child-safety-infrastructure-for-...
2•tyfrankiv•58m ago•0 comments

Show HN: ConfigLedger -Find configuration drift across code, CI, Docker and docs

https://github.com/DevFoundry-labs/configledger/
2•DevFoundry-labs•59m ago•0 comments

Show HN: NiceShot AI – The analytics layer competitive games forgot to add

https://github.com/karimm-ai/NiceShot_AI
2•niceshot-ai•1h ago•0 comments

Tlbic Supplement v11.0: Added Question for Readers in Other Languages

https://drive.google.com/file/d/1svnkbPHkdK2Oyp2T2kAhhQna1ANtH7bO/view?usp=drive_link
1•michikawa59•1h ago•2 comments

Checkly: Metabase Security Incident

https://www.checklyhq.com/blog/metabase-security-incident/
1•sangeeth96•1h 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.