Back to OpenClaw News OpenClaw 2026.6.1 Graduates: NVIDIA Skill Cards, Workboard Orchestration, and the Security Reckoning Continues
June 2, 2026 Release Security Skills Ecosystem Community

OpenClaw 2026.6.1 Graduates: NVIDIA Skill Cards, Workboard Orchestration, and the Security Reckoning Continues

OpenClaw's 2026.6.1 pre-release hardens skill security with NVIDIA SkillSpector, ships Workboard multi-agent orchestration, externalizes Copilot and Tokenjuice as official plugins, and tightens runtime resilience across every channel — while the industry spotlight on exposed agent instances burns hotter than ever. We cover the full release, a timely security tip on exposed instances, a skill of the day with verified safety scanning, community highlights, and the broader ecosystem news including Microsoft Build 2026's big agent announcements.

Share

🦞 OpenClaw Updates

2026.6.1: The Biggest Structural Release in Months

OpenClaw's 2026.6.1 pre-release landed June 1st and it is the largest structural release since the chaotic late-April stabilization sprint. This is not a "we fixed some bugs" release. It is a statement about where the project is going: governed skill creation, proper multi-agent orchestration, externalized plugin architecture, and hardened mobile delivery paths. Let's break down what actually matters.

Skill Workshop: Governed Skill Creation Is Finally Real

The headline feature of 2026.6.1 is the Skill Workshop — a full proposal lifecycle for creating, reviewing, and deploying skills inside OpenClaw, backed by a Control UI dashboard, CLI/Gateway review actions, rollback metadata, and the new skill_workshop agent tool.

The workflow works like this: a pending proposal is submitted, carries versioned frontmatter, can be revised in place before approval, and must pass through a guarded review flow before it is applied, rejected, or quarantined. Approved proposals can carry support files under standard skill folders, with scanner, hash, and rollback safeguards attached. The Control UI adds navigation, a styled dashboard, a "today actions" proposal view, a revision dialog, searchable file previews, and reusable session handoff.

This is a big deal for operators who want to create bespoke skills without the wild west feeling of dropping files directly into the skill directory. The proposal pattern means there's a tracked, reviewable audit trail for every skill change — exactly the kind of governance that enterprise teams have been asking for since the ClawHavoc incident in January.

"Skills: add Skill Workshop with pending proposals, CLI/Gateway review actions, rollback metadata, and the skill_workshop agent tool." — OpenClaw 2026.6.1 release notes

Workboard: Multi-Agent Orchestration Gets a Proper Home

OpenClaw has long supported spawning sub-agents and parallel task execution, but until now there was no native surface for tracking multi-agent work across a session. The new Workboard changes that. It adds orchestration primitives and agent coordination tools for multi-agent planning and run tracking, wires task-backed board runs, and shows task comments in the edit modal.

Think of it as a lightweight kanban-meets-orchestration layer that lives inside OpenClaw. You can coordinate complex multi-step work across several agents, see what each is doing, and track the state of parallel runs without writing custom glue code. Combined with the Dreaming-tab agent selector added in the Control UI (which lets you choose which agent drives the Dreaming/diary flow), the orchestration story is materially more complete than it was even two weeks ago.

Plugins Externalized: Copilot and Tokenjuice Go First-Class

Two important plugins graduated out of the core bundle in this release. GitHub Copilot agent runtime is now @openclaw/copilot on npm with ClawHub publish metadata, and Tokenjuice (the token-budget management layer) is now @openclaw/tokenjuice with the same treatment. Both are installable from ClawHub and published with full npm package metadata.

This continues the "shrink the core" strategy that has been the central architectural theme since May. Every plugin that moves out of the bundle makes the base OpenClaw install faster, safer, and easier to audit. The flip side — which the project's own post-mortem acknowledged — is that the transition creates a brief middle state where things break in subtle ways. The 2026.6.1 notes indicate significant effort went into making plugin loading handle stale disabled snapshots and loader failures more clearly.

Runtime Resilience: Every Channel Got Steadier

The 2026.6.1 notes enumerate a remarkable breadth of channel and runtime improvements. Agents and CLI-backed runtimes now recover more cleanly from interrupted tool calls, stale session bindings, compaction handoffs, and media delivery retries. Channel delivery across Telegram, WhatsApp, iMessage, Slack, Discord, Microsoft Teams, Google Chat, Google Meet, and iOS realtime Talk is all more stable. Provider and plugin requests now have properly bounded timers, retries, OAuth lifetimes, media download limits, and polling paths — so a hanging provider can no longer take down a whole run.

