frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

LFM2.5-Encoders for Fast Long-Context Inference on CPU

https://huggingface.co/blog/LiquidAI/lfm2-5-encoders
1•gmays•16s ago•0 comments

Covid can wake up a slew of dormant viruses inside you

https://www.nature.com/articles/d41586-026-02443-2
2•amichail•29s ago•0 comments

Free-Living Cells May Have Emerged Twice as Bacteria and Archaea Diverged

https://phys.org/news/2026-08-life-free-cells-emerged-bacteria.html
1•jandrewrogers•2m ago•0 comments

How to Give AI Agent a Memory That Survives the Session

https://medium.com/@vektormemory/how-to-give-ai-agent-a-memory-that-survives-the-session-116f69c2...
1•vektormemory•3m ago•0 comments

Support queue is a documentation audit

https://www.knowledgeowl.com/blog/posts/support-queue-as-docs-audit
1•eigenBasis•5m ago•0 comments

ATS Job API Reference: nine applicant tracking systems, verified live

https://conorscode.github.io/ats-api-reference/
1•Wevegotscrapys•6m ago•0 comments

Is M365 Copilot sending some prompts to Anthropic?

https://thatrobot.ai/claude-residency-gap-m365-copilot/
1•soundworlds•8m ago•1 comments

We spend $45,000 on doing more weird every month

https://posthog.com/blog/on-doing-more-weird
1•herbertl•8m ago•0 comments

4 Fundamental constants reveal minimum scales where physics ends: Planck scale

https://www.youtube.com/watch?v=IPnmssrwGcg
1•lioeters•9m ago•0 comments

What I think about when I edit blog posts

https://ianv.substack.com/p/what-i-think-about-when-i-edit-blog
1•herbertl•9m ago•0 comments

Generalized Consensus: An Alternate Approach to Distributed Durability (2025)

https://multigres.com/blog/generalized-consensus
1•zX41ZdbW•10m ago•0 comments

OpenAI gives first detailed debrief of the Hugging Face incident at Black Hat

https://www.groundlevel-ai.com/p/openai-gives-first-detailed-debrief
2•josephwegner•15m ago•2 comments

Proposing a new lower bound for n=17 square packing problem

https://twitter.com/samb_tech/status/2085158495569977636
2•sam-bee•20m ago•1 comments

The Planck Scale with Countable Measure for All Quantities of Length and Time

https://vixra.org/abs/2212.0215
1•lioeters•22m ago•0 comments

The Mentor: How Roy Cohn Taught Donald Trump Everything

https://www.newyorker.com/magazine/2026/08/10/roy-cohn-profile
2•petethomas•23m ago•0 comments

Show HN: Clank Cut – Let your coding agent make video walkthroughs

https://www.clankcut.com
1•hamzers•24m ago•0 comments

TechCrunch Launch: Outernet turns your scrolling into IRL adventuring

https://techcrunch.com/2026/08/03/outernet-turns-your-saved-posts-into-real-world-adventures/
2•rawandferal•24m ago•0 comments

Prime Agent a general-purpose coding harness. On ARC-AGI-3 scored 95.5%

https://x.com/PrimeIntellect/thread/2085087002769379520
2•mromanuk•28m ago•0 comments

Relativistic Algebra over Finite Ring Continuum

https://doi.org/10.3390/axioms14080636
2•lioeters•28m ago•0 comments

How to build an agent to automate your on-call

https://12gramsofcarbon.com/p/agentics-how-we-use-background-agents
1•theahura•29m ago•0 comments

Symbolics Genera now available free for non-commercial use (inv-only early beta)

https://hachyderm.io/@gmpalter/117044268951603975
2•self•30m ago•0 comments

Dspy.Flex lets optimizers rewrite the code for faster, cheaper, better programs

https://www.cmpnd.ai/blog/let-the-model-write-the-code.html
1•dbreunig•30m ago•0 comments

The Orange Cloud Report – Ratings for Cloudflare Services

https://orangecloud.report/
2•gurjeet•34m ago•0 comments

Three Times I Measured Nothing

https://medium.com/@alanscottencinas/three-times-i-measured-nothing-72023fc7d73f
2•encinas88•35m ago•0 comments

Liberals Are Now Fighting a Two-Front War

https://www.theatlantic.com/ideas/2026/08/michigan-abdul-el-sayed-election/688181/
3•donsupreme•35m ago•2 comments

Why Are Birthrates Down? Two New Studies Point to Phones

https://www.nytimes.com/2026/06/08/us/iphone-birthrate-decline-studies.html
1•hsuduebc2•36m ago•1 comments

Rendering 100k sensor readings with LTTB

https://aranajhonny.github.io/writing/sensor-chart-lttb.html
1•akatsutki•37m ago•0 comments

The Live Shopping App Where Some People Bid Until They're Broke

https://www.wsj.com/business/retail/whatnot-live-shopping-app-48b67987
2•JumpCrisscross•38m ago•0 comments

WaitPerk: sponsors in your Claude Code status line, you get paid

https://waitperk.com/
1•SamPentz•43m ago•0 comments

Apple Vision Pro as a wearable display for endoscopic [surgical procedure]

https://www.sciencedirect.com/science/article/pii/S2950253526000651
2•mch82•44m 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.