frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tezcatl: A 2MB alternative to Puppeteer for scraping on macOS

https://george.mand.is/2026/05/tezcatl-a-2mb-alternative-to-puppeteer-for-scraping-on-macos/
1•xrd•1m ago•0 comments

Tokens or Humans? The New AI Cost Trade-Off Reshaping Corporate Budgets [video]

https://www.youtube.com/watch?v=niBP4qhNSWw
1•mgh2•7m ago•0 comments

Britain has crushed immigration, and harmed itself

https://www.economist.com/britain/2026/05/28/britain-has-crushed-immigration-and-harmed-itself
1•Anon84•7m ago•0 comments

How to Think Like a World-Class Marketer – Rory Sutherland

https://fs.blog/knowledge-project-podcast/rory-sutherland-2/
1•walterbell•9m ago•0 comments

A Closer Look at the Damage to New Glenn's Launch Pad

https://www.youtube.com/watch?v=5DAS7i9VD2w
2•busymom0•25m ago•0 comments

US to Appeal Judge's Order for Broad Refund of Trump Tariffs

https://www.bloomberg.com/news/articles/2026-05-29/us-to-appeal-judge-s-order-for-broad-refund-of...
2•petethomas•25m ago•1 comments

Software Architecture After AI

https://brianguthrie.com/p/software-architecture-after-ai/
1•bguthrie•27m ago•0 comments

Russia is being beaten by robots in Ukraine [video]

https://www.youtube.com/watch?v=_9GkUkIaOno
2•breve•31m ago•0 comments

Ember.js 7.0

https://blog.emberjs.com/ember-released-7-0/
4•satvikpendem•33m ago•1 comments

Top Three Favorite Apple Apps (Mac/iPhone)?

2•CootieRaccoon•34m ago•0 comments

What Is a Dickover?

https://daringfireball.net/2026/05/what_is_a_dickover
13•tambourine_man•36m ago•0 comments

China Limits Overseas Travel for AI Talent at DeepSeek, Alibaba, Private Firms

https://www.bloomberg.com/news/articles/2026-05-26/china-expands-travel-curbs-to-top-ai-talent-at...
4•gmays•36m ago•0 comments

Daze in the Canopy: Birding Panama at My Own Pace

https://indianaaudubon.org/2026/05/26/daze-in-the-canopy-birding-panama-at-my-own-pace/
3•petethomas•40m ago•0 comments

What's Next in Computer Graphics? [video]

https://www.youtube.com/watch?v=sIcGH3M5yPc
2•colonCapitalDee•43m ago•0 comments

Project Feather – Faster local mode Spark

https://docs.google.com/document/u/0/d/1Nphejrf_vh4YRECn0JPgKClqxDS_lB6wufZFJQxyY98/edit
2•kermatt•44m ago•0 comments

Raise your hands for a fireworks show

https://aitinkerers.org/fireworks
2•jheitzeb•44m ago•1 comments

Markspresso – Brew Static Sites from Markdown

https://github.com/cybersonic/markspresso
2•rmason•45m ago•0 comments

'He's full of s–t': JPM's Dimon rips Coinbase CEO, escalates crypto bill fight

https://www.politico.com/news/2026/05/29/dimon-jpmorgan-crypto-banks-coinbase-armstrong-00942998
4•petethomas•50m ago•2 comments

Hacker News MCP Server

https://github.com/devrelopers/hackernews-mcp
4•DavidCanHelp•58m ago•2 comments

Spitting Out the Agentic Kool-Aid

https://openpath.quest/2026/spitting-out-the-agentic-kool-aid/
4•Curiositry•58m ago•0 comments

Bias Compounds, Variance Washes Out

https://convergentthinking.sh/posts/bias-compounds-variance-washes-out/
3•jxmorris12•1h ago•0 comments

I built an agent-run 1:1 email newsletter for competitive intelligence (free)

https://rivalnewsletter.com/
2•seandotexe•1h ago•1 comments

Brain Deserves a Better Controller with PiEEG XR

https://medium.com/@ildarr2016/your-brain-deserves-a-better-controller-with-pieeg-xr-765ee944fba2
4•Christiangmer•1h ago•0 comments

I built an interactive archive for official UFO/UAP files from war.gov

https://ufofiles.info
2•hades_sixy•1h ago•0 comments

The Genius: Mike Burrows' self-effacing journey through Silicon Valley (2007)

https://web.archive.org/web/20080217003150/http://www.stanford.edu/group/gpj/cgi-bin/drupal/?q=no...
2•1vuio0pswjnm7•1h ago•1 comments

Der Spiegel has made Nazi party membership cards searchable

https://www.spiegel.de/international/nazi-card-index-digitized-the-lies-come-to-an-end-a-22bfa301...
12•cwwc•1h ago•0 comments

Free website audit tool – enter a URL, get actionable fixes

https://outboundautonomy.com/audit
2•webperfdev•1h ago•1 comments

The early days – Steve Wozniak – TEDxBerkeley [video]

https://www.youtube.com/watch?v=PwSyjz1off4
2•MilnerRoute•1h ago•0 comments

Turn a folder of PDFs into a live JSON API

https://parseapi.dev/blog/show-hn-folder-to-json-api
2•expertsanoy•1h ago•0 comments

AWS reportedly to tuck Grok into Bedrock, despite zero enterprise demand

https://www.theregister.com/ai-ml/2026/05/29/aws-reportedly-to-tuck-elon-musks-grok-into-bedrock-...
9•Jimmc414•1h ago•2 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.