frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Job Seeker – AI agent skills for job searching

https://github.com/galiprandi/job-seeker
1•galiprandi•1m ago•0 comments

Mea Culpa – Dark Hours

https://blog.terrygodier.com/2026/08/09/mea-culpa-dark-hours.html
1•satvikpendem•1m ago•0 comments

Murder Stone

https://en.wikipedia.org/wiki/Murder_stone
1•jimnotgym•4m ago•1 comments

Exercise is good for you. But what's the right amount?

https://iterator.news/p/exercise-is-good-for-you-but-whats-the-right-amount
1•bucket2015•4m ago•0 comments

Let's build a digital clock (Video, Ben Eater)

https://www.youtube.com/watch?v=3XDH-fZKnQk
1•JKCalhoun•9m ago•0 comments

A unique palaeolithic human ichnological record from Italy (Bàsura Cave)

https://elifesciences.org/articles/45204
1•Tomte•11m ago•0 comments

Amazon Builder's Library – An overlooked goldmine of System Design knowledge

https://sumitgouthaman.com/posts/amazon-builders-library/
1•equinumerous•11m ago•0 comments

RIP Your Backlog

https://randsinrepose.com/archives/r-i-p-your-backlog/
1•mooreds•13m ago•0 comments

Testing is underway on vaccines to intercept brewing colon cancer

https://www.cnn.com/2026/08/09/health/colon-cancer-vaccine-lynch-syndrome
3•mooreds•15m ago•0 comments

Ask HN: What assisted driving car is best for elderly drivers?

2•yubblegum•15m ago•0 comments

The "Data Quality/Engineering" Angle

https://kylesinvestigation.com/
1•mkyle71•15m ago•0 comments

Uncontacted Indigenous Peoples: at the edge of survival (2025) [pdf]

https://assets.survivalinternational.org/documents/2788/original-b24f435d70d2e27876b53452d615b1a4...
1•mooreds•15m ago•0 comments

Show HN: YC Startup School, but AI-Native

https://foundera.app/
2•toyji•17m ago•0 comments

Gemini 3 Pro can generate normal maps

https://geosona.com/software/2026/08/09/gemini-normal-maps/
1•gste•17m ago•2 comments

Israeli startup was linked to rogue AI hacks at OpenAI, Anthropic and Meta

https://www.cnbc.com/2026/08/09/israeli-startup-irregular-linked-to-ai-hacks-openai-anthropic-met...
9•cramer4next•18m ago•2 comments

The Wild West of Private Schools That Collect Taxpayer Dollars

https://www.propublica.org/article/private-schools-vouchers-growth-florida-arizona-west-virginia
1•ceejayoz•21m ago•0 comments

Show HN: Amapola – financial models you can draw and play

https://thepatternbridge.com/amapola/
1•GabrielSilver•22m ago•0 comments

Auto mode is now the default in Claude Code for Pro, Max, and Team plans

https://simonwillison.net/2026/Aug/8/auto-mode/
2•ilamont•23m ago•1 comments

Trump Crypto Took $100M from a Businessman with Red Flags

https://www.nytimes.com/2026/08/09/us/politics/bobby-zhou-trump-crypto.html
1•hrldcpr•25m ago•0 comments

Show HN: FolderForge, open-source native macOS folder icon designer

https://github.com/KeplSiv/FolderForge
2•keplsiv•28m ago•0 comments

Amazon circumvents Gilroy community vote for AI data center

https://www.tomshardware.com/tech-industry/data-centers/amazon-secretly-circumvents-community-vot...
16•mikhael•29m ago•3 comments

Claude Code in 9 lines Python

https://www.reddit.com/r/LocalLLaMA/comments/1viwlgj/comment/p2mn1xt/
2•tosh•31m ago•0 comments

Show HN: FAIth – a syntax-free JVM language, compiled by an LLM front-end

https://github.com/krossovochkin/faith
2•krossovochkin•32m ago•0 comments

The Long, AI-Powered Quest to Perfect Pringle-Making

https://www.wsj.com/tech/ai/inside-the-long-ai-powered-quest-to-perfect-pringle-making-ab37a231
2•bookofjoe•35m ago•1 comments

Self Hosting Coding LLMs

https://blog.samibadawi.com/2026/08/self-hosting-coding-llms.html
2•type-lambda•37m ago•0 comments

The Closure of the Internet

https://arctotherium.substack.com/p/the-closure-of-the-internet
2•barry-cotter•37m ago•0 comments

Show HN: A Project Oberon System version running on RISC-V instead of RISC-5

https://github.com/rochus-keller/OberonSystem/tree/op2-rv32
4•Rochus•38m ago•0 comments

A golf career SIM I built, abandoned, and just found still has real users

https://www.rainydaygc.com
2•mdstrobe•41m ago•0 comments

Scientists turn to sharks to improve hurricane predictions

https://www.reuters.com/business/environment/scientists-turn-sharks-improve-hurricane-predictions...
2•geox•50m ago•0 comments

Making AI Smarter with AI

https://math.andrej.com/2026/07/11/making-ai-smarter-with-ai/
2•artninja1988•54m ago•2 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.