frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Segregation by Design (Urban Planning)

https://www.segregationbydesign.com
1•kristopolous•23s ago•0 comments

An interseting Read about callsigns

https://www.war.gov/News/Feature-Stories/Story/Article/2903882/aviator-call-signs-the-history-nam...
1•callsign_bats•33s ago•0 comments

Same-Day Shells: A Full-Chain RCE Sweep Against Cisco CUCM (CVE-2026-20230)

https://defusedcyber.com/cucm-cve-2026-20230-fullchain-sweep
1•waihtis•2m ago•0 comments

Char: Agentic Notepad

https://char.com/
2•handfuloflight•4m ago•0 comments

Agent Identity

https://claude.com/blog/agent-identity-access-model
2•shahargl•6m ago•0 comments

Show HN: Memory layer for Claude Code(+10.2 pts on SWE-bench Verified benchmark)

https://github.com/SaravananJaichandar/world-model-mcp
2•saravanan2294•6m ago•0 comments

Show HN: Tapegif – Generate terminal GIFs in seconds

https://tapegif.mimrgrowthlab.com/
3•lightyoruichi•12m ago•0 comments

Kennedy Space Center not ready for era of super heavy rockets

https://arstechnica.com/space/2026/06/report-kennedy-space-center-not-ready-for-era-of-super-heav...
2•cryptoz•12m ago•0 comments

Cisco AI Defense Skill Scanner

https://github.com/cisco-ai-defense/skill-scanner
2•chha•16m ago•0 comments

Keeping the Web Open and Private in the Bot Era

https://blog.mozilla.org/en/privacy-security/keeping-the-web-open-and-private-in-the-bot-era/
2•maxloh•16m ago•1 comments

IPv6-Only vs. IPv6-Mostly: Appropriate Use Cases

https://labs.ripe.net/author/jordipaletm/ipv6-only-vs-ipv6-mostly-appropriate-use-cases/
2•enz•21m ago•0 comments

Guadagnino's Sam Altman movie dropped by Amazon after partnership with OpenAI

https://www.theguardian.com/film/2026/jun/19/luca-guadagnino-sam-altman-movie-dropped-amazon-open...
2•theletterf•22m ago•0 comments

Lost Confidence

https://longform.asmartbear.com/confidence/
2•r4um•24m ago•1 comments

Safer Than YOLO: Auto Mode for Exec Approvals

https://openclaw.ai/blog/safer-than-yolo-auto-mode-for-exec-approvals
2•Taradisechic•27m ago•0 comments

Curl 8.21.0

https://daniel.haxx.se/blog/2026/06/24/curl-8-21-0/
4•robin_reala•29m ago•0 comments

NixOS on Xilinx Zynq and ZynqMP

https://github.com/chuangzhu/nixos-xlnx
2•joooscha•37m ago•0 comments

I built an LLM router that doesn't use an LLM

https://github.com/itsthelore/wayfinder-router
3•tcballard•40m ago•2 comments

The Problem Is Prompt Debt

https://www.dbreunig.com/2026/06/22/the-problem-is-prompt-debt.html
1•ingve•42m ago•2 comments

What data on myself I collect and why? (2020)

https://beepb00p.xyz/my-data.html
1•downbad_•42m ago•0 comments

Agents Are the New Product's Interface

https://www.hopsworks.ai/post/agents-are-your-new-product-interface
2•LexSiga•43m ago•1 comments

Ranked: Countries Spending the Most on Research and Development

https://www.visualcapitalist.com/ranked-countries-spending-most-on-r-and-d/
4•theanonymousone•47m ago•0 comments

Smart Hotel Management Software for Hotels, Resorts and Vacation Rentals

https://app.notion.com/p/Smart-Hotel-Management-Software-for-Hotels-Resorts-Vacation-Rentals-de44...
2•jackarnold•50m ago•0 comments

"Start with a Monolith" Was Good Advice. AI Is Changing That

https://medium.com/@pivotfakie/start-with-a-monolith-was-good-advice-ai-is-changing-that-a2181b8e...
3•feeblefakie•51m ago•1 comments

How to Apply Google's Open Knowledge Format (OKF) on Enterprise Level

https://community.obsidian.md/plugins/vault-operator
2•pssah4•53m ago•1 comments

Full Metal Jacket. Copper Edition – Vollebak

https://vollebak.com/en-us/products/full-metal-jacket-copper-edition
2•evo_9•55m ago•0 comments

OpenAI Codex bombards SSDs with needless write operations, costing millions

https://www.theregister.com/ai-and-ml/2026/06/23/openai-codex-bombards-ssds-with-needless-write-o...
3•jonbaer•56m ago•1 comments

The Digital Sovereignty Trap

https://statedept.substack.com/p/the-digital-sovereignty-trap
2•ryzvonusef•58m ago•0 comments

PixelSmash – FFmpeg's MagicYUV decoder vuln leads to RCE via media file

https://jfrog.com/blog/pixelsmash-critical-ffmpeg-vulnerability-turns-media-files-into-weapons/
2•n0on3•58m ago•0 comments

AI Steps Off the Screen

https://epics.tech/posts/2026-06-23-ai-steps-off-the-screen/
2•epicsagas•1h ago•0 comments

Benchmark object storage in objects/s, not GB/s

https://fractalbits.com/blog/objects-per-second/
7•zzsheng•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.