frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Blue Continuum, from the Founder of Nautilus

https://www.bluecontinuummag.com
1•dnetesn•2m ago•0 comments

LogPoints in Intelleji

https://www.jetbrains.com/idea/whatsnew/
1•irannam31•3m ago•0 comments

Duck Hunt: Moving Bauplan from DuckDB to DataFusion

https://bauplanlabs.com/post/duck-hunt-moving-bauplan-from-duckdb-to-datafusion
1•ihnorton•4m ago•0 comments

Tesla opens "Help us grow out fleet" after opening robotaxi to the public

https://www.tesla.com/robotaxi/interest
2•frankacter•5m ago•1 comments

Scoring Tech Talent 2026 [pdf]

https://sprcdn-assets.sprinklr.com/2299/d494ac3f-e752-48cc-900d-82d584be895e-1975427585/Scoring_T...
1•gmays•7m ago•0 comments

An interval-scoped notation framework born from AP Calculus homework

https://github.com/umayl/interval-scoped-notation
1•umayl•11m ago•0 comments

Ask HN: How do you market Open Source Software?

5•Daniel-Pan•13m ago•1 comments

A Tetrational Self-Cleaning Turing Machine

https://nickdrozd.github.io/2026/09/01/tetrational-self-cleaning-turing-machine.html
1•nickdrozd•17m ago•0 comments

Spring Boot Tips: Easiest Way to Provide Environment Variables

https://www.sivalabs.in/blog/spring-boot-tips-easiest-way-to-provide-env-vars/
1•ejboy•20m ago•0 comments

Tesla Begins Offering Rides in a Car Without a Steering Wheel

https://www.nytimes.com/2026/09/03/business/tesla-cybercab-robotaxi-rides.html
5•telotortium•21m ago•0 comments

FrontierMath Erdős

https://epoch.ai/latest/announcing-frontiermath-erdos
1•cainxinth•23m ago•0 comments

Show HN: Jetway, a working airline GDS and message router

https://github.com/adamf/jetway
1•adam_gyroscope•27m ago•0 comments

Congratulations to the Winners of the 2026 Online Journalism Awards

https://awards.journalists.org/2026/09/03/congratulations-2026-oja-virtual-ceremony-winners/
3•rdmuser•31m ago•1 comments

Why I am so against volunteering in academia (ecology-edition)

https://statmodeling.stat.columbia.edu/2026/08/19/why-i-am-so-against-volunteering-in-academia-ec...
2•luu•38m ago•0 comments

British police try to track down theft of 70k pints worth of Guinness stout

https://apnews.com/article/guinness-heist-stout-stolen-truck-depot-pabst-pbr-88b7745450be79af57d3...
2•ChrisArchitect•38m ago•0 comments

Delve (YC W24) accused of misleading customers with 'fake compliance'

https://finance.yahoo.com/sectors/technology/articles/delve-accused-misleading-customers-fake-170...
2•mgh2•39m ago•2 comments

Where Europe Goes to Gig

https://europeancorrespondent.com/en/r/where-europe-goes-to-gig
1•gmays•44m ago•0 comments

Project Xanadu: Even More Hindsight

https://gwern.net/xanadu
4•andsoitis•45m ago•0 comments

Mercury Poisoning Situation at MIT [video]

https://www.youtube.com/shorts/Z78WXXQd4ok
1•fortran77•45m ago•0 comments

Patient Who Received Pig Kidney First to Progress to Human Kidney Transplant

https://hms.harvard.edu/news/patient-who-received-pig-kidney-becomes-first-progress-human-kidney-...
1•bookofjoe•45m ago•0 comments

Burning Man has become a wrinkled sausage fest of aging millennial men

https://nypost.com/2026/09/03/us-news/burning-man-has-become-a-wrinkled-sausage-fest-of-aging-mil...
1•fortran77•46m ago•0 comments

Stream Ciphers and ChaCha20-Poly1305

https://ekunazanu.foo/lab/stream-ciphers/
1•vismit2000•47m ago•0 comments

Release 13.1.5 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.1.5
1•kyisaiah47•48m ago•0 comments

Late Merge

https://third-bit.com/2026/06/03/late-merge/
1•greyface-•49m ago•0 comments

Show HN: a Rust compiler translating Joern CPGs to Nuclei templates

https://medium.com/@mhiritarek/why-i-built-a-deterministic-cpg-to-nuclei-compiler-in-rust-bcb6c7a...
1•Tarek-M•50m ago•0 comments

The Summer of Open Weights

https://martinalderson.com/posts/the-summer-of-open-weights/
1•gmays•55m ago•0 comments

What is Nueralese and Why is it Bad

https://www.lesswrong.com/posts/RCYF2rW8wgusidZk7/what-is-neuralese-and-why-is-it-bad
1•tristanMatthias•56m ago•0 comments

An Alternative to Jira ScriptRunner

https://github.com/ONES-com/onescript-workflow-automation
1•BeautifulONES•56m ago•0 comments

The Last Interview

https://nition.momentstudio.co.nz/p/the-last-interview
2•Nition•59m ago•0 comments

NuFinder, a macOS file manager with real RAID across S3-compatible buckets

https://nufinder.org/
1•LouisvilleGeek•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.