frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Visualize Git commit histories as animated force-directed graphs

https://github.com/nshcr/git-commits-threadline
1•wwhxd•1m ago•0 comments

Track what AI models say about candidates and races

https://caucus-ai.com/
1•m-hodges•2m ago•0 comments

I charge for a single-file web app I can't protect from piracy

https://joeldare.com/i-charge-for-a-single-file-web-app-i-cant-protect-from-piracy
1•codazoda•3m ago•1 comments

Show HN: Sabela – A Reactive Notebook for Haskell

https://www.datahaskell.org/blog/2026/03/01/sabela-reactive-haskell-notebooks.html
1•mchav•4m ago•0 comments

Day #15 of Rediscovering FreeBSD

https://tnorlin.se/posts/2026-03-01-day15-of-rediscovering-freebsd/
1•vermaden•6m ago•0 comments

Von Neumann on Consciousness in Quantum Mechanics

https://arxiv.org/abs/2508.15871
1•andsoitis•8m ago•0 comments

Enveil – Encrypted vault that replaces .env files with runtime secret injection

https://github.com/MaximoCoder/Enveil
1•enveil•9m ago•1 comments

Show HN: Dispatcher – simple yet ergonomic coding agent management

https://dispatcher.sh
1•thebuilderjr•11m ago•0 comments

A Day in the Life of an Ensh*ttificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
3•johnnyApplePRNG•11m ago•0 comments

Digital products and services are getting worse – but the trend can be reversed

https://www.forbrukerradet.no/news-in-english/digital-products-and-services-are-getting-worse-but...
1•pabs3•11m ago•0 comments

Expert Beginners and Lone Wolves will dominate this early LLM era

https://www.jeffgeerling.com/blog/2026/expert-beginners-and-lone-wolves-dominate-llm-era/
1•twapi•12m ago•0 comments

Is anyone compressing AI models for the 4B people without GPUs or internet?

1•yashpxl•12m ago•0 comments

Ask HN: How long before AI become a deity?

1•WheelsAtLarge•13m ago•0 comments

Politicians are being sold AI-powered 'digital fighters'

https://www.nationalobserver.com/2026/02/24/investigations/logivote-ai-political-messaging
1•moogly•14m ago•0 comments

Show HN: Action Relay – Every App Intent as an MCP Tool

https://tarq.net/posts/action-relay-shortcut-actions-mcp/
2•TarqDirtyToMe•16m ago•0 comments

What do you want in a database client in 2026?

1•m2fauzaan•19m ago•0 comments

Building personal software is now Practical

https://divanv.com/post/age-of-personal-software/
1•freediver•27m ago•0 comments

Computer-generated dream world: Virtual reality for a 286 processor

https://deadlime.hu/en/2026/02/22/computer-generated-dream-world/
4•MBCook•31m ago•0 comments

Show HN: I built open source Gmail organizer because I refused to pay $30/month

https://github.com/Lakshay1509/NeatMail
1•mafia15•37m ago•1 comments

How to Record and Retrieve Anything You've Ever Had to Look Up Twice

https://ellanew.com/2026/03/02/ptpl-197-record-retrieve-from-a-personal-knowledgebase
2•Curiositry•39m ago•0 comments

Thinking Together A platform for problems AI can't solve

https://github.com/ALEX-13-Chen/Thinking---Together
1•alex-thinking•40m ago•1 comments

Major AI companies build weapons.Here' the full picture,sourced to public record

https://nobolee88.github.io/three-doors/
3•NoBoLee88•41m ago•0 comments

Show HN: ConfigClarity – Visualize cron overlaps before they crash your server

https://www.configclarity.dev/
3•metriclogic•41m ago•0 comments

Show HN: Ajax-hooker – one hook to intercept XHR and fetch (with stream support)

https://github.com/Arktomson/ajaxInterceptor
1•arktomson•46m ago•0 comments

Show HN: PrivacyShield – Mask your PII before it reaches ChatGPT/Claude

https://www.piiblock.com
1•BuddhikaR•46m ago•0 comments

Software Is Eating the Work

https://www.felixstocker.com/blog/software-is-eating-the-work
1•mooreds•48m ago•0 comments

Everett shuts down Flock camera network after judge rules footage public record

https://www.wltx.com/article/news/nation-world/281-53d8693e-77a4-42ad-86e4-3426a30d25ae
48•aranaur•49m ago•11 comments

You Know What to Do

https://www.rickmanelius.com/p/you-know-what-to-do
2•mooreds•49m ago•0 comments

Photos show China's low-cost lifestyle in semiabandoned housing complexes

https://apnews.com/photo-gallery/china-property-cheap-housing-abandoned-9f642584aea206204dcfdd10a...
5•mooreds•49m ago•0 comments

Show HN: OpenTamago – P2P GenAI Tamagotch

https://open.tamago.chat
2•boiling_eggs•50m ago•0 comments
Open in hackernews

Show HN: AgentShield SDK – Runtime security for agentic AI applications

https://pypi.org/project/agentshield-sdk/
2•iamsanjayk•10mo 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•10mo 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•10mo 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.