frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Terence Tao: SAIR's Open Math Model Initiative [video]

https://www.youtube.com/watch?v=PZRb6NIki2w
1•looofooo0•1m ago•0 comments

California governor signs order to explore AI kill switch

https://techxplore.com/news/2026-09-california-governor-explore-ai.html
1•mdp2021•1m ago•0 comments

Communication Doesn't Have a Compiler

https://wreckitrob.dev/posts/6-communication-doesnt-have-a-compiler
1•WreckItRob•2m ago•0 comments

Anthropic Moves Ahead with IPO Plans Amid A.I. Safety Debate

https://www.nytimes.com/2026/09/18/technology/anthropic-ipo-ai-safety.html
3•AlexDragusin•5m ago•0 comments

When the FM Band Goes Transatlantic

https://www.radioworld.com/tech-and-gear/nicks-signal-spot/when-the-fm-band-goes-transatlantic
2•austinallegro•5m ago•0 comments

Punctum Books Catalog

https://punctumbooks.com
1•horsellama•6m ago•0 comments

AI Error Nearly Triggered U.S. Intercept of Chinese Ship

https://gcaptain.com/ai-error-nearly-triggered-u-s-intercept-of-chinese-ship-cnn-reports/
1•gumby•8m ago•1 comments

Labeled matches: why is this not in every regex engine?

https://iev.ee/blog/categorize-everything-all-at-once/
1•birdculture•10m ago•0 comments

I Cancelled My Claude Subscription

https://www.williamangel.net/blog/2026/09/18/i-cancelled-my-claude-subscription.html
1•datadrivenangel•10m ago•1 comments

Graduating in AI Era Is Like Large Recession for Starting Pay

https://www.census.gov/library/working-papers/2026/adrm/CES-WP-26-56.html
3•DeepLogin•14m ago•0 comments

Human brain is two separate organs

https://med.stanford.edu/news/all-news/2026/09/two-separate-brains.html
3•amirmc•14m ago•0 comments

IAM Needs an Architectural Split

https://gluufederation.medium.com/iam-needs-an-architectural-split-258f0aa13dd4
1•idm_guru•16m ago•0 comments

I used Jev to control a swarm of 15 simulated drones in real time

https://github.com/khordoo/jev-reflex-autonomy-lab/tree/main
2•khordoo•16m ago•0 comments

Napster Is Now Making AI-Powered 'Digital Twins' of Teachers

https://gizmodo.com/napster-is-now-making-ai-powered-digital-twins-of-teachers-2000814010
2•MC995•16m ago•0 comments

Data Centers Are Breaking the Power Grid [video]

https://www.youtube.com/watch?v=X71le3av1So
5•Bender•20m ago•1 comments

Partnering with Accenture on Embedded Evaluation

https://www.anthropic.com/news/accenture-embedded-evaluation
2•surprisetalk•20m ago•0 comments

Taking Out the Trash in Postgres

https://www.dbos.dev/blog/scaling-deletions-in-postgres
1•mooreds•21m ago•0 comments

The last IMO problem AI could not solve [video]

https://www.youtube.com/watch?v=Nbwv5wHQoj0
3•pykello•22m ago•0 comments

Can Two Friends Complete a Game No One Has Ever Finished?

https://www.nytimes.com/2026/09/18/world/europe/campaign-for-north-africa-game.html
3•ynac•22m ago•1 comments

Why a Vat API Needs More Than a Rate Lookup?

https://vat-engine.app/blog/why-a-vat-api-needs-more-than-a-rate-lookup
1•vasyl_kyryliuk•26m ago•0 comments

Iran and China Create Autonomous A.I. Influence Campaigns

https://www.nytimes.com/2026/09/18/technology/iran-china-autonomous-ai-influence-campaigns.html
4•sbulaev•28m ago•1 comments

Uncle Bob Martin's UML Tool to Manage Grok AI Agents

https://github.com/unclebob/uml-viewer
1•rmason•30m ago•0 comments

Astra broke a yet unsolved German Army Enigma message from 1941

https://mvueh-enigma-solved.carterl.chatgpt.site/
2•bananaflag•31m ago•1 comments

Grokbot Source Code Leak

https://twitter.com/Ri7erLi/status/2100875181380055402
1•river-li•32m ago•0 comments

It's Your Story, Dammit – Quit Letting Somebody Else Write IT

https://jeffreylminch.substack.com/p/its-your-story-dammit-quit-letting
1•rmason•32m ago•0 comments

Korea raises data breach fines to 10% of revenue

https://www.koreajoongangdaily.com/business/korea-raises-data-breach-fines-to-10-of-revenue/12869899
48•throw7•33m ago•10 comments

Is Beef the Next Internal-Combustion Engine?

https://www.newyorker.com/news/the-lede/is-beef-the-next-internal-combustion-engine
4•littlexsparkee•34m ago•0 comments

AI uncovers hidden Ozempic side effects across 400k Reddit posts

https://www.sciencedaily.com/releases/2026/09/260912222856.htm
3•gradus_ad•35m ago•0 comments

AI chatbot's false report nearly sparked war with China, sources say

https://www.rnz.co.nz/news/world/1465265/ai-chatbot-s-false-report-nearly-sparked-war-with-china-...
4•billybuckwheat•36m ago•1 comments

Claude Code 2.1.277 adds support for AGENTS.md

https://github.com/anthropics/claude-code/commit/a92ea1cdb11ad21f9d583fad2db181dfdac918a6
1•skwashd•37m 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.