frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Dari-docs – Optimize your docs using parallel coding agents

https://github.com/mupt-ai/dari-docs
1•byhong03•45s ago•0 comments

The Great Token Wager

https://iainschmitt.com/post/tokens-and-taiwan
1•abnercoimbre•47s ago•0 comments

VSM Loop: Viable-System Orchestration for Multi-Agent R&D

https://github.com/7mind/nix-config/blob/main/pkg/llm-prompts/skills/vsm-loop/content.md
1•pshirshov•59s ago•0 comments

Exploit released for new PinTheft Arch Linux root escalation flaw

https://www.bleepingcomputer.com/news/linux/exploit-released-for-new-pintheft-arch-linux-root-esc...
1•Brajeshwar•1m ago•0 comments

Ask HN: Shouldn't Google need to give a public statement about Railway incident?

3•srameshc•2m ago•0 comments

Show HN: Prism Coder – Qwen3.5-14B fine-tuned for MCP tool-routing decisions

https://github.com/dcostenco/prism-coder
2•dcostenco4•3m ago•0 comments

Nobody Cares, Write Anyway

https://blog.absurdpirate.com/nobody-cares-write-anyway/
1•cyanbane•5m ago•0 comments

Brazil's instant payment system faces scrutiny from Trump administration

https://apnews.com/article/brazil-payment-system-pix-investigation-credit-card-fd04428f309a2b3299...
1•lbrito•6m ago•1 comments

Meditations on "Non-Public" AI

https://guille.site/posts/meditations-stories/
1•LolWolf•7m ago•0 comments

Will agents like Git any more than we do?

https://www.amplifypartners.com/blog-posts/will-agents-like-git-any-more-than-we-do
2•thramp•7m ago•1 comments

Microcosm Industries

https://microcosm.industries/
2•arbesman•9m ago•0 comments

The missing men of the American marriage market

https://text.npr.org/g-s1-122695
1•mooreds•9m ago•0 comments

Harvard Caps A's as Selective Colleges Attack Grade Inflation

https://www.nytimes.com/2026/05/20/us/harvard-grade-inflation.html
1•galleywest200•11m ago•0 comments

Show HN: Catio - AWS Diagrams and Architecture Copilot

https://www.catio.tech/
1•sirmilesdu•12m ago•0 comments

A Cattle Ranch Is Doing What the Ivy League Can't

https://www.nytimes.com/2026/05/20/opinion/deep-springs-college-ivy-league-education.html
1•7402•12m ago•1 comments

The Rise of the High-Range, Less Expensive E.V

https://www.nytimes.com/2026/04/27/upshot/cheap-electric-cars-gas-prices.html
1•mooreds•12m ago•0 comments

Transformer vs. Post-Transformer Debate: Kaiser, Kosowski, Jones, Lechner [video]

https://www.youtube.com/watch?v=hCjoMLuCuLQ
2•Cappybara12•12m ago•1 comments

Hormuz closure could trigger 'agrifood shock', price crisis within a year

https://www.reuters.com/world/middle-east/hormuz-closure-could-trigger-agrifood-shock-price-crisi...
2•mooreds•12m ago•0 comments

Show HN: Server-side analytics catches AI crawlers and attackers JS misses

https://radar.syswp.com.br/
1•aporce•13m ago•0 comments

Samsung Overtakes Apple for Top Smartphone Customer Satisfaction

https://www.macrumors.com/2026/05/20/samsung-overtakes-apple-for-customer-satisfaction/
1•ndr42•13m ago•0 comments

CEO Walks Back Comment About Replacing 'Lower-Value Human Capital' with AI

https://www.wsj.com/finance/banking/ceo-walks-back-comment-about-replacing-lower-value-human-capi...
4•Brajeshwar•15m ago•1 comments

"This paper is LLM reviewed" > "this paper is peer-reviewed"

https://www.youtube.com/watch?v=m1ddx427bHI
1•bicepjai•16m ago•1 comments

Dopamine disruption in mouse entorhinal cortex knock-in model of Alzheimer's dis

https://www.nature.com/articles/s41593-026-02260-w
1•bookofjoe•16m ago•0 comments

Erasing Existentials

https://wolfgirl.dev/blog/2026-05-20-erasing-existentials/
2•speckx•17m ago•0 comments

Ban Non-Compete Clauses

https://democracyjournal.org/magazine/80/ban-non-compete-clauses/
2•cainxinth•21m ago•1 comments

SilverBullet+ Release

https://community.silverbullet.md/t/silverbullet-release/4142
1•edward•21m ago•0 comments

Tor X FTC Quadratic Funding

https://internetfreedom.torproject.org
1•Cider9986•21m ago•0 comments

Sycophantic AI Decreases Prosocial Intentions and Promotes Dependence (2025)

https://arxiv.org/abs/2510.01395
1•mpweiher•21m ago•0 comments

Command A+: Making sovereign agentic capabilities available to all

https://cohere.com/blog/command-a-plus
1•tulpa•23m ago•1 comments

Show HN: Homecrew – Share agent skills across your team and keep them in sync

https://crew.logic.inc
2•sgk284•25m 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.