frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Netherlands Fines Uber a Record Amount

https://www.telegraaf.nl/financieel/ap-beboet-uber-met-recordbedrag/160337859.html
1•doener•1m ago•0 comments

Open sourcing MonsterWriter, piece by piece

https://www.monsterwriter.com/open-source.html
1•WolfOliver•2m ago•0 comments

Show HN: I ran Benjamin Graham's original checklist on all 503 S&P 500 companies

https://grahamwise.com
1•nipunaeka89•4m ago•0 comments

Gamifornication – One-shot Californication

https://realloc.fi/gamifornication/
1•velmu•8m ago•0 comments

SignalWatch – AI crypto scanner and smart alerts in your pocket

https://play.google.com/store/apps/details?id=com.builtwithme.signalwatch&hl=en_US
1•alligatorpeach•9m ago•0 comments

Donald Trump's bullying of Canada is endless

https://www.economist.com/the-americas/2026/08/09/donald-trumps-bullying-of-canada-is-endless
2•Gander5739•10m ago•0 comments

Why Are Electric Cars Easier to Build Than Gas Cars? [video]

https://www.youtube.com/shorts/TR_ligs7f4s
1•thelastgallon•10m ago•0 comments

Slovakia discovers Russian backdoors in 279 new traffic cameras

https://www.tomshardware.com/tech-industry/cyber-security/slovakia-discovers-russian-backdoors-in...
1•bushwart•11m ago•0 comments

Show HN: We killed templates and rebuilt presentations from scratch

https://www.slaide.de
1•ogiermannluk•12m ago•0 comments

AI;DR There May Be Nobody There

https://yusufaytas.com/there-may-be-nobody-there
3•mostlymike•12m ago•0 comments

Im 18 and building my startup and this is what I feel

1•ritupatil2008•13m ago•1 comments

Five things make agent-built UI look generic. Each takes 30 seconds to check

https://tailthemes.com/blog/ai-design-slop-quality-gate
1•adriandemian•15m ago•0 comments

What's the best open source Wispr alternative?

1•-house•16m ago•0 comments

We Taught a $3 Chip to Run CSS

https://geastack.com/blog-we-taught-a-chip-to-run-css
1•arbayi•20m ago•0 comments

Company's plans to deploy space mirrors could jeopardize the night sky for

https://www.technologyreview.com/2026/08/21/1142755/space-mirrors-night-sky/
1•joozio•21m ago•0 comments

Fusion powerly good coverage of basics and problems

https://www.youtube.com/watch?v=bPUAKW1Dyek
1•lifeisstillgood•22m ago•0 comments

AI Is Rewriting Mathematics

https://nofilk.substack.com/p/ai-is-rewriting-mathematics
1•fragmede•23m ago•1 comments

gRPC-Web Should Have Fixed gRPC

https://kmcd.dev/posts/grpc-web-should-have-fixed-grpc/
1•1317•25m ago•0 comments

Security assessment found open model near frontiers

https://www.aikido.dev/blog/ai-model-benchmarks-aug-21-2026
1•vic_b•33m ago•0 comments

Tlbic v13.0: Evidence, Incentives, and Sunk Costs

https://drive.google.com/file/d/1tYmhklEoq6n_2bJnI-TEwkSbtbLocrz4/view?usp=drive_link
1•michikawa59•35m ago•0 comments

Continue coding agent is dead. Alternatives?

3•roscas•43m ago•1 comments

Microsoft built a dedicated app that forces Bing everywhere on Windows 11

https://www.windowslatest.com/2026/08/22/microsoft-built-a-dedicated-app-that-forces-bing-everywh...
1•monoclerb•43m ago•0 comments

Six principles for evaluating cognitive capabilities in AI models

https://onlinelibrary.wiley.com/doi/10.1002/aaai.70061
1•Terretta•46m ago•1 comments

A.I. is everywhere in China. See for yourself

https://www.nytimes.com/interactive/2026/08/21/world/asia/china-ai-life.html
2•eternalreturn•49m ago•1 comments

It was great to have Raekwon at our office again

https://twitter.com/PalantirTech/status/2090889852405334118
1•mellosouls•54m ago•1 comments

Episode 2: Life After Stripe

https://jondlm.github.io/website/blog/life_after_stripe/
1•jondlm•57m ago•0 comments

Canada suspends trade negotiations with USA and match tariffs dollar for dollar

https://www.pm.gc.ca/en/news/statements/2026/08/21/statement-prime-minister-carney-canada-us-trad...
103•backlit4034•57m ago•47 comments

The Joy of Why (podcast): Are We Thinking Correctly About AI Intelligence?

https://www.quantamagazine.org/are-we-thinking-correctly-about-ai-intelligence-20260820/
1•Terretta•1h ago•1 comments

Procedural Three.js web design templates for agents

https://threeui.com/browse
1•luispa•1h ago•0 comments

Kayva – continuous care on the watch you wear

https://www.kayvahealth.com/
2•abhinav_rana•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.