The iMessage monitor state, inbound queues, and plugin install ledgers moved to SQLite-backed state — a quiet but important change. This means that when OpenClaw restarts, local monitors recover with less duplicate filesystem scanning. Startup is faster and cleaner, and restarts don't create phantom duplicate events. The same principle applies to the plugin install index, which now survives reloads without needing to re-scan the filesystem.

Provider Coverage: MiniMax M3 and More

The provider side of the release adds MiniMax M3 model support alongside account OAuth endpoint fixes, Google/Vertex catalog corrections, OpenRouter SQLite model caching, Copilot Claude 1M context capabilities, Foundry reasoning alignment, and OpenAI response replay guards. The OpenRouter SQLite caching is particularly welcome — previously, model discovery could hammer OpenRouter's API on every startup; now it's cached locally and refreshed on demand.

Code mode also got attention, gaining internal namespaces for scoped agent/global sessions and exact namespace tool dispatch, plus new MCP API files and docs for code-mode integrations. This fills a gap that developers building on OpenClaw's code mode have been asking about: clear scoping semantics for which tools belong to which session context.

SEN-X Take

2026.6.1 is the release where OpenClaw starts looking like infrastructure rather than a fast-moving personal project. Governed skill proposals, Workboard orchestration, externalized plugins with proper npm packaging, and SQLite-backed state across multiple subsystems — these are enterprise-grade architectural choices. The project is clearly aiming for a class of operator that needs to justify the software to a security team or IT department. That's exactly the right direction, and it's happening faster than we expected.

🔐 OpenClaw + NVIDIA: The Skill Security Story Gets Serious

Timed closely with the 2026.6.1 release, OpenClaw published a detailed post on its collaboration with NVIDIA to harden skill security on ClawHub. This is worth understanding in depth because it represents a meaningful upgrade to the trust model around the entire skill ecosystem.

The Problem That Prompted This

Traditional malware scanning is a relatively solved problem. What is not solved is identifying agentic risk. A skill can claim to summarize your logs while shipping them off your machine. A well-meaning skill can point your agent at a CLI that wipes production on the wrong flag. Neither of those behaviors triggers a traditional virus scanner. And after the ClawHavoc incident in January — where 341 out of 2,857 ClawHub skills turned out to be malicious — the ecosystem needed a better answer than "wait for someone to notice."

NVIDIA Skill Cards

The first new trust artifact is the NVIDIA Skill Card — a verified specification that ships with every published ClawHub skill. Each card tells you: who published it, what it can do, what ClawScan found, and exactly where it came from. Crucially, these are verified by ClawHub, not taken from the publisher's self-description. You can read the card on the skill detail page or from the terminal with:

openclaw skills verify <slug> --card

NVIDIA SkillSpector

The second new piece is NVIDIA SkillSpector, a new agent-skill scanner that combines static analysis with AI-assisted semantic analysis. It goes beyond what malware scanners catch — flagging hidden instructions, risky code paths, overbroad capability grants, dependency issues, and mismatches between a skill's declared purpose and its actual behavior. SkillSpector is the piece that catches the subtle agentic threats that ClawScan's Codex-based analysis might miss.

The ClawScan Pipeline

The full pipeline now works like this: when a skill version is published, an OpenAI Codex agent evaluates the output of three independent scanners — static analysis, VirusTotal, and NVIDIA SkillSpector — alongside provenance, metadata, and moderation history. The result is a Skill Card with a final verdict: Clean, Suspicious, or Malicious. All ClawHub skill pages expose the latest scan state before install. The data is also published as an open dataset on Hugging Face so the broader community can build on the scan outcomes.

SEN-X Take

This is the right move, and the timing is not accidental. OpenClaw is operating under a security microscope right now, with 21,000+ exposed instances documented in January and a growing body of security research pointing at agent skill supply chains as the next major attack surface. Publishing the scan pipeline in the open and partnering with NVIDIA gives ClawHub real institutional credibility. More importantly, the Hugging Face public dataset means the community can now train their own skill-safety tooling. That kind of openness is rare and should be rewarded.

🔒 Security Tip of the Day

Stop Running OpenClaw With Your Gateway Exposed to the Internet

Reco's recent report makes for sobering reading: within two weeks of OpenClaw going viral in January, Censys identified over 21,639 instances publicly accessible on the internet. By late May that number had grown. This is not a hypothetical risk — there are active scans for exposed OpenClaw control interfaces, and open instances have been exploited in documented attacks.

