frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I want a data center job

1•incalculablecac•1m ago•0 comments

Lean certificates accompanying Navier-Stokes and Euler results

https://github.com/openai/NavierStokesAndEuler/tree/main
1•thunderbong•1m ago•0 comments

Apple debuts iPhone 18 Pro and iPhone 18 Pro Max

https://www.apple.com/newsroom/2026/09/apple-debuts-iphone-18-pro-and-iphone-18-pro-max/
1•meetpateltech•1m ago•0 comments

Scan your hand, build a keyboard

https://ryanis.cool/cosmos/
1•tripdout•2m ago•0 comments

A website that sells nothing – 20% goes to children's surgery

https://www.nothings.wtf/
1•amarfarkhadi•3m ago•0 comments

Cartesium: Graph Equations in 2D and 3D

https://cartesium.org/
2•gregsadetsky•4m ago•0 comments

Codex GPT-5.6-sol Performance Tracker

https://marginlab.ai/trackers/codex/
3•Bluestein•4m ago•0 comments

iPhone 18 Pro

https://techcrunch.com/2026/09/09/apple-launches-iphone-18-pro-with-upgraded-camera/
5•keito•4m ago•0 comments

Don't Outsource Growth to the Algorithm

https://speedrun.substack.com/p/dont-outsource-growth-to-the-algorithm
1•7777777phil•6m ago•0 comments

ShieldCrash – Explained and Defender Tips

https://medium.com/meetcyber/breaking-the-shield-how-shieldcrash-exposes-the-limits-of-modern-end...
2•ls1911•6m ago•0 comments

Georgia bet big on EV manufacturing. Trump pulled the plug

https://grist.org/transportation/georgia-bet-big-on-ev-manufacturing-trump-pulled-the-plug/
3•speckx•8m ago•3 comments

Osint Aggregation Platform

http://osirisai.live
1•anjel•9m ago•1 comments

Use 1Password to sign in to websites with Claude

https://support.1password.com/1password-claude/
3•qainsights•9m ago•0 comments

What Happened at Stars and Stripes

https://www.theatlantic.com/ideas/2026/09/pentagon-military-newspaper-independence-supression/688...
2•Jtsummers•9m ago•1 comments

Qwen 3.8 follows GPT-5.5 Pro reasoning prefills

https://gist.github.com/wsxiaoys/e0286dc6bb624ff5fdf49e7f4c528ba3
3•wsxiaoys•10m ago•0 comments

Show HN: Envy, a flat-file frictionless note-taking app for Linux

https://envynote.app/omarchy/
3•widowlark•10m ago•0 comments

Don't Give in to Nostalgia

https://elliot.my/dont-give-in-to-nostalgia/
2•frizlab•10m ago•0 comments

Ask HN: iPhone 18, No Foldable?

https://www.apple.com/iphone/
3•nittanymount•12m ago•3 comments

I Typed 'Block the Merger.' AI Revised It to 'Drop Your Opposition.'

https://www.contrariannews.org/p/i-typed-block-the-merger-ai-revised
2•DeepLogin•12m ago•0 comments

Best Observability Extention

https://marketplace.visualstudio.com/items?itemName=SukantaSaha.opentelemetry
4•man191•13m ago•0 comments

The Power of Existence Proofs

https://transducer.substack.com/p/the-power-of-existence-proofs
2•zxie•15m ago•0 comments

Show HN: A guestbook for humans and AI agents, built on 144 pixels

https://a90.com/blog/a-guestbook-for-humans-and-ai-agents/
3•genesishash•15m ago•0 comments

The Billion Dollar Bet on Redesigning the Reusable Rocket (Stoke) [video]

https://www.youtube.com/watch?v=D2aso1PSr-4
2•consumer451•15m ago•0 comments

I don't need 100s of Codex agents

https://www.lighthousenewsletter.com/p/how-i-use-codex-for-larger-changes
2•j0selit0•16m ago•1 comments

Show HN: Story map of the 2026 Nepal flood: damage on the ground, lakes above

https://notebook.link/@arjxn-py/nepal-flash-flood-review
2•arjxn-py•16m ago•0 comments

My Mental Model of AI Broke on September 8

https://rough-ideas.bearblog.dev/my-mental-model-of-ai-broke-on-september-8/
2•iamanatom•16m ago•0 comments

1915-1934 United States occupation of Haiti

https://en.wikipedia.org/wiki/United_States_occupation_of_Haiti
3•simonebrunozzi•17m ago•0 comments

Have You Ever Tried to Sell a Diamond? (1982)

https://www.theatlantic.com/magazine/archive/1982/02/have-you-ever-tried-to-sell-a-diamond/304575/
3•simonebrunozzi•20m ago•0 comments

Growing proof that autonomous cars save lives

https://spectrum.ieee.org/are-self-driving-cars-safe
20•bookofjoe•20m ago•11 comments

Procedural Graphs: Self-Evolving Execution Structures for LLM Agents

https://academy.dair.ai/papers/procedural-graphs-self-evolving-execution-structures-for-llm-agent...
2•omarsar•21m 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.