frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

You're Absolutely Right

https://www.lesswrong.com/posts/u8TdDutDyaSxG76hn/you-re-absolutely-right
1•LinchZhang•2m ago•1 comments

Show HN: Rule-lite – Tiny dependency-free TS engine for JSON conditional rules

https://github.com/tejas821/rule-lite
1•tejas821•2m ago•0 comments

From assistance to execution: How enterprises put AI to work

https://openai.com/index/how-enterprises-put-ai-to-work/
1•vcfgdev•4m ago•0 comments

A unified CLI for native OS keychains – x keyring

https://www.x-cmd.com/blog/260811/
1•Zhengqbbb•7m ago•0 comments

OpenLiving - A data center you can live in [video]

https://www.youtube.com/watch?v=BwkBXNOPa_w
1•inatreecrown2•10m ago•0 comments

Pixel Watch 5 adds a feature Apple Watch desperately needs

https://www.cultofmac.com/news/pixel-watch-5-insulin-resistance-trends
2•ValentineC•18m ago•0 comments

Examples for use of AI and especially LLMs in major mathematical developments

https://mathoverflow.net/questions/502120/examples-for-the-use-of-ai-and-especially-llms-in-major...
1•vismit2000•18m ago•0 comments

Show HN: Agent Memory Leaderboard – first public results for AI memory systems

https://agentmemoryleaderboard.ai/leaderboard/academic/textual
2•IreneAI•23m ago•0 comments

SLAC: CPU-to-GPU Side-Channel Attacks via System-Level Cache on Apple Silicon

https://arxiv.org/abs/2608.09075
2•sbulaev•26m ago•0 comments

Clamiga: Common Lisp for the Amiga

https://nnamgreb.de/blog/Clamiga+-+Common+Lisp+for+the+Amiga
2•emptybits•27m ago•0 comments

Dart 3.13

https://dart.dev/blog/announcing-dart-3-13
1•wstrange•29m ago•0 comments

Show HN: I'm tired replying my social media visitors, I let AI agent handle it

https://www.agle.app/
1•tapriliando•30m ago•0 comments

Notation as a Tool of Thought (1980)

https://www.jsoftware.com/papers/tot.htm
1•colinprince•32m ago•0 comments

Tech adds phone tracking to license plate readers, associating devices with cars

https://theconversation.com/new-tech-adds-phone-tracking-to-license-plate-readers-associating-dev...
5•asdefghyk•32m ago•1 comments

Two weeks later and Adsense is still serving up Scareware

https://bsky.app/profile/redbluething.bsky.social/post/3mswnjfufs22v
1•redbluething•33m ago•0 comments

'Near-autonomous' AI agents attack Taiwan's nuclear safety agency

https://www.theregister.com/security/2026/08/12/near-autonomous-ai-agents-attack-taiwans-nuclear-...
3•Bender•43m ago•0 comments

Tailscale says deeply buried 16-year-old SQLite bug caused last year's outages

https://www.theregister.com/databases/2026/08/12/tailscale-says-deeply-buried-16-year-old-sqlite-...
1•Bender•44m ago•0 comments

Terabytes of credentials leaked in supply-chain attack

https://arstechnica.com/security/2026/08/terabytes-of-credentials-leaked-in-massive-supply-chain-...
1•Bender•45m ago•0 comments

When Will AI Take My Job?

https://www.whenwillaitakemyjob.ai/
4•yetanothermonk•45m ago•1 comments

Why your Amazon order confirmation emails have become so unhelpfu

https://www.theverge.com/ai-artificial-intelligence/977733/amazon-order-emails-google-gmail-ai-ag...
3•cebert•46m ago•1 comments

Show HN: ZKE – A macOS-style multi-cluster Kubernetes console over QUIC

https://github.com/togettoyou/zke
1•togettoyou•54m ago•0 comments

The next AI interface may not be a chatbot

https://hajek.no/posts/2026/next-ai-interface-not-chatbot
1•kamphey•55m ago•0 comments

Doable: Self-hosted AI app builder for teams

https://github.com/doable-me/Doable
1•indigodaddy•1h ago•1 comments

Production-ready detection and response queries for osquery

https://github.com/chainguard-dev/osquery-defense-kit
2•ankitg12•1h ago•0 comments

Why must a socialist also be woke?

https://www.ft.com/content/1b0a8ed9-d55a-49ea-971e-39e01e588632
4•alephnerd•1h ago•7 comments

Looks like Claude is down anyone else

3•codehead•1h ago•2 comments

Could Rocky's musical language in Project Hail Mary work

https://www.scientificamerican.com/podcast/episode/could-rockys-musical-language-in-project-hail-...
1•pavel_lishin•1h ago•0 comments

Trump to allow use of cyber tools to target transnational criminal organizations

https://www.reuters.com/world/trump-signed-memo-allow-use-cyber-tools-target-transnational-crimin...
1•oogali•1h ago•1 comments

Show HN: Meowdoku – a no-signup daily cat logic puzzle

https://meowdoku.pro/
1•trywork2026•1h ago•0 comments

Reporter gets $850000 in raid suit

https://marionrecord.com/direct/reporter_gets_850_000_in_raid_suit+5747zorn+5265706f7274657220676...
6•rdmuser•1h ago•5 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.