frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

KotlinLLM Is Going Open Source

https://blog.jetbrains.com/research/2026/07/kotlinllm-open-source/
1•theanonymousone•1m ago•0 comments

Show HN: Roamr – a CLI that picks the best saved WiFi, and tells you why

https://github.com/sourabh-khot65/roamr
1•sourabh65•2m ago•0 comments

Google DeepMind Disbands AlphaFold Team as AI Strategy Shifts Toward Gemini

https://finance.yahoo.com/technology/ai/articles/market-chatter-alphabet-apos-google-093407849.html
1•theanonymousone•3m ago•0 comments

Tracked Capabilities for Safer Agents

https://martinodersky.substack.com/p/tracked-capabilities-for-safer-agents
1•odersky•4m ago•1 comments

C++ Simulator for Ordnance Penetrators/Kinetic Energy Strike Weapons

https://github.com/omid2007hope/MOP-Simulator
1•omid2007hope•4m ago•1 comments

Allies shrug as US pushes for Strait of Hormuz patrol

https://www.politico.com/news/2026/07/28/iran-us-strait-ofhormuz-allies-patrol-01013659
1•vrganj•7m ago•0 comments

Ask HN: Is paying for a BIMI certificate useful?

1•gojkoa•8m ago•0 comments

SpecForge – A Platform for Authoring Formal Specifications

https://docs.imiron.io/v/0.5.10/en/tour.html
1•agnishom•9m ago•0 comments

Who's a Rat

https://whosarat.com/
1•ustad•10m ago•0 comments

Webflow: Code as the Source of Truth

https://webflow.com/blog/getting-to-the-source
1•tosh•14m ago•0 comments

Korean Stocks Plunge 16% in Two-Day Burst of Retail Selling

https://www.bloomberg.com/news/articles/2026-07-29/korean-stocks-tumble-a-second-day-as-sk-hynix-...
1•emsidisii•18m ago•0 comments

Unpacking Open Source AI: Toward a Framework for Openness in Foundation Models

https://cacm.acm.org/research/unpacking-open-source-artificial-intelligence-toward-a-framework-fo...
1•rbanffy•19m ago•0 comments

Salience Labs Wants to Scale Up AI with Silicon Photonics Optical Switch

https://www.nextplatform.com/connect/2026/07/22/salience-labs-wants-to-scale-up-ai-with-silicon-p...
1•rbanffy•21m ago•0 comments

System-Analysis – Forensische Architektur (Deutschland)

https://github.com/Recursive-Logic-Core/system-analysis
1•ArchMMM•21m ago•0 comments

Show HN: Miget – Free cloud hosting for open source projects (no star minimums)

https://miget.com/open-source-program
1•Ankiit111•21m ago•0 comments

Russia charges Telegram founder Durov with facilitating terrorism

https://www.bbc.co.uk/news/articles/cj4kexqkpzno
1•vinni2•22m ago•0 comments

Amiga Graphics Archive

https://amiga.lychesis.net/index.html
1•Bluestein•24m ago•0 comments

Can rent controls ever work?

https://www.ft.com/content/975da0db-e251-4082-a637-90a6495557be
2•JumpCrisscross•27m ago•0 comments

Never Pay for Online Dating (2010)

https://web.archive.org/web/20100821041938/http://blog.okcupid.com/index.php/why-you-should-never...
2•downbad_•29m ago•0 comments

Trace

https://playtrace.co.uk/
1•bookofjoe•29m ago•0 comments

These European airports now allow up to 2 litres of liquids in hand luggage

https://www.fly4free.com/flight-deals/europe/these-european-airports-now-allow-up-to-2-litres-of-...
1•Markoff•30m ago•0 comments

Russia charges Telegram founder Pavel Durov with aiding terrorism

https://apnews.com/article/russia-telegram-pavel-durov-ukraine-a6efe4692f3415c2046f0893d114174b
1•haburka•31m ago•0 comments

Titan Transients and LLM Scalability

https://queue.acm.org/detail.cfm?id=3819082
1•rbanffy•35m ago•0 comments

TubeRank AI – Free YouTube SEO Tool Built with AI

https://tuberank-ai.com/
2•honar•36m ago•0 comments

Small Instant Website Launcher

https://nanomo.app/login
2•mountain-hawk•40m ago•1 comments

That time when I failed the Microsoft interview

https://ochagavia.nl/blog/that-time-when-i-failed-the-microsoft-interview/
1•wofo•41m ago•1 comments

The Orchestrator's Tax

https://martinfowler.com/articles/orchestrator-tax.html
2•javaeeeee•45m ago•0 comments

The only road in London where you have to drive on the right

https://www.mylondon.news/news/transport/only-road-london-you-drive-30499294
1•theanonymousone•45m ago•0 comments

ProofCouncil: An LLM Agent for Solving Open Mathematical Problems

https://arxiv.org/abs/2607.09474
2•frozenseven•46m ago•1 comments

AI built the app. Now it needs a home

https://velixir.ai/blog/your-ai-built-the-app
1•dbContext•46m 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.