frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mecrisp – Native Code Forth

https://mecrisp.sourceforge.net/
1•smartmic•1m ago•0 comments

The Center for Bits and Atoms

https://cba.mit.edu/
1•gregsadetsky•3m ago•0 comments

Building Piclaw on Top of an Opinionated Coding Agent

https://taoofmac.com/space/blog/2026/08/21/2218
1•rcarmo•4m ago•0 comments

Run 290B+ frontier MoE models locally on your gaming PC

https://github.com/FlashML-org/FreeToken
1•shenli3514•4m ago•0 comments

Massive Child Safety Trial Against Meta Starts in Federal Court

https://www.wsj.com/tech/massive-child-safety-trial-against-meta-starts-in-federal-court-130e3739
1•rib3ye•6m ago•1 comments

Personalized Language Learning

https://lumilanguage.com/
2•ewzie•7m ago•0 comments

Astronomers witness cosmic recycling system in action

https://news.northwestern.edu/stories/2026/08-2/astronomers-witness-cosmic-recycling-system-in-ac...
3•gmays•17m ago•0 comments

Remotely Unlocking Electric Scooters

https://henriemategui.com/post/remotely-unlocking-electric-scooters
3•henriemategui•19m ago•0 comments

SCO Lawsuit agains Linux 20 years later

https://lwn.net/Articles/924577/
2•p0w3n3d•20m ago•0 comments

Ask HN: What newspapers are you subscribed to?

1•humam_alhusaini•22m ago•0 comments

Greenwich moon time? The race to set lunar clocks

https://www.ft.com/content/d09e9c05-60c8-4c8a-8230-a5476a049b88
1•samizdis•25m ago•1 comments

Amazon's 7.65GW AI data center power plant could be largest CO₂ emitter in US

https://www.tomshardware.com/tech-industry/data-centers/amazons-new-7-65gw-texas-ai-data-center-p...
2•gmays•26m ago•1 comments

SiriusAgent

https://github.com/siriusagent/siriusagent/releases/tag/v0.1.1-alpha.028
1•siriusagent•30m ago•1 comments

Outbid.lol Copycat List

https://outbid-directory.lol
1•buildItN0w_•31m ago•0 comments

Meet the man who bought a Ferrari Luce for $40M

https://www.topgear.com/car-news/electric/meet-man-who-bought-a-ferrari-luce-40m
1•tiagom87•32m ago•1 comments

Total eclipse of the Internet: traffic impacts in Iceland, Spain, and Portugal

https://blog.cloudflare.com/total-eclipse-internet-traffic-iceland-spain-portugal/
3•blueshoess•34m ago•0 comments

One Postgres cluster, many apps

https://planetscale.com/blog/one-postgres-cluster-many-apps
1•blueshoess•35m ago•0 comments

U.S. Announces Colorado River Cuts for 3 States Amid Drought

https://www.nytimes.com/2026/08/21/climate/colorado-river-water-cuts-drought.html
3•littlexsparkee•39m ago•0 comments

Influencers and Resellers Are Turning Empty Boxes into Big Cash

https://www.wired.com/story/when-the-packaging-is-the-product-empty-boxes-influencers/
2•tobiasrenger•42m ago•0 comments

Google's Westinghouse Bet

https://asimovaddendum.substack.com/p/googles-westinghouse-bet
2•gmays•46m ago•0 comments

'The young ones are the best ones': Meta's alleged effort to hook kids

https://www.latimes.com/california/story/2026-08-18/california-social-media-addiction-lawsuit-meta
8•1vuio0pswjnm7•49m ago•0 comments

Denavit–Hartenberg Parameters

https://en.wikipedia.org/wiki/Denavit%E2%80%93Hartenberg_parameters
2•gregsadetsky•50m ago•0 comments

Taskuary – Your inbox becomes tasks, your coding CLI works them

https://github.com/ldbumble/taskuary
3•monkeydo09•52m ago•1 comments

'It's a Kind of Magic'

https://sztukacyrku.pl/teksty/its-a-kind-of-magic-or-circus-enchantments-of-reality/
1•jruohonen•53m ago•0 comments

Salesforce Agentforce at total dud for partners

https://www.theregister.com/saas/2026/08/21/salesforce-partners-are-not-seeing-revenue-from-agent...
2•joebuckwilliams•55m ago•0 comments

Do we have free will? Easy Explanation

https://sekor.eu.org/x/world/
1•modinfo•57m ago•0 comments

Game Necromancy: Resurrecting Yahoo Word Racer from Old YouTube Videos

https://jamesshapiro.com/writing/game-necromancy
2•jamesshapiro•58m ago•1 comments

Nvidia just showed that the harness, not the AI model, is now the real hero

https://techcrunch.com/2026/08/21/nvidia-just-showed-that-the-harness-not-the-ai-model-is-now-the...
8•dthread3•59m ago•0 comments

British Groups Are Shaping US Age Verification Laws in 21 US States

https://www.gadgetreview.com/british-groups-are-shaping-us-age-verification-laws-in-21-us-states-...
4•robotnikman•59m ago•1 comments

Burning Mesh: off-grid Meshtastic network for Burning Man

https://www.burningmesh.org
2•gourneau•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.