frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Emotion Explorer

https://feel.ifsart.com/
1•speckx•48s ago•0 comments

Show HN: RoleSweep – job search that deletes listings when employers close them

https://rolesweep.com
1•chetanba•6m ago•0 comments

Mosaic – self-hosted portfolio analytics for UK Stocks and Shares ISAs

https://github.com/ishantanu/mosaic-portfolio
1•ishantanu10•6m ago•0 comments

SEtting up AI search rank tracking easily

https://github.com/razz1000/ai-search-rank-tracking-example-repo
1•RasmusSoerensen•6m ago•0 comments

TMDB records Apple TV+ air dates a day early, on purpose

https://watchnext.leyu.studio/blog/apple-tv-air-dates-off-by-one
1•oujan•7m ago•0 comments

How to Use the Moshcode CLI

https://anthony.dev.profullstack.com/blog/002-post.html
1•buffer_overlord•7m ago•0 comments

Charisma, confidence and no fear of AI taking their jobs. The personality hires

https://www.marketwatch.com/story/these-workers-have-charisma-confidence-and-no-fear-of-ai-taking...
1•newsomix9xl•7m ago•0 comments

Plannotator – Annotate plans and code reviews for agent feedback

https://github.com/backnotprop/plannotator
1•StrangeSound•11m ago•0 comments

Printing Lists

https://matklad.github.io/2026/08/14/printing-lists.html
2•surprisetalk•12m ago•0 comments

Generate clean, transparent clip art and animated GIFs in seconds

https://clipi.online
1•johndastor•12m ago•0 comments

Show HN: I precompiled the path network of 3 continents to invent hiking routes

https://windygap.app
1•adjohu•14m ago•0 comments

Photo of eclipse by Xiaomi 17 Ultra

https://twitter.com/cvillasante/status/2087657106342105228
2•malshe•14m ago•2 comments

Graph Algorithms on the World Flight Network

https://stochastic.blog/graph-algorithms-on-the-world-flight-network/
1•Anon84•15m ago•0 comments

Terence Tao Lecture: Mathematics in the Age of AI [video]

https://www.youtube.com/watch?v=M0--ZH1lOzg
3•marvinborner•18m ago•0 comments

We Should Use Instrumented Profiling Scopes More

https://mropert.github.io/2026/08/13/instrumented_profiling_scopes/
1•ingve•18m ago•0 comments

Dear people who work at the airport

https://life-after-ssri.bearblog.dev/dear-people-who-work-at-the-airport/
1•nivethan•19m ago•1 comments

We built a tool that helps run your startup

https://app.firmgrove.com
1•firmgrove•21m ago•0 comments

Computer History

https://learn.chatgpt.com/docs/customization/computer-history
1•rbinv•21m ago•1 comments

What Programming and Computing Represent

https://venam.net/blog/programming/2015/11/04/what-is-programming.html
1•speckx•21m ago•0 comments

Who's Tracking You? Use This New Service to Find Out

https://krebsonsecurity.com/2026/08/whos-tracking-you-use-this-new-service-to-find-out/
2•DemiGuru•23m ago•0 comments

Why Is No One Talking About the Manufacturing Boom?

https://www.dailysignal.com/2026/08/11/quiet-manufacturing-boom/
1•bilsbie•24m ago•1 comments

My VP Eng told me to stop working on observability

https://www.jevy.org/articles/my-vp-eng-told-me-to-stop-working-on-observability/
2•jevyjevjevs•25m ago•0 comments

Goyda: Cross-Platform UI Toolkit

https://github.com/user-with-username/goyda
1•anybodyy•26m ago•1 comments

Show HN: Artifex - Graph Based GPU Harness for AI Agents

https://gatewai.studio/artifex
2•oknaslnkn•27m ago•0 comments

The Secret, Open Triumph of Race Science

https://www.richardhanania.com/p/the-strange-secret-open-triumph-of
1•bilsbie•28m ago•0 comments

Quick thoughts on watching a solar eclipse

https://blog.borrego.dev/entries/quick-thoughts-on-watching-a-solar-eclipse.html
1•agubelu•28m ago•0 comments

Computing Graph Dominators

https://neugierig.org/software/blog/2026/08/dominators.html
1•ingve•29m ago•0 comments

Show HN: Rdio – an open-source internet radio control suite

https://rdio-docs.vercel.app
3•taqibrahim•29m ago•0 comments

169M offer decisions a month on 0.77 CPU cores

https://emergent.sh/blog/how-our-pricing-engine-evolved-from-an-if-ladder
1•SamraatBansal•30m ago•0 comments

Solar helps 'stabilise' Europe's grids as heatwaves spike power demand

https://www.euronews.com/2026/08/14/the-real-challenge-starts-after-sundown-europes-heatwave-boos...
1•vrganj•30m 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.