frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

As A.I. Accelerates, Governments Are Increasingly Being Left Behind

https://www.nytimes.com/2026/09/27/technology/ai-government-regulation.html
1•Betelbuddy•2s ago•0 comments

Show HN: Sigilla – A Lexicon of Marks

https://symbol.wiki/?q=&t=&v=
1•r_singh•5m ago•0 comments

Flipper Zero on Garmin Watch

https://rdnsec.info/projects/flipper-on-garmin/
2•rdn86•6m ago•0 comments

Ownership

https://registerspill.thorstenball.com/p/ownership
1•gpi•16m ago•0 comments

Blend and Haul: Fertilizer Blending Simulator

https://game.wedgworth.com/
1•paltman•18m ago•1 comments

Raku Koans

https://hankache.github.io/raku-koans/
1•hankache•19m ago•0 comments

Jupyter Ipywidget for Editable Tables

https://pypi.org/project/ipyrowtable/
1•jeffrey_t_b•26m ago•1 comments

Newcomb's Problem and Two Principles of Choice (1969) [pdf]

https://danielhoek.com/wp-content/uploads/2020/02/Nozick-Newcombs-Problem-and-Two-Principles-of-C...
2•doener•33m ago•0 comments

Predictable Swarm Scaling

https://wenhaochai.com/blogs/predictable-swarm-scaling.html
1•arkwor•34m ago•0 comments

Show HN: Fusor – Like Vue, but the logic is Rust

https://fusor.build
1•andreespirela•34m ago•0 comments

Newcomb's Problem and Two Principles of Choice

https://link.springer.com/chapter/10.1007/978-94-017-1466-2_7
1•doener•35m ago•0 comments

Functional Decision Theory: A New Theory of Instrumental Rationality (2018)

https://arxiv.org/abs/1710.05060
1•doener•36m ago•0 comments

Ask HN: What are people doing with their OpenClaw set ups now?

2•will10pa•37m ago•0 comments

Rene-1: Open-weight classifier sets SOTA on Decision Index (+9 over Jev)

https://huggingface.co/salfatigroup/rene-1-31b-fp8
4•elonsalfati•38m ago•2 comments

What archaeology reveals about the rise of all-powerful rulers

https://knowablemagazine.org/content/article/society/2026/what-archaeology-reveals-about-rise-of-...
2•marojejian•42m ago•1 comments

Cloudflare's 2026 Annual Founders' Letter

https://blog.cloudflare.com/cloudflares-2026-annual-founders-letter/
2•gpi•48m ago•0 comments

Parametrised tests in Rust with named parameters

https://alexwlchan.net/2026/table-driven-rust/
1•hellerve•52m ago•0 comments

Bookmarks, done right: Give your bookmarks a shape worth keeping

https://chromewebstore.google.com/detail/kosh-bookmark-manager/meldjdfnfgefeoegccphimkmgmeamcce
2•havu12•1h ago•0 comments

Being a Doctor Will Never Be the Same After A.I

https://www.nytimes.com/2026/09/25/opinion/ai-doctor-medical-students.html
2•bookofjoe•1h ago•4 comments

OpenAI to Halt Training of Some Models

https://gizmodo.com/openai-to-halt-training-of-some-models-2000817912
4•HiroProtagonist•1h ago•1 comments

US power companies scramble to secure equipment

https://www.reuters.com/business/energy/us-power-companies-scramble-secure-equipment-surging-data...
1•JumpCrisscross•1h ago•0 comments

A Quick Guide on Creating a Design System

https://www.andrewcoyle.com/blog/a-quick-guide-on-creating-a-design-system
1•SenHeng•1h ago•1 comments

Locked out: Why young Europeans can't afford to buy homes

https://www.euronews.com/2026/09/23/locked-out-why-young-europeans-cant-afford-to-buy-homes
2•JumpCrisscross•1h ago•0 comments

Washington Challenges Brussels' Authority over X

https://reclaimthenet.org/washington-challenges-brussels-authority-over-x
2•miohtama•1h ago•0 comments

Five Million Robots Now Operate in Factories Globally

https://ifr.org/ifr-press-releases/news/five-million-robots-now-operate-in-factories-globally
1•JumpCrisscross•1h ago•0 comments

Advice to a Beginning Software Engineer

https://www.seangoedecke.com/advice-to-a-beginning-software-engineer/
1•donsquibio•1h ago•0 comments

SpaceX Pivots Away from Space

https://www.ft.com/content/0fd15797-ac89-4222-a4bb-03a6a1330f48
5•kristianp•1h ago•4 comments

Diagnosing and Mitigating Tool-Call Repetition in MiMo-v2.6

https://mimo.xiaomi.com/blog/mimo-v2-6-tool-call-repetition
2•bashtoni•1h ago•1 comments

3D necroprinting: Leveraging biotic material as the nozzle for 3D printing

https://www.science.org/doi/10.1126/sciadv.adw9953
1•ColinWright•1h ago•0 comments

How many strings can you create per second?

https://lemire.me/blog/2026/09/25/how-many-strings-can-you-create-per-second/
2•kristianp•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.