If you are running OpenClaw at home or in a small business, here is the short version of what you need to do:

  • Bind to localhost only. Your OpenClaw gateway should never listen on 0.0.0.0 unless you know exactly why. Check your config with openclaw config get gateway.host and ensure it returns 127.0.0.1 or localhost.
  • Use a VPN or Tailscale for remote access. If you need to reach your agent from outside your home network, Tailscale (or a similar zero-trust network) is the right tool. Do not port-forward your gateway port on your router.
  • Enable gateway authentication. Even on localhost, authentication matters — especially if you share a machine or have other software running that could make local HTTP requests. Set a strong gateway token.
  • Set exec approval requirements. The tools.exec.security setting controls whether shell commands need explicit approval. For most users, this should not be set to unconditional allow. The 2026.6.1 release added more granular approval policy controls — use them.
  • Audit your skill list. Use openclaw skills verify <slug> --card on every installed skill now that NVIDIA Skill Cards are available. If a skill shows Suspicious or lacks a card entirely, uninstall it and reinstall from ClawHub after verifying the current scan state.

Bottom line: OpenClaw is powerful precisely because it has broad access to your system. That same power is why a misconfigured instance is such an attractive target. The answer is not to avoid using it — it is to treat it the same way you would treat SSH: strong auth, minimal exposure, and no public-facing management interfaces without a hardened access layer in front.

⭐ Skill of the Day: auto-skill-hunter

🔧 auto-skill-hunter

What it does: Listed in the VoltAgent awesome-openclaw-skills collection under the Productivity category, auto-skill-hunter is a meta-skill that proactively discovers, ranks, and installs high-value ClawHub skills by mining unresolved user needs and agent gaps. Instead of manually browsing ClawHub for new capabilities, this skill watches your agent's behavior for patterns that suggest a missing tool, searches ClawHub automatically, and surfaces ranked candidates with safety scan states so you can make an informed install decision.

Why it's relevant today: With 52,700+ tools now on ClawHub and growing fast, skill discovery is becoming its own problem. This skill addresses that directly — but in a way that keeps the human in the loop. It does not auto-install; it surfaces options with context. That's exactly the kind of agency boundary that makes skill automation feel responsible rather than reckless.

Safety verification: This skill is listed in the VoltAgent awesome-openclaw-skills collection, which filters out spam, duplicate, low-quality, and identified-malicious skills from ClawHub's full catalog. Before installing, verify its current scan state with openclaw skills verify auto-skill-hunter --card to check the latest VirusTotal and SkillSpector results. The skill operates by searching ClawHub (a read-only operation) and presenting candidates — it does not execute code on your behalf or reach out to external services beyond ClawHub's own API. That's a relatively low blast radius by design.

Install: clawhub install auto-skill-hunter

Best use case: Operators who have been using OpenClaw for a few weeks and want to level up their setup without spending an afternoon browsing ClawHub manually. It's also useful when you encounter a recurring task your agent struggles with — let the skill hunter find the right tool rather than writing a custom skill from scratch.

👥 Community Highlights

NanoClaw: When OpenClaw's Own Code Inspires a Competitor

One of the most fascinating community stories this week comes from The New Stack: NanoClaw founder Gavriel Cohen walked away from OpenClaw after finding his own code inside it — a half-million lines of code that he felt had grown too large to audit or secure. NanoClaw is his response: a containerized, security-first rebuild that prioritizes minimal surface area over feature completeness.

This is actually a healthy ecosystem signal. OpenClaw has chosen breadth — support every channel, every provider, every use case, with a full skills marketplace. NanoClaw has chosen depth: a smaller, more auditable codebase built around containers and explicit security boundaries. Both approaches have legitimate constituencies. OpenClaw is the Swiss Army knife; NanoClaw is the scalpel.

The interesting tension is what Cohen's critique reveals: at half a million lines of code, the security audit problem is real. The NVIDIA SkillSpector and ClawScan pipeline help with the skill layer, but they don't audit the core OpenClaw runtime itself. That's an area where the community is increasingly demanding more — more automated testing, more bounded CI coverage, more formal proof-of-security for critical paths.

Tom's Guide: Sam Altman's Tip Brings New Users In

Tom's Guide ran a feature this week under the headline "I followed Sam Altman's tip and signed into OpenClaw with my ChatGPT account — here's what happened." The piece is a mainstream, consumer-friendly introduction to OpenClaw, and it focuses heavily on the cron scheduling use case — "scheduled tasks were another standout feature; OpenClaw handled cron jobs with ease, sending me a personalized morning briefing through Discord every day at 8 a.m." The article is a signal that mainstream consumer tech media is now covering OpenClaw as a legitimate personal productivity tool, not just a developer curiosity.

This matters for the ecosystem. When mainstream tech media covers OpenClaw, it brings in a wave of users who have very different expectations from the developer-first crowd. They want it to "just work," they won't read the security documentation, and they definitely won't bind to localhost by default. That's part of why the security exposure problem is accelerating — new users don't know what they don't know.

