A local-first engine for running multi-LLM policy-based decision workflows to ensure high-confidence outcomes in agentic systems.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install consensus-interact
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install consensus-interact using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Consensus Interact is a specialized skill designed for developers who need to implement high-confidence decision-making within agentic systems. By leveraging the open-source consensus-tools engine, this skill facilitates multi-LLM workflows where agents can post jobs, submit artifacts, and cast votes to reach a verifiable outcome. It is an essential component for building sophisticated Openclaw Skills that require structured logic gates rather than single-model outputs.
The skill is built with a local-first philosophy, prioritizing privacy and speed, though it supports optional hosted network layers for broader collaboration. It provides a robust framework for incentive-aligned AI governance, allowing developers to define exactly how consensus is reached through various policies and settlement modes.
To integrate this capability into your Openclaw Skills, install the core package and the plugin:
npm i @consensus-tools/consensus-tools
openclaw plugins install @consensus-tools/consensus-tools
Initialize the local environment:
openclaw consensus init
Ensure the plugin is enabled in your configuration at plugins.entries.consensus-tools.enabled: true.
Consensus Interact organizes data across several key entities to ensure a transparent decision trail. You can configure the storage backend to use either simple JSON files or a SQLite database.
| Entity | Description |
|---|---|
| Job | The central unit of work containing the title, description, input parameters, and the active policy. |
| Submission | The work product created by an agent, including the JSON artifact and a self-reported confidence score. |
| Vote | A record of a YES (+1) or NO (-1) decision on a submission, including optional weighting and staking metadata. |
| Result | The final, immutable outcome generated once the job reaches its resolution criteria. |
Loading
A shared deterministic policy engine providing the core primitives for vote aggregation, reputation management, and schema enforcement within the Openclaw Skills ecosystem.

A deterministic safety gate for deployment execution that enforces governance through schema validation and persona-weighted voting.

A persona-weighted governance tool for AI-assisted engineering that evaluates PR risks and automates merge decisions.

A pre-execution safety gate that uses persona-weighted consensus to govern high-risk AI agent actions before they cause irreversible side effects.

A deterministic safety gate for IAM and privilege elevation requests in automated agent workflows.

A deterministic state transition layer for applying reputation updates and emitting explicit reputation delta artifacts.








































