frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Logistics of Funding North Korean E-Wallets

https://www.38north.org/2026/07/the-logistics-of-funding-north-korean-e-wallets/
1•EA-3167•7m ago•0 comments

Show HN: Vehir – a platform built for AI agents: compiler, microkernel, CAS

https://github.com/grigoriitropin/vehir-platform
1•dewdgi•7m ago•0 comments

Read a book 703 words at a time

1•cliniborg•11m ago•0 comments

House Votes for Permanent Daylight Saving Time

https://www.nytimes.com/2026/07/14/us/politics/house-daylight-savings-time-sunshine-protection-ac...
1•donohoe•12m ago•0 comments

CoreWeave explores Wall Street playbook to hedge memory-chip price risk

https://www.reuters.com/world/ai-cloud-company-coreweave-explores-wall-street-playbook-hedge-memo...
1•ilreb•15m ago•0 comments

Texas factory cost $469M using old equipment, makes zero artillery shells

https://taskandpurpose.com/news/texas-ammo-factory-zero-shells/
2•ilamont•15m ago•0 comments

Talbot Green man sentenced for offences associated with swatting

https://www.tarianrocu.org.uk/news/talbot-green-man-sentenced-swatting-offences/
1•gnabgib•16m ago•0 comments

Microsoft emails Windows 10 holdouts: Fine, keep your old PC another year

https://www.theregister.com/os-platforms/2026/07/13/microsoft-emails-windows-10-holdouts-fine-kee...
2•Bender•17m ago•1 comments

Welsh Doxbin admin jailed for egging on swatters from behind a screen

https://www.theregister.com/security/2026/07/14/welsh-doxbin-admin-jailed-for-egging-on-swatters-...
2•Bender•18m ago•2 comments

Abraham Verghese's New Fable

https://www.nytimes.com/2023/05/02/books/review/covenant-of-water-abraham-verghese.html
1•Alien1Being•20m ago•1 comments

I Use HTML with Java

https://frequal.com/Flavour/book.html
2•TeaVMFan•20m ago•1 comments

Hands off our VPNs, privacy groups tell UK ministers

https://www.theregister.com/networks/2026/07/14/hands-off-our-vpns-privacy-groups-tell-uk-ministe...
2•Bender•21m ago•0 comments

I scanned 10 MCP servers – here's what agents can't know before connecting

https://github.com/davidnichols-ops/trustcard
1•davidnicholsops•22m ago•0 comments

Render.com Is Down

https://status.render.com
3•kaypee901•22m ago•0 comments

Rebase – weekly live gameshow for devs

https://rebase.tv/
2•thdxr•30m ago•0 comments

What If the Youth Crisis of Mental Health and Attention Never Happened?

https://grimoiremanor.substack.com/p/what-if-the-youth-crisis-of-mental
3•paulpauper•31m ago•0 comments

eBay is down this looks like a global incident 07142026

4•megamike•31m ago•1 comments

Opensourcing Multiplayer AI in Discord

https://bunnyandcloud.com/
1•mehdim•36m ago•0 comments

Ongoing changes to Android security patches due to AI vulnerability discovery

https://discuss.grapheneos.org/d/40286-ongoing-changes-to-android-security-patches-due-to-ai-vuln...
1•Cider9986•42m ago•0 comments

Meta's AI Glasses Will Activate the Camera Without Indicator Light

https://www.privacyguides.org/news/2026/07/13/the-next-version-of-metas-ai-glasses-will-activate-...
1•Cider9986•42m ago•0 comments

Open-sourced a dataset of companies and their detected tech stacks (CSV/JSON)

https://github.com/leadita/tech-stack-datasets
2•haynajjar•46m ago•0 comments

Library Catalog (Card Catalog)

https://en.wikipedia.org/wiki/Library_catalog
2•RetroTechie•47m ago•1 comments

Data centers have hiked electricity prices on the public by $23B

https://fortune.com/2026/07/14/data-centers-23-billion-electricity-bills/
12•measurablefunc•47m ago•1 comments

Beyond Nerva Nuclear Propulsion for Humanity's Expanse into the Cosmos

https://beyondnerva.wordpress.com/
1•pinewurst•52m ago•1 comments

Solving 20 Erdős Problems with 20 Codex Accounts Running in Parallel

https://www.starfleetmath.com/
2•colin7snyder•52m ago•0 comments

Vancouver PD website features Quick Escape button that wipes itself from history

https://vpd.ca/
18•LookAtThatBacon•52m ago•6 comments

Why Huge Pages matter for Postgres

https://clickhouse.com/blog/huge-pages-clickhouse-managed-postgres
3•thunderbong•58m ago•0 comments

Show HN: Digital De-Centralized Internship

https://lab.cedarridge.capital/
1•joey9prints•59m ago•0 comments

Amazon rolled back its monetization effort for its Selling Partner APIs

https://www.fivetran.com/blog/no-walled-gardens-amazon-reversed-its-seller-partner-api-fees
1•mogili•1h ago•0 comments

ChatGPT Remote Connection Failure

2•tumidpandora•1h ago•2 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.