2 Sources
[1]
NanoClaw now armed with JFrog for safer packages
NanoClaw, a secure agent framework, has partnered with supply chain platform JFrog to allow AI agents to fetch resources from JFrog's reviewed registries. Gavriel Cohen, creator of NanoClaw and co-founder of NanoCo AI, announced the tie-up on Thursday evening in San Francisco at a JFrog event that concluded with a World Cup watch party. Cohen explained that one of the features of Claw agents - OpenClaw and variations like NanoClaw - is that they can improve themselves by fetching tools and resources that they don't have. That works fine, he explained, when there's a manual approval process for accessing known local data. But it's not ideal for npm packages, even when the agent involved is sandboxed and isolated as it is in NanoClaw. Malicious code within a container may still be able to take harmful actions, even if the scope of potential activity is constrained. Developers, Cohen said, may not be familiar with a given package and it can take time to thoroughly assess whether a package is legitimate and uncompromised. "So we teamed up with JFrog and we integrated NanoClaw with JFrog's registries," said Cohen. The arrangement provides a way to reduce the agent's exposure to untrusted content. When the agent downloads new tools and libraries, the software comes from a vetted source. Cohen also announced the availability of what he called an agent factory, his company's homegrown system used to handle pull requests (PRs) using NanoClaw agents. The agent factory, he explained, is an attempt to triage pull requests, which have surged thanks to AI coding agents. "It's very easy now to point a coding agent at a repo and say, 'open a pull request for this repo,'" he explained. "And it's very difficult as a maintainer to tell the difference between a high quality contribution from somebody who's really using the open source project versus someone who's just trying to build up the reputation [using automated methods]. So to help us tackle this, we built an agent factory that helps us review every single contribution to NanoClaw." The agent factory is referred to as the PR Factory in the actual pull request. It's built with NanoClaw and hosted on exe.dev, a service that provides VMs with persistent storage. "When a PR opens, the factory spins up a dedicated worker agent for it, posts a thread to Slack, and the worker triages the change, reviews the diff, and proposes a test plan," Cohen explains in the documentation. "Nothing consequential happens on its own: merges, test runs, and credentialed GitHub actions each surface as an approval card in the thread, and only fire when a human clicks approve." Cohen acknowledged that some developers will think it's madness to process unsanitized PRs that could contain prompt injections or unsafe code. And he asked the assembled audience of developers how many had seen the phrase on the projected slide: "Never, ever, ever do this." Anyone who has spent time using and configuring AI agents in a development context has seen something of the sort in configuration files like Claude.md, which gets loaded as instructions to the underlying agent and model. "If you see something like this in the Claude.md file and the agent instructions say, 'Important: Never run drop database production,' it tells you two things. You know that that agent has deleted a production database before. And you know that it can actually still do it again. That's why the instruction is there." This elicited a knowing laugh from the audience. Cohen went on to say that the agent will do it again because instructions are not a way of enforcing security or safety. "Instructions help steer an agent AI towards valuable output, but it's not a safety mechanism," he said. "The only way to reliably prevent an agent from taking undesired action is not allowing it to take that action, not giving it the ability to take the action." That is the purpose of NanoClaw. ®
[2]
NanoClaw and JFrog launch 'immune system' to block AI agents from downloading malicious code
The creators of the hit, enterprise-friendly, open source OpenClaw variant NanoClaw are partnering with software supply chain management leader JFrog have to launch a new, joint security integration they say will protect NanoClaw autonomous agents from malicious code injection. "These agents are doing things that you cannot necessarily control, and you cannot necessarily train," said Gal Marder, Chief Strategy Officer at JFrog, in an exclusive interview with VentureBeat. Available immediately, the partnership hardwires NanoClaw agents directly to JFrog's vetted software registries, ensuring that AI assistants can only pull scanned, safe dependencies. The release addresses a rapidly growing blind spot in tech: autonomous agents frequently install packages in the background to extend their capabilities, often without their human operators' knowledge or oversight. "The people who are operating the agents are not necessarily developers, and they are not even aware of the implications," explained Gavriel Cohen, creator of NanoClaw and CEO and co-founder of its new commercial services startup, NanoCo AI. To secure the broader ecosystem, the integration is available completely free of charge for the open-source community, while enterprise organizations can seamlessly route their agents through their existing, commercially licensed JFrog environments. The new technical capability enabled by this partnership follows NanoCo's moves to add permissions dialogs across the apps in which it's available via a partnership with Vercel, and a new partnership with Docker to allow NanoClaw agents to run more securely, isolated from other software environments directly inside Docker virtual containers. The risk of current, personal autonomous AI agents When an operator interacts with an autonomous system like NanoCo's NanoClaw, they communicate at a high level of abstraction. A user might simply send an audio file or a voice note, prompting the agent to independently figure out how to process it. As Cohen explained, the agent thinks, "oh, I can't understand voice notes, so let me go and grab a package and download something and install it and set it up and run it". This dynamic self-improvement makes AI agents incredibly powerful, but it also renders them highly susceptible to software supply chain attacks. Bad actors are increasingly poisoning open-source registries with malicious packages. Because agents act autonomously to fetch what they need, they bypass human scrutiny. The operators, who may not even be developers, are largely unaware of the security implications unfolding behind the scenes. How NanoCo and JFrog are working to stop agents from running malicious code The integration between NanoCo and JFrog acts as an automated immune system for these AI environments. Under the hood, NanoClaw agents are now configured to route their requests for software packages, CLI tools, and Model Context Protocol (MCP) servers exclusively through JFrog's registries. If an agent attempts to download a compromised library -- such as a vulnerable version of the popular Axios package -- the JFrog registry intercepts the request. It blocks the installation, returning a security policy error to the agent, noting that the request was "rejected by JFrog's registry with a 403 security policy". Crucially, the system does not just stop at blocking the threat; it creates a dynamic correction loop. The agent is notified of the vulnerability and guided to automatically seek out and install an approved, non-malicious version of the requested package instead. For large organizations, this integration solves a massive compliance headache. Marder notes that as enterprises adopt autonomous agents, they require absolute visibility. Organizations need "a system of record, we need somewhere to track what agents that's running by whom and consuming what packages and using what skills and using what MCPs," he told VentureBeat. Beyond visibility, the JFrog integration provides a foundational "trust layer" and strict governance over what these automated systems are permitted to access. Licensing and accessibility In the realm of software distribution, licensing and access parameters dictate adoption. The NanoCo and JFrog partnership utilizes a dual-track approach to serve both individual open-source developers and highly regulated enterprises. For the open-source community, the integration is completely free. JFrog is providing open-source NanoClaw users with complimentary access to safe, vetted sources of artifacts, tools, and skills. This allows individual developers to run autonomous agents locally without drowning in manual approval requests for every single dependency. Furthermore, as community members build and share new "skills" for the agents, these contributions are uploaded to the registry, scanned for malicious code, and cleared before anyone else can use them. This infrastructure directly neutralizes the threat of poisoned community repositories. For enterprise deployments, the architecture plugs seamlessly into an organization's existing commercial environment. Rather than using the public open-source registry, corporate users point their NanoClaw agents to their own internal JFrog registries. This ensures that all agent activity adheres to the company's specific commercial licenses, internal security policies, visibility needs, and governance standards. As AI continues to blur the line between human intent and machine execution, the infrastructure securing that execution must evolve. This partnership acknowledges a core reality: you cannot train an AI to perfectly recognize every zero-day vulnerability; instead, you must build an environment where the agent simply cannot reach the vulnerability in the first place.
Share
Copy Link
NanoClaw has partnered with software supply chain platform JFrog to protect autonomous AI agents from malicious code injection. The integration routes agent requests through JFrog's vetted software registries, blocking compromised packages automatically. Available free for open-source users, the partnership addresses a critical blind spot as AI agents increasingly install dependencies without human oversight.
NanoClaw, a secure AI agent framework, has partnered with supply chain platform JFrog to protect autonomous agents from downloading malicious code through vetted software registries
1
2
. Gavriel Cohen, creator of NanoClaw and CEO of NanoCo AI, announced the collaboration at a JFrog event in San Francisco, introducing what both companies describe as an automated immune system for AI environments. The integration addresses a rapidly growing security blind spot: autonomous agents frequently install packages in the background to extend their capabilities, often without their human operators' knowledge or oversight2
.
Source: The Register
The partnership hardwires NanoClaw agents directly to JFrog's scanned registries, ensuring AI assistants can only pull safe dependencies. When an agent attempts to download a compromised library, such as a vulnerable version of the popular Axios package, the JFrog registry intercepts the request and blocks the installation with a 403 security policy error
2
. The system creates a dynamic correction loop by notifying the agent of the vulnerability and guiding it to automatically seek out and install an approved, non-malicious version instead. This approach tackles a fundamental challenge with Claw agents like OpenClaw and NanoClaw, which can improve themselves by fetching tools and resources they don't have1
.
Source: VentureBeat
Cohen emphasized that instructions alone cannot enforce AI agent safety or security. During his presentation, he referenced configuration files that include warnings like "Never run drop database production," explaining that such instructions reveal two things: the agent has performed that action before, and it can still do it again
1
. "Instructions help steer an agent AI towards valuable output, but it's not a safety mechanism," Cohen said. "The only way to reliably prevent an agent from taking undesired action is not allowing it to take that action, not giving it the ability to take the action"1
. This philosophy underpins NanoClaw's approach to containing untrusted packages and malicious content.Related Stories
The integration is available immediately and completely free for the open-source community, while enterprise organizations can route their agents through their existing commercially licensed JFrog environments
2
. For large organizations, this integration solves a massive governance and compliance challenge. Gal Marder, Chief Strategy Officer at JFrog, told VentureBeat that enterprises require "a system of record, we need somewhere to track what agents that's running by whom and consuming what packages and using what skills and using what MCPs"2
. The partnership provides both visibility and a foundational trust layer over what automated systems can access.Cohen also announced the availability of an agent factory, NanoCo AI's homegrown system for handling pull requests using NanoClaw agents
1
. The system attempts to triage pull requests, which have surged thanks to AI coding agents. When a pull request opens, the factory spins up a dedicated worker agent, posts a thread to Slack, and the worker triages the change, reviews the diff, and proposes a test plan. Nothing consequential happens without human review: merges, test runs, and credentialed GitHub actions each surface as an approval card in the thread and only fire when a human clicks approve1
. This addresses the challenge maintainers face distinguishing high-quality contributions from automated reputation-building attempts.Summarized by
Navi
[1]
13 Mar 2026•Technology

21 May 2026•Startups

30 Mar 2026•Technology

1
Technology

2
Business and Economy

3
Health
