frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: FluxDown – Free, open-source IDM alternative in Rust and Flutter

https://github.com/zerx-lab/FluxDown
1•zero-lab•37s ago•0 comments

Running Engineering Teams Series

https://yusufaytas.com/series/running-engineering-teams
1•yusufaytas•55s ago•1 comments

Feynman's Garden

https://www.marginalia.nu/log/a_108_feynman_revisited/
1•jimsojim•58s ago•0 comments

Sharded Inference of a 229B-Parameter Moe over the Internet at Interactive Speed

https://twitter.com/c0mputeAI/status/2073150789640421537
1•MrBuddyCasino•12m ago•0 comments

Satoyama

https://en.wikipedia.org/wiki/Satoyama
1•ETH_start•14m ago•0 comments

Teaching AI to Run with the Turbines

https://www.technologyreview.com/2026/07/02/1138433/teaching-ai-to-run-with-the-turbines/
1•joozio•15m ago•0 comments

Will betting on wildfires lead to arson?

https://www.hcn.org/articles/people-are-betting-on-wildfires-should-they/
1•1vuio0pswjnm7•15m ago•0 comments

Show HN: Visual Knowledge Canvas for Learners

https://www.solus.so/
3•allybahaei•17m ago•0 comments

Claude's Criminally Bad Electron Mac App Is an Inside Job

https://daringfireball.net/2026/07/claudes_criminally_bad_mac_app_is_an_inside_job
1•tosh•17m ago•0 comments

Show HN: An AI that brutally rates your cat, and 18 games where your cat plays

https://catz.io
1•muzwalks•21m ago•0 comments

DocHero: PDF Editor and Sign PDF

https://apps.apple.com/us/app/dochero-pdf-editor-sign-pdf/id6781691509
1•suryanshJ•32m ago•0 comments

Fin: A Jellyfin Client for the Terminal

https://tangled.org/tsiry-sandratraina.com/fin
2•nerdypepper•34m ago•0 comments

Scientists decry conference's use of hidden prompts to snare AI peer reviews

https://www.thetransmitter.org/publishing/scientists-decry-conferences-use-of-hidden-prompts-to-s...
1•jruohonen•37m ago•0 comments

Could the next great novel be written by AI?

https://www.theguardian.com/books/ng-interactive/2026/jul/04/future-of-fiction-next-great-novel-a...
1•scandox•42m ago•3 comments

HackathonHub – the control room for hackathons, game jams, and team competitions

https://hackathonhub.xyz/
1•igorthenomad•42m ago•0 comments

Provenance: Proving That Your Code Is Really Yours

https://medium.com/@vektormemory/provenance-proving-that-your-code-is-really-yours-603c09407a97
1•vektormemory•42m ago•1 comments

AI models' values are different from most people's

https://www.economist.com/briefing/2026/06/25/ai-models-values-are-very-different-from-most-peoples
2•Anon84•42m ago•0 comments

We Are Running Companies on Chat Windows and Calling It a Revolution

https://irishtechnews.ie/running-companies-on-chat-windows-calling-it-rev/
3•belkin1•45m ago•0 comments

Jersey Mike's IPO illustrates how bad the AI hype is

https://finance.yahoo.com/technology/ai/articles/jersey-mike-ipo-illustrates-bad-201159743.html
3•cybermango•46m ago•0 comments

Arbitrary code execution breaking sandboxes in KDE Plasma

https://blog.kimiblock.top/2026/07/01/arbitrary-code-execution-in-kde-plasma/index.html
2•birdculture•49m ago•0 comments

BiOptimizers Magnesium Breakthrough Reviews – Truth Check

https://gamma.app/embed/Magnesium-Breakthrough-By-BiOptimizers-Honest-Review-tbe77aupzt7tnrd?mode...
1•prepostseo•53m ago•0 comments

Show HN: AI Coloring Page Generator for printable classroom worksheets

https://aicoloringpagegenerator.org/
1•robot1996•53m ago•0 comments

Show HN: AI Video Detector – check whether a video may be AI-generated

https://aivideodetector.video
1•robot1996•53m ago•0 comments

Dangerously-skip-permissions is the only safe mode

https://www.granola.ai/blog/dangerously-skip-permissions-is-the-only-safe-mode
3•jamesfisher•54m ago•0 comments

Syscall: Ring ZERO assembly puzzle game for those who are tired of agentic AI

https://store.steampowered.com/app/4849330/SYSCALL_RING_ZERO/
1•thisisneat•55m ago•0 comments

Show HN: AssistantAI – Real-Time Conversation Hints and Screenshot Analysis

https://github.com/Aleksandern/assistant-ai
1•aleksandern08•55m ago•0 comments

In 1850, Ignaz Semmelweis saved lives with three words: wash your hands (2015)

https://www.pbs.org/newshour/health/ignaz-semmelweis-doctor-prescribed-hand-washing
2•downbad_•59m ago•0 comments

Show HN: Qpilot – AI agent runs plain-text manual test cases in a real browser

https://github.com/broxhq/qpilot
2•Muhammad-21•1h ago•1 comments

The Declaration of Independence

https://acoup.blog/2026/07/04/collections-on-the-declaration-of-independence/
1•cesidio•1h ago•0 comments

Show HN: An MCP server that gives your AI assistant write access to /etc./hosts

https://www.lockinmcp.com
2•Kiog-Aser•1h ago•1 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.