frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Moondream Parakeet Redux and Parakeet Ultra

https://moondream.ai/blog/introducing-parakeet-redux-and-ultra
1•GaggiX•2m ago•0 comments

Happy Birthday to GNU (Starring Stephen Fry)

https://www.youtube.com/watch?v=NM8VGiOv_I8
2•steptwo•4m ago•1 comments

AirCard: Customize Apple Pay card artwork without a jailbreak

https://github.com/Mak5er/AirCard
1•jonbraun•5m ago•0 comments

U.S., Russia stripped human oversight from global AI weapons pact

https://www.washingtonpost.com/technology/2026/09/26/how-us-russia-weakened-global-effort-regulat...
2•reconnecting•5m ago•1 comments

Chinese AI models surge in global popularity

https://www.cnbc.com/2026/09/26/china-ai-global-adoption.html
2•haebom•5m ago•0 comments

Meta Blocks President Lula's Facebook Page, Campaign Ads 2 Weeks from Election

https://www.reddit.com/r/worldnews/comments/1wr3id3/meta_blocks_president_lulas_facebook_page_and/
2•rbanffy•10m ago•1 comments

Show HN: AI SVG Generator

https://imgstyler.com/ai-svg-generator
2•jerry5678•11m ago•0 comments

Sleef: SIMD library for evaluating elementary functions, a vectorized libm, trig

https://sleef.org/
2•fanf2•12m ago•0 comments

Can an Economy Run Without Anyone Working? [video]

https://www.youtube.com/watch?v=qFf1_gRU2Lw
1•Wilsoniumite•14m ago•0 comments

Ask HN: What has been the impact of AI on your local "ideas guy"?

1•Ambolia•14m ago•1 comments

The eighteen-month recap: AI Engineer, Singapore, May 2026

https://ghuntley.com/eighteen-month-recap/
1•ghuntley•18m ago•0 comments

Jev model free online with direct API

https://sifty.dev/
2•ralphlaur•20m ago•0 comments

Is AI improving quality of life?

https://twitter.com/dave8172/status/2104085932622201133
1•dave8172•22m ago•1 comments

Helidon 27 Released

https://medium.com/helidon/helidon-27-released-9ce206503e0a
1•thebitofmyheart•25m ago•0 comments

OpenAI is pausing training for a second time

https://fortune.com/2026/09/26/openai-ai-agents-secure-sandbox-escape-training-pause-second-time-...
1•abdullahalharir•28m ago•0 comments

Awesome Free Developer Services

https://github.com/kebbbnnn/Awesome-Free-Developer-Services
1•kbn•32m ago•0 comments

Major Italian bank defrauded of millions via AI deception

https://www.newsbrainport.nl/major-italian-bank-defrauded-of-millions-via-ai-deception/
1•amelius•37m ago•0 comments

Frontier Labs Job-Board

https://frontierlabs.work/
2•sert_121•38m ago•0 comments

Show HN: A Simple GPU Job Scheduler

https://github.com/ceruleane/gpusched
2•mothproof•45m ago•0 comments

'Things Will Never Be Chill Again':The Doomers Who Shaped the AI Safety Freakout

https://www.wsj.com/tech/ai/ai-safety-effective-altruism-anthropic-164b9d05
2•rl3•48m ago•0 comments

Thiel: Trump administration is staffed by not smart but loyal people

https://twitter.com/RpsAgainstTrump/status/2103937218197004551
2•doener•49m ago•1 comments

Show HN: An interactive debugger for the Mornington Crescent esolang

https://codeberg.org/Two9A/mcresc
2•Two9A•1h ago•0 comments

AI-native React components that signal how oversubscribed your funding round is

https://performative-ui.cncl.co/
3•dsego•1h ago•0 comments

The LLM Job Paradox

https://blog.nilesh.io/post/llms-and-jobs
5•pmg101•1h ago•2 comments

United in debt: America has become a nation of fake rich people

https://thehill.com/opinion/finance/6112015-us-split-digital-physical-economies/
3•koolba•1h ago•0 comments

OpenAI halts training of latest models

https://www.theguardian.com/technology/2026/sep/27/openai-halts-training-of-latest-models-as-repo...
3•cc62cf4a4f20•1h ago•1 comments

You don't need to win or lose. You don't need to choose

1•bcusjfurkxnjck•1h ago•1 comments

Beware of Chicken

https://www.audible.com/pd/Beware-of-Chicken-A-Xianxia-Cultivation-Novel-Audiobook/B09Y2D2D5T
1•karl_gluck•1h ago•1 comments

You don't have to choose. You don't have to win or lose

1•ijjbvghij•1h ago•0 comments

The Six Dumbest Ideas in Computer Security

https://ranum.com/security/computer_security/editorials/dumb/
1•mashally•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.