frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

US health officials Nix publication of a study on Covid vaccine effectiveness

https://apnews.com/article/cdc-covid19-vaccine-study-ea3a8e56d0dcdb7428f060b395b5ff23
1•petethomas•2m ago•0 comments

Show HN: Vibeyard – An open-source IDE for managing AI coding agents

https://github.com/elirantutia/vibeyard
1•vibeyard•7m ago•0 comments

Honey, I Shrunk the Coding Agent

https://itayinbarr.substack.com/p/honey-i-shrunk-the-coding-agent
3•oldfuture•11m ago•0 comments

Software Eats Its Own

https://om.co/2026/04/22/software-eats-its-own/
1•taubek•12m ago•0 comments

Hey I made a AI Native personal workspace for the desktop worker

1•devrimco•13m ago•2 comments

Benchmarking glibc vs. jemalloc vs. mimalloc vs. tcmalloc in MariaDB TPC-C

https://tidesdb.com/articles/tpcc-analysis-jemalloc-mimalloc-tcmalloc-tidesql-and-innodb-in-maria...
1•alexpadula•26m ago•1 comments

R

https://blog.cloudflare.com/post-quantum-warp/
1•kefekefe•29m ago•0 comments

A neural network for lossy audio codec reconstruction

https://github.com/aston89/UNlossifier-lossy-audio-reconstructor-and-sound-signature-simulator/tr...
1•Aston89•29m ago•0 comments

256 Lines or Less: Test Case Minimization

https://matklad.github.io/2026/04/20/test-case-minimization.html
2•gsky•31m ago•0 comments

Asset Harvester

https://github.com/NVIDIA/asset-harvester
1•downboots•32m ago•0 comments

Aisbf – AI Service Broker Framework (BETA) unified proxy and intelligent router

https://aisbf.cloud
1•nextime•38m ago•1 comments

I programmed an AI in 6502 assembly

https://medium.com/@paul.newell_20752/i-programmed-an-ai-in-6502-assembly-it-worked-23fcd7cf2a96
1•paul_n3•39m ago•0 comments

Tell HN: YouTube RSS feeds no longer work

4•019•39m ago•0 comments

Dutch central bank chooses Lidl for European Cloud

https://www.techzine.eu/news/infrastructure/140634/dutch-central-bank-chooses-lidl-for-european-c...
1•vrganj•42m ago•0 comments

RFDiffusion3 in 3 Levels of Abstraction

https://www.figma.com/board/ja7l5ZFFqrSoTu78wzEVNm/RFDiffusion3-In-3-Levels-of-Abstraction?node-i...
2•nicetomeetyu•43m ago•0 comments

Open Source Credential Proxy and Vault for Agents

https://twitter.com/dangtony98/status/2046982854710857762
1•vmatsiiako•44m ago•1 comments

Exposing Attack Behaviour in Realtime

https://fibratus.io
2•archrabbit•46m ago•0 comments

Show HN: Linux Desktops in the Browser

https://vmpixel.com/
1•andoando•46m ago•0 comments

Tantrums as Status Symbols (2005)

https://marginalrevolution.com/marginalrevolution/2005/08/tantrums_as_sta.html
1•downbad_•49m ago•1 comments

Meta tracking employee keystrokes on Google, LinkedIn, Wikipedia for AI training

https://www.cnbc.com/2026/04/22/meta-tracks-employee-usage-on-google-linkedin-ai-training-project...
5•1vuio0pswjnm7•50m ago•1 comments

Anthropic now requires new Claude users to verify identity with photo ID

https://twitter.com/Pirat_Nation/status/2044960285510053929
5•croes•50m ago•2 comments

Information Asymmetry

https://en.wikipedia.org/wiki/Information_asymmetry
3•downboots•1h ago•1 comments

Malicious Checkmarx Artifacts Found in Official KICS Docker Repo and Code Ext

https://socket.dev/blog/checkmarx-supply-chain-compromise
2•orkj•1h ago•0 comments

Show HN: CreepJS Browser Fingerprinting

https://abrahamjuliot.github.io/creepjs/
3•gastonmorixe•1h ago•0 comments

Sruthi Chandran Elected Debian Project Leader

https://bits.debian.org/2026/04/dpl-elections-2026.html
2•tapanjk•1h ago•0 comments

Every local SEO playbook is built on proximity, AI overviews ignore it completly

https://webmatrices.com/post/every-local-seo-playbook-is-built-on-proximity-ai-overviews-ignore-i...
1•bishwasbh•1h ago•1 comments

Ars Technica: Our newsroom AI policy

https://arstechnica.com/staff/2026/04/our-newsroom-ai-policy/
9•zdw•1h ago•1 comments

Computing in the Era of Doom: What Were PCs Like in 1993?

https://www.ahalbert.com/reviews/technology/2026/04/20/black-book-doom.html
2•pjmlp•1h ago•0 comments

High Street mini-marts selling cocaine, cannabis and prescription drugs

https://www.bbc.co.uk/news/articles/c62l429w2pko
3•vinni2•1h ago•0 comments

A disabled kea parrot is the alpha male of his circus

https://www.cell.com/current-biology/fulltext/S0960-9822(26)00259-9
1•zdw•1h ago•0 comments
Open in hackernews

Show HN: AgentShield SDK – Runtime security for agentic AI applications

https://pypi.org/project/agentshield-sdk/
2•iamsanjayk•11mo 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•11mo 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•11mo 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.