ClawHub Hits 52,700+ Tools

ClawHub's homepage shows 52,700+ tools across 180,000 users with 12 million downloads and a 4.8 average rating. The awesome-openclaw-skills community-curated list from VoltAgent now tracks 5,211 quality-filtered skills — filtering out 7,215 that were spam, duplicates, low-quality, crypto-focused, or identified as malicious by security researchers. The community curation layer is doing real work here, and it's a worthwhile complement to ClawHub's automated scanning.

SEN-X Take

The community is at an interesting inflection point. On one hand, mainstream media coverage and 180,000 ClawHub users suggest OpenClaw has crossed the chasm into broader adoption. On the other hand, NanoClaw's existence and the ongoing security exposure problem show that the expert community is starting to fragment around the security vs. feature velocity tradeoff. OpenClaw's best response to both pressures is exactly what 2026.6.1 demonstrates: ship governed workflows, harden the skill supply chain, and make it progressively easier to run the system safely. Speed and safety are not opposites — but speed without safety creates the exposure problem, and the project is clearly aware of that now.

🌐 Ecosystem News

Microsoft Build 2026: Windows Becomes an Agent Platform

Microsoft Build 2026 kicked off June 2 in San Francisco, and the keynote from Satya Nadella had a clear thesis: Windows is no longer a platform for human users only. The conference is announcing new Windows Agent Framework APIs, a Copilot agent mode, and a Windows Agent Store. For OpenClaw users, the Windows Agent Framework matters in a specific way: it formalizes the APIs that local agents can use to interact with Windows, which should make future OpenClaw Windows integration cleaner and more capable.

The broader Build context is also relevant. Microsoft is essentially betting that "Windows as agent platform" is its answer to the question of what Windows is for in an AI-first world. That directly validates the local-agent architecture that OpenClaw has been building. If Microsoft's thesis is correct — and we think it is — then the future is a world where every PC has a persistent local agent running on it, and where the competition is over which agent runtime owns that relationship. OpenClaw is already there, running on Mac and Linux, with Windows support maturing fast.

Orca: OpenClaw-Powered Autonomous Market Infrastructure

Orca unveiled its OpenClaw-powered execution infrastructure this week, describing a platform that combines autonomous AI agents, Nodepay-powered sentiment intelligence, and OpenClaw automation infrastructure to create a full-stack intelligent market participation system. OpenClaw's Skills Architecture, they say, "allows Orca's AI Agents to operate across specialized capability modules — market monitoring, signal interpretation, risk management, execution, and feedback optimization — continuously and without manual intervention."

This is a notable example of enterprise-grade OpenClaw deployment in a high-stakes domain. Orca is using OpenClaw not as a personal assistant but as an orchestration substrate for autonomous financial operations. That's a meaningful vote of confidence in the platform's reliability and extensibility — and it's the kind of use case that would have seemed aspirational a year ago.

GitHub Copilot Shifts to Usage-Based Billing on June 1

As of June 1, 2026, all GitHub Copilot plans now bill on GitHub AI Credits (usage-based), Copilot code review consumes Actions minutes, and new features include user-level budgets and an upgrade path to "Copilot Max." This matters for OpenClaw users because the @openclaw/copilot plugin — newly externalized in 2026.6.1 — routes requests through the Copilot API. Under the new billing model, those requests will consume AI Credits rather than being covered by a flat Copilot subscription. If you're using the Copilot plugin heavily, check your credit usage in the GitHub billing dashboard.

DataCamp Publishes OpenClaw Guide for Newcomers

DataCamp published a comprehensive guide, "What Is OpenClaw? A Guide to the Open-Source AI Assistant," covering how the agent runtime works, what ClawHub skills add, the real security risks to know, and who it actually fits in 2026. It is the most thorough mainstream explainer we have seen and will drive another wave of new users. If you have colleagues who keep asking you about OpenClaw, this is the link to send them — it's accurate on the security risks and does not oversell the setup simplicity.

SEN-X Take

The ecosystem signals this week all point in the same direction: OpenClaw is graduating from "interesting developer project" to "real infrastructure." Microsoft Build validates local agent platforms. Orca shows enterprise-grade autonomous deployment. DataCamp brings in mainstream users. And OpenClaw's own 2026.6.1 release — with governed skill proposals, Workboard orchestration, and NVIDIA-backed skill security — shows the project is actively building toward what infrastructure-grade deployment requires. The security reckoning is not going away, but for the first time it looks like OpenClaw's institutional response is catching up to the scale of the problem.

Need help with OpenClaw deployment?

SEN-X provides enterprise OpenClaw consulting — architecture, security hardening, custom skill development, and ongoing support.

Contact SEN-X →