What Is Hermes Agent's New Blank Slate Mode — and Why Does It Matter?
Nous Research has rolled out a significant update to its open-source Hermes Agent, introducing a "Blank Slate" setup mode that fundamentally changes how developers configure and deploy AI agents. Rather than launching with a full battery of enabled capabilities by default, the new mode strips the agent down to its bare essentials: the provider, model, File Operations, and Terminal. Everything else is disabled until the operator explicitly opts in. For developers, IT decision-makers, and privacy professionals working in regulated environments, this shift toward a minimal-by-default architecture is more than a convenience feature — it is a meaningful step toward auditability, least-privilege design, and responsible open source AI agent tooling.
The update introduces two key configuration mechanisms: platform_toolsets.cli and disabled_toolsets. Together, these flags allow teams to pin precisely which toolsets are active in any given deployment, removing ambiguity about what an agent can and cannot do at runtime. In a landscape where AI agent capabilities can expand rapidly and unpredictably, the ability to declare a fixed, minimal surface area is increasingly valued — not just as a developer convenience, but as a compliance and security posture. According to coverage on MarkTechPost, the architecture is designed so that operators must consciously enable additional functionality rather than inheriting it by default.

Understanding Nous Research and the Hermes Agent Ecosystem
Nous Research is a well-regarded player in the open-source large language model (LLM) space, known for fine-tuned models under the Hermes series that have gained traction among developers who want capable, customisable AI outside of closed commercial ecosystems. The Hermes models have been widely referenced in the open-source community for their instruction-following capabilities and reasoning performance, placing them among the more practically useful open-weight models available without a proprietary licence.
The Hermes Agent is the agentic runtime layer built on top of these models — a framework that allows the LLM to take actions in the world, whether that means reading and writing files, executing terminal commands, calling external APIs, or interacting with web services. As documented in the broader AI agent literature, including research published on platforms such as arXiv, agentic frameworks are simultaneously the most powerful and the most dangerous frontier in applied AI. An agent that can browse the web, execute code, and make API calls on behalf of a user is enormously capable — and enormously difficult to audit if its toolset is not clearly defined and constrained.
This is precisely the problem the Blank Slate mode addresses. Where previous agent configurations might have launched with a wide range of tools pre-enabled — convenient for experimentation, but hazardous in production — the new default is deliberately restrictive. Only what is explicitly declared as active will function. This is a principle long advocated in cybersecurity circles: the principle of least privilege, applied now to AI agent architectures.
"The most dangerous AI agent is the one you don't fully understand. Minimal-by-default configurations are not a limitation — they are a feature for anyone operating in a serious production or compliance environment."
— Open-source AI infrastructure perspective, reflecting broad community sentiment on agentic safetyHow the platform_toolsets.cli and disabled_toolsets Flags Work in Practice
The technical implementation centres on two complementary configuration mechanisms that operate at the deployment level. The platform_toolsets.cli parameter allows operators to specify, via command-line interface, exactly which toolsets the agent should have access to when it starts. Think of it as a whitelist: if a toolset is not named here, the agent does not load it. The disabled_toolsets parameter functions as an explicit blacklist layer, allowing teams to name toolsets that should be forcibly excluded even if they would otherwise be available.
Used together, these flags give deployment teams a two-layer control mechanism: a positive declaration of what is allowed, and a negative declaration of what is forbidden. For organisations running multiple Hermes Agent deployments across different contexts — a customer-facing chatbot, an internal data processing agent, a development sandbox — this means each instance can be precisely scoped to its intended purpose without relying on runtime behaviour or undocumented defaults.
| Configuration Parameter | Function | Use Case |
|---|---|---|
platform_toolsets.cli | Pins active toolsets via CLI at launch | Whitelist specific tools for a production deployment |
disabled_toolsets | Explicitly disables named toolsets regardless of other config | Force-block sensitive capabilities in shared environments |
| Blank Slate Default | Starts with only provider, model, File Ops, and Terminal active | Minimal-footprint baseline for any new deployment |
| Opt-In Toolsets | Additional capabilities added only when explicitly declared | Expanding capability for specific, audited use cases |
For teams working under GDPR, the NIS2 Directive, or internal data governance policies, this kind of granular, documented control is not merely useful — it is potentially a compliance requirement. An AI agent that can demonstrably only access the tools it has been explicitly authorised to use is far easier to document in a data protection impact assessment (DPIA) or a technical audit than one whose capabilities are open-ended by default.
Why Minimal-Footprint AI Agents Are Gaining Ground in Privacy-First and Sovereign Deployments
The timing of this update reflects a broader movement in enterprise and government technology procurement. As the EU AI Act moves through its implementation phases and GDPR enforcement actions increasingly scrutinise automated decision-making systems, organisations across Europe and beyond are under mounting pressure to demonstrate that their AI tools operate within clearly defined, auditable boundaries. According to analysis from the European Union Agency for Cybersecurity (ENISA), AI systems that operate with excessive permissions or undocumented capabilities represent a significant emerging risk category.
Open-source frameworks like Hermes Agent occupy a strategically important position in this landscape. Unlike proprietary AI agent platforms — where the toolset is often determined by the vendor and difficult to audit independently — open-source agents can be inspected, forked, and configured down to the component level. The addition of Blank Slate mode and explicit toolset pinning makes Hermes Agent more deployable in contexts where a third-party audit or regulatory review might ask: "What can this agent actually do, and how do you know?"

This is also directly relevant to the concept of digital sovereignty — the ability of organisations, and by extension nations, to control the technology that processes their data. European technology policy, as reflected in initiatives like Gaia-X and the European Open Source Policy Summit discussions, has consistently emphasised that controllability and transparency are prerequisites for trustworthy digital infrastructure. An AI agent framework that defaults to minimal permissions and requires explicit opt-in for additional capabilities maps well onto these policy requirements.
How Hermes Agent's Approach Compares to Proprietary AI Agent Frameworks
The contrast with proprietary AI agent frameworks is instructive. Platforms like OpenAI's Assistants API, Microsoft Copilot Studio, or Anthropic's Claude tool-use implementation offer powerful agentic capabilities, but the toolset boundaries are determined largely by the platform vendor. Developers work within a defined sandbox, and while that sandbox may be well-documented, it is not independently auditable in the way that an open-source framework is. For many enterprise use cases, particularly in regulated sectors like finance, healthcare, and public administration, this lack of independent auditability is a meaningful risk factor.
Research from institutions such as the AI Now Institute and organisations tracking AI governance, including analyses available via the Stanford HAI policy portal, has consistently highlighted that the opacity of commercial AI systems is one of the primary barriers to responsible enterprise deployment. The Hermes Agent update represents a concrete, practical response to this concern at the infrastructure level rather than the policy level.