frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The GLP-1 boom is the biggest climate story no one is pricing in

https://fortune.com/2026/06/21/glp1-drugs-climate-food-system-emissions-investment/
3•jtbayly•5m ago•1 comments

Tech Company Finder

https://tech.bingo/
1•thisismytest•7m ago•0 comments

MicroVM sandbox solves one problem well, but not the agent security problem

https://decodebytes.substack.com/p/why-your-microvm-sandbox-solves-a
1•decodebytes•8m ago•0 comments

Netflix, A24 and Focus Pass on Luca Guadagnino's Movie 'Artificial'

https://variety.com/2026/film/global/luca-guadagnino-artificial-sam-altman-netflix-a24-mubi-12367...
2•theanonymousone•9m ago•0 comments

Chatting with an AI Won't Make You a Top Programmer

https://lemire.me/blog/2026/06/21/chatting-with-ai-wont-make-you-a-top-programmer/
1•jjgreen•10m ago•0 comments

MMTk – Memory Management Toolkit

https://www.mmtk.io/
1•smartmic•12m ago•0 comments

Mark Zuckerberg wants to replace your phone with (10 years of work)

https://thenewassociationwebmasters.blogspot.com/2026/06/mark-zuckerberg-wants-to-replace-your.html
1•laurentlof•13m ago•1 comments

Why everyone is talking about real-time analytics

https://clickhouse.com/blog/why-everyone-is-talking-about-real-analytics-yellow-company
2•saisrirampur•16m ago•0 comments

Polymarket reportedly paid people to post fake videos of themselves placing bets

https://www.theverge.com/tech/953285/polymarket-fake-viral-video-bets
3•thm•18m ago•0 comments

Horus – Zero-dependency C++ CLI for malware IOC analysis and enrichment

https://github.com/mobinert/horus
1•fergalina•20m ago•0 comments

Introducing ZSoftly Cloud Platform, a Canadian public cloud

https://zcp.zsoftly.ca/blog/introducing-zsoftly-cloud-platform/
1•dckzs•20m ago•1 comments

The Case Against Travel (2023)

https://www.newyorker.com/culture/the-weekend-essay/the-case-against-travel
2•thm•22m ago•0 comments

Student Cheating Is Becoming Impossible to Detect in an A.I. Era

https://www.nytimes.com/2026/06/18/us/ai-apps-students-cheat.html
1•apparent•23m ago•2 comments

Sisu: The Finnish art of inner strength

https://www.bbc.com/worklife/article/20180502-sisu-the-finnish-art-of-inner-strength
1•Tomte•24m ago•0 comments

See How Owning a Home Is Getting More Expensive in Every Way

https://www.wsj.com/economy/housing/home-ownership-costs-charts-7fe04eb3
2•fortran77•30m ago•0 comments

Hunting Million-Digit Primes from My Loft

https://primecrunch.com/blog/2/hunting-million-digit-primes-from-my-loft
2•andyhedges•31m ago•0 comments

Analyst Kit (YC W23): Turn your Claude / Codex into an investment analyst (Free)

https://github.com/mohitjandwani/analyst-kit
2•mohitjandwani•31m ago•3 comments

DeFi Theater: Why Polymarket's Incentives Don't Reward the Truth

https://omarabid.com/polymarket-bet/
3•csomar•36m ago•0 comments

Now my wife and I trade together

https://magzimof.com/trading-together/
1•shaimagz•40m ago•0 comments

Venture Debt for Deep Tech: Financing the Future

https://www.latimes.com/b2b/banking-finance/story/2026-06-21/venture-debt-deep-tech-funding
4•petethomas•44m ago•0 comments

The end of public frontier models

https://steve-yegge.medium.com/the-flat-curve-society-36c8b01eb33b
4•AndrewSwift•45m ago•2 comments

Show HN: Claude Code skills that encode a staff engineer's setup, not prompts

https://staffengineer.dev/
1•pro_methe5•48m ago•0 comments

PE Owners Tap a Hot Loan Market to Pay Themselves

https://www.bloomberg.com/news/articles/2026-06-20/pe-owners-tap-a-hot-loan-market-to-pay-themsel...
2•petethomas•49m ago•0 comments

The Branch Nobody Reads

https://magzimof.com/olive-branches/
1•shaimagz•49m ago•0 comments

Show HN: Pure Effect – Reproduce production bugs on your laptop without a DB

https://pure-effect.org
1•tie-in•53m ago•0 comments

Bistro: A general purpose oracle for macroeconomic time series

https://www.bis.org/publ/qtrpdf/r_qt2603d.htm
1•bryanrasmussen•55m ago•0 comments

Turbo C

https://en.wikipedia.org/wiki/Turbo_C
2•tosh•56m ago•0 comments

Engine that finds hidden costs in paid ads your platform never reports

https://alloceraintelligence.com/
1•allo1•58m ago•0 comments

Show HN: Vexyn – browser-only privacy tools with local AI (WebGPU)

https://vexyn.app/
1•andreicristi88•58m ago•0 comments

The Out N' About Walks Store

https://lopespm.com/notes/2026/06/21/out_and_about.html
1•nate•59m 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.