frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Answers to questions about upstreaming patches

https://www.thomas-huehn.com/answers-upstreaming/
1•Tomte•2m ago•0 comments

I tried vibe-coding a memory tool for AI and stared into the abyss of philosophy

https://arbustoemchamas.substack.com/p/i-naively-tried-vibe-coding-a-memory
1•milon•5m ago•1 comments

Beyond the Editing Canvas: Evidence Divergence in Ooxml-to-LLM Ingestion

https://arxiv.org/abs/2608.25880
1•sbulaev•7m ago•0 comments

Samsung's Processing-in-Memory (PIM)

https://chipsandcheese.com/p/hot-chips-2026-samsungs-processing
1•ingve•8m ago•0 comments

Fileon – Find any local file with natural-language search on Mac

https://www.haoqibit.com/fileon
1•Popang•15m ago•0 comments

Czech Court Awards Heureka 10M EUR from Google for Market Exclusion

https://www.ceskenoviny.cz/zpravy/2867023
1•Markoff•21m ago•1 comments

The Making of Panther Lake: Intel Core Ultra Series 3 – Behind the Scenes [video]

https://www.youtube.com/watch?v=Wifx6GtsVmI
2•thushanfernando•22m ago•0 comments

America Strikes Back Against Foreign Censors with the Rulli Granite Act HR 10174

https://prestonbyrne.com/2026/08/28/rulligranite/
1•NewCzech•25m ago•0 comments

How to Keep Thinking

https://www.seangoedecke.com/how-to-keep-thinking/
1•gfysfm•25m ago•0 comments

Show HN: Visits.Report – analytics you can publish and prove

https://visits.report/
1•nadermx•26m ago•0 comments

What is Oxide's thinking around GPUs? FAQ Friday #56 [video]

https://www.youtube.com/shorts/3y5DwFJH3ho
1•ryandotsmith•29m ago•0 comments

America's data center revolt is getting a boost from China-linked bots

https://www.axios.com/2026/08/28/china-ai-data-center-backlash-bots
2•jnord•32m ago•0 comments

Chunky Agents

https://ianbarber.blog/2026/08/28/chunky-agents/
1•matt_d•33m ago•0 comments

LaneGate – Git-native worktree orchestrator for AI agents

https://github.com/sudheerdvn/lanegate
1•dvenkat9•38m ago•0 comments

Show HN: AMC Stocks Hub – asset-manager profiles, 13F holdings, and co-holdings

https://assetmanagementcompany.net/
1•lzyuan1006•38m ago•0 comments

US Military uses laser to down three Mexican cartel drones near border

https://www.reuters.com/business/aerospace-defense/us-military-uses-laser-down-three-mexican-cart...
5•bushwart•41m ago•0 comments

OpenAI to end agreement with SpaceX's AI coding tool Cursor

https://www.reuters.com/business/media-telecom/openai-end-partnership-with-spacexs-cursor-2026-08...
1•tartoran•47m ago•0 comments

Survival Lessons from the Great Depression – The Horrifying Things Americans Did

https://johnwalter25.substack.com/p/50-survival-lessons-from-the-great
1•bushwart•48m ago•0 comments

Taiwan prosecutors search Unimicron in suspected China fraud case

https://www.reuters.com/world/asia-pacific/taiwan-prosecutors-search-unimicron-suspected-china-fr...
2•tartoran•48m ago•0 comments

Explainer: What is visual verification and why does Reuters practice it?

https://www.reuters.com/business/media-telecom/what-is-visual-verification-why-does-reuters-pract...
1•1659447091•58m ago•0 comments

Global Trade and United States Navy

https://acoup.blog/2026/08/28/collections-global-trade-and-united-states-navy/
1•Tomte•58m ago•0 comments

DoD confirms 'refrigeration disruption' at military commissaries

https://www.militarytimes.com/news/your-military/2026/08/28/dod-confirms-refrigeration-disruption...
4•everybodyknows•1h ago•1 comments

Yes, We're in an AI Bubble. Just Look to 1980s Japan

https://foreignpolicy.com/2026/08/28/nvidia-earnings-quarterly-report-ai-economic-bubble-japan-hi...
2•CaptainZapp•1h ago•2 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
1•KiaanKothari•1h ago•0 comments

Nvidia Starts Pac as AI Chip Maker Builds DC Influence Force

https://www.bloomberg.com/news/articles/2026-08-27/nvidia-starts-pac-as-ai-chip-maker-builds-dc-i...
2•dagmx•1h ago•0 comments

Venezuelan opposition up in arms over reports US wants big stake in oil and gas

https://www.theguardian.com/world/2026/aug/28/us-venezuela-oil-gas-stake
3•fittingopposite•1h ago•0 comments

Are these 13 free AV and Robotics engineering calculators are useful?

1•dlimbu•1h ago•0 comments

An Unlikely Experiment

https://rushed-reflections.bearblog.dev/an-unlikely-experiment/
1•signa11•1h ago•0 comments

Overlay

https://www.getoverlay.io/app/agents?showcase=1
1•handfuloflight•1h ago•0 comments

Yesterday, an iPhone App for Yesterday's Weather

https://interconnected.org/home/2026/08/26/yesterday
1•Tomte•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•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.