frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mojo in Mid-2026: From Python-Inspired Experiment to Production Systems Language

https://www.reddit.com/r/AgentContext_dev/comments/1vn5xef/mojo_in_mid2026_from_pythoninspired_ex...
1•javaeeeee•4m ago•0 comments

Operational Guidelines for DNS Transport in Mixed IPv4/IPv6 Environments

https://datatracker.ietf.org/doc/rfc10001/
1•m_montazeri•7m ago•0 comments

FoodGuessr

https://www.foodguessr.com
1•choult•9m ago•0 comments

Potatoes 'boil' in the ground as record heatwave sweeps across swathes of Asia

https://www.theguardian.com/world/2026/aug/13/asia-heatwave-south-korea-potatoes-boil-ground-reco...
3•akbarnama•12m ago•0 comments

Cyberattack on Taiwan Exposes the Execution-Finality Gap

https://zenodo.org/records/21915825
1•sangamdas1982•13m ago•0 comments

NightmareEclipse Publishes New Windows Defender Zero Day

https://cyberplace.social/@GossiTheDog/117082623896479140
1•_tk_•16m ago•0 comments

Romania to shut down nuclear plant due to low Danube level

https://www.lemonde.fr/en/international/article/2026/08/13/romania-to-shut-down-nuclear-plant-due...
2•geox•19m ago•0 comments

Lawsuit fights Ellison-Trump corruption's harm to news outlets

https://freedom.press/issues/lawsuit-fights-ellison-trump-corruptions-harm-to-news-outlets/
3•abdelhousni•21m ago•0 comments

AI 2027 Tracker: Tracking predictions from the AI 2027 scenario against reality

https://ai2027-tracker.com/
2•merksittich•25m ago•0 comments

Gnome Shell Design Dreams

https://blogs.gnome.org/shell-dev/2026/08/11/gnome-shell-design-dreams/
1•birdculture•25m ago•0 comments

Terminate-and-Stay-Resident Program

https://en.wikipedia.org/wiki/Terminate-and-stay-resident_program
2•Bluestein•29m ago•0 comments

Rate of climate change affects stability of the AMOC

https://www.eurekalert.org/news-releases/1139863
1•TechTechTech•31m ago•0 comments

List of Unsolved Problems in Mathematics

https://en.wikipedia.org/wiki/List_of_unsolved_problems_in_mathematics
2•frozenseven•33m ago•0 comments

Affordable AI+human insight helped us close 40yr sporadic group Galois problem

https://www.shaowuzhang.com/files/how-we-found-m23.pdf
3•oliculipolicula•35m ago•0 comments

Show HN: Wala Vibes – scene-based radio for nostalgic Indian music

https://walavibes.wtf
1•yunweiguo•37m ago•0 comments

If I own Claude's outputs why can't I train my own model on them?

https://support.claude.com/en/articles/12326764-can-i-use-my-outputs-to-train-an-ai-model
16•DarenWatson•37m ago•5 comments

After a lot of thought, we've decided to retire SvelteJobs

https://sveltejobs.com/
2•thunderbong•45m ago•0 comments

Apple TV just added a bunch of classic movies to stream for free

https://9to5mac.com/2026/08/12/apple-tv-just-added-a-bunch-of-classic-movies-to-stream-for-free/
3•tosh•49m ago•0 comments

Spicy tale of an App Store fraud

https://lapcatsoftware.com/articles/2026/8/4.html
3•latexr•52m ago•0 comments

GitSkills: A Dataset of Agent Skills on GitHub

https://arxiv.org/abs/2608.10906
3•miningthemall•52m ago•0 comments

Win-V combo from Windows on Ubuntu

https://leo98ml.github.io/win-v/
1•havaianaslife•53m ago•0 comments

IOI 2026 Final Ranking

https://ranking.ioi2026.uz/
1•pykello•54m ago•0 comments

One VC burns through tokens a day to find the next unicorn

https://restofworld.org/2026/activate-interview-vc-sovereign-ai/
2•nanfinitum•57m ago•0 comments

Twitch now uses your channel to train generative AI by default

https://twitter.com/zachbussey/status/2087573860929478785
3•haunter•57m ago•0 comments

Drone Sightings Happening at Diego Garcia, US's Remote Strategic Island Outpost

https://www.twz.com/news-features/drone-sightings-are-happening-at-diego-garcia-americas-remote-s...
2•rbanffy•58m ago•0 comments

Program = Proof [pdf]

https://www.lix.polytechnique.fr/Labo/Samuel.Mimram/teaching/pp/course.pdf
1•leonidasrup•59m ago•0 comments

DeepSWE August 13 Update with Grok 5.6 and DeepSeek v4 Pro 0813

https://deepswe.datacurve.ai/
1•theanonymousone•59m ago•0 comments

Boltz shuts down Bitcoin swaps, citing AI attacks outpacing patching

https://davidebtc186.substack.com/p/ai-vs-ai-how-boltzs-shutdown-reveals
1•shadowbip•59m ago•0 comments

Medical data of 19M Poles stolen in major breach

https://www.pap.pl/en/news/medical-data-19-million-poles-stolen-major-breach-minister-says
4•mromnia•1h ago•1 comments

Quincunx: A discovery engine for the sparse domains

https://arsinq.com/articles/quincunx/
2•knipnehpets•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.