frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: AgentPostage – Send physical mail with agents

https://agentpostage.com/
1•luca-ctx•21s ago•0 comments

Iran strikes on Amazon data centers caused permanent loss of customer data

https://arstechnica.com/gadgets/2026/09/iran-strikes-on-amazon-data-centers-caused-permanent-loss...
1•jonbaer•41s ago•0 comments

Joining the dots between big AI

https://www.ft.com/content/8475dc9b-b2d4-4e10-a6b6-12796b11758a
1•AnodicElegy•2m ago•0 comments

Former Labour deputy Watson joins Palantir as £330M NHS deal nears break point

https://www.theregister.com/public-sector/2026/09/18/former-labour-deputy-tom-watson-joins-palant...
1•jjgreen•2m ago•0 comments

Euro-Office receives desktop app

https://www.heise.de/en/news/Euro-Office-receives-desktop-app-11456099.html
1•vrganj•3m ago•0 comments

Show HN: Talos – A personal agent whose kernel gates every tool call

https://github.com/talos-kernel/Talos
1•kurdman_007•4m ago•0 comments

The lab where the Arm AGI CPU is brought to life – ServeTheHome

https://www.servethehome.com/inside-the-lab-where-the-arm-agi-cpu-is-brought-to-life/
1•rbanffy•5m ago•0 comments

Is AI going to destroy human civilization? – Dave Jorgenson [video]

https://www.youtube.com/watch?v=ao1HZ-Ww46Y
1•Topfi•7m ago•0 comments

Odyssey-3: A General-Purpose Physical Intelligence

https://odyssey.systems/introducing-odyssey-3
1•gmays•7m ago•1 comments

What would 'human extinction' or the end of internet look like

1•meta-level•8m ago•0 comments

JavaScript Error Handling Patterns That Matter

https://jsdevspace.substack.com/p/10-javascript-error-handling-patterns
1•javatuts•9m ago•0 comments

NATS publishes preliminary report on technical incident of 8 September

https://www.nats.aero/news/nats-publishes-preliminary-report-on-technical-incident-of-8-september/
1•asplake•9m ago•0 comments

Mona's Bug Bash (Retro-style fighting GitHub Game)

https://bug-bash.github.com/
1•DropDead•10m ago•0 comments

Regeneration of used batteries via electrode–electrolyte interphase dissolution

https://pubs.rsc.org/ee/article/19/13/4199/1260994/Direct-electrode-to-electrode-regeneration-of-end
1•dgellow•11m ago•0 comments

Is Anthropic Protecting Us, or Just Playing Us?

https://medium.com/tech-ai-chat/is-anthropic-protecting-us-or-just-playing-us-09e773caffe5
1•elye•12m ago•0 comments

Show HN: Majority – Find new music and vote on your favorites

https://majority-eight.vercel.app/
1•monoRepo11•17m ago•0 comments

Warren Buffet's last Berkshire letter: "Father Time always wins." [pdf]

https://www.berkshirehathaway.com/news/sep1826.pdf
1•j-bu•19m ago•0 comments

What Using AI Therapy Gets Wrong

https://emilylee293105.substack.com/p/what-ai-therapy-gets-wrong-904
3•fhe•20m ago•0 comments

Show HN: Jev beats Astra, fable, Opus at RF engineering task

https://twitter.com/cohavygal/status/2100931737291223265
1•galcohavy•20m ago•0 comments

An Empirical Study of Harness Design for Coding Agents

https://arxiv.org/abs/2609.20804
9•wek•27m ago•0 comments

The Trap of "Phantom TAM"

https://marketinvestigation.beehiiv.com/p/the-hidden-trap-of-phantom-tam-why-ad-dependent-platfor...
1•mapendembet•29m ago•0 comments

I Tried to Leave the Terminal Eight Times. The Ninth Stuck

https://thoughts.jock.pl/p/terminal-to-agentic-ide-bb-journey-2026
1•joozio•30m ago•0 comments

Germany turns on Brussels as Chinese car sales on track to exceed 1M in 2026

https://www.euronews.com/my-europe/2026/09/17/germany-turns-on-brussels-as-chinese-car-sales-on-t...
2•Markoff•30m ago•1 comments

Vulkan Documentation Project

https://docs.vulkan.org/spec/latest/index.html
1•ibobev•31m ago•0 comments

Gabor Fields: Orientation-Selective Level-of-Detail for Volume Rendering

https://arcanous98.github.io/projectPages/gaborVolumes.html
1•ibobev•31m ago•0 comments

12-Factor Agents – Principles for building reliable LLM applications

https://github.com/humanlayer/12-factor-agents
2•beepdyboop•31m ago•0 comments

Handling 100M time series with Arrow, Parquet, and object storage

https://www.parseable.com/blog/how-parseable-handles-100-million-time-series
1•yashdotrv•32m ago•0 comments

TLDR; what the heck is Jev?

https://www.jrzs.dev/blog/what-the-heck-is-jev/
1•jrhey•32m ago•0 comments

C++26: Trivial infinite loops are no longer undefined behaviour

https://www.sandordargo.com/blog/2026/09/16/cpp26-trivial-infinite-loops
3•ibobev•32m ago•0 comments

DJ Shadow looks back at "Entroducing" and other early work

https://www.msn.com/en-us/news/other/dj-shadow-spent-decades-digging-for-records-now-hes-digging-...
3•ilamont•35m 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.