frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

SEC Exempts Data-Center Bonds from Key Securitization Rules

https://www.bloomberg.com/news/articles/2026-08-10/sec-exempts-data-center-bonds-from-key-securit...
1•petethomas•28s ago•0 comments

In AI, the 41% Depends on the -59%

https://www.apollo.com/wealth/insights-news/insights/daily-spark/in-ai-the-41-percent-depends-on-...
1•1vuio0pswjnm7•54s ago•0 comments

Achieved Full Desktop in GeForce Now

https://twitter.com/Zortosdev/status/2083600657932571096
1•croes•56s ago•1 comments

The Joy of Simple Computing

https://andreasknoben.nl/posts/2026_08_10_The-joy-of-simple-computing.php
1•ashitlerferad•1m ago•0 comments

An Apple Developer bug is about to destroy my app business

https://refined.so/blog/apple-bug-destroying-my-business
1•constantout•1m ago•0 comments

Google's classic Search button is gone in a new AI-first homepage

https://searchenginewatch.com/google-tests-ai-focused-homepage-for-signed-out-users/
1•croes•2m ago•0 comments

When Building Gets Cheap, Distribution Gets Expensive

https://www.voxelperfect.com/writing/when-building-gets-cheap-distribution-gets-expensive
1•voxelperfect•2m ago•0 comments

The 'Literacy Crisis' – More Than You Wanted to Know

https://jaredhenderson.substack.com/p/the-literacy-crisis-more-than-you
1•paulpauper•2m ago•0 comments

Show HN: Bombay Bhaag – a Three.js endless runner with zero art assets

https://bombaybhaag.com/
1•varungoel•3m ago•0 comments

Show HN: Generate domain lists for an LLM to rank

https://www.uidomains.com/bulk-keyword-csv-export
1•dude3•3m ago•0 comments

Building a Calculation Engine with Generators

https://www.orcaset.com/blog/building-a-calculation-engine-with-generators
1•jrdnh•4m ago•0 comments

The Download: AI agents for science, and the "censorship-industrial complex"

https://www.technologyreview.com/2026/08/10/1141526/the-download-ai-agents-science-censorship-ind...
2•joozio•7m ago•0 comments

What Does the Humbling of Leopold Aschenbrenner Mean for the A.I. Bubble?

https://www.newyorker.com/news/the-financial-page/what-does-the-humbling-of-leopold-aschenbrenner...
2•mitchbob•11m ago•1 comments

Open4D, a community-driven open-source ecosystem for 4D spatial data

https://github.com/open4dfoundation/Open4D
1•open4d•12m ago•1 comments

OpenBao Features – Recursive Lists (Scan) & Filtering

https://openbao.org/blog/features-recursive-list/
1•cipherboy•13m ago•0 comments

Waymo Is Growing Faster Than Ever. So Are Its Glitches

https://www.nytimes.com/2026/08/10/technology/waymo-expansion-edge-cases.html
2•harmmonica•14m ago•0 comments

LLM Performance and Following Requirements

https://492ab3fb.danpalmer-me.pages.dev/2026-08-09-llms-and-requirements/
2•speckx•14m ago•0 comments

Show HN: Draw any shape and hear what it sounds like as a drum

https://baselashraf81.github.io/eigendrum/
1•BaselAshraf81•14m ago•0 comments

Centaur 2.0

https://twitter.com/gakonst/status/2086846192701640817
2•anr0•15m ago•1 comments

I built a free web coding curriculum for beginners and teachers

https://aicodingeducator.com/
3•Julesman•18m ago•1 comments

Claude Code self-improved through conversation, not the memories it saved

https://shojin.dev/blog/claude-code-improved-through-conversation-not-memories/
2•anndvision•18m ago•1 comments

With Flying Pen, When Mortals Sleep

https://brianschrader.com/archive/with-flying-pen-when-mortals-sleep/
1•sonicrocketman•18m ago•1 comments

LexisNexis pulls three services offline after suspicious server activity

https://www.theregister.com/off-prem/2026/08/10/lexisnexis-blames-outage-on-unusual-server-activi...
3•joebuckwilliams•19m ago•0 comments

I reverse engineered Meta's Muse Code binary and found hidden agent workflows

https://runtimewire.com/article/exclusive-meta-s-muse-code-binary-reveals-hidden-agent-workflows-...
2•ryanmerket•21m ago•0 comments

Agentic coding needs human sign-off tied to physical reality

https://patrickaudley.com/posts/human-signoff-for-agentic-code.html
1•antoineMoPa•21m ago•0 comments

Show HN: Run outbound and lead gen from Claude Cowork, no sales tools

https://github.com/skyzer/skills
1•skyzer•24m ago•0 comments

Falsehoods programmers believe about addresses (2013)

https://www.mjt.me.uk/posts/falsehoods-programmers-believe-about-addresses/
1•throw0101a•27m ago•0 comments

ChainDrop supply chain compromise: Anatomy of a self-propagating worm

https://www.microsoft.com/en-us/security/blog/2026/08/04/chaindrop-supply-chain-compromise-anatom...
2•mooreds•27m ago•0 comments

John Crowley Has Died

https://www.programmablemutter.com/p/john-crowley-has-died
3•paulpauper•28m ago•1 comments

Poll shows support for proportional representation in the US

https://www.npr.org/2026/08/10/nx-s1-5920312/proportional-representation-poll
1•marojejian•28m 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.