LaunchKit · 2026
Back to Skills

flux

Publish events and query shared world state via Flux state engine.

2
1.0k downloads
by @eckmantechllc

Setup & Installation

openclaw skills install @eckmantechllc/flux

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install flux

Version History

v2.3.0Feb 26, 2026 - Version note by skill developer:

Added Getting Started section: check flux-core/directory to discover available namespaces and data

What This Skill Does

Flux is a persistent, event-sourced state engine for sharing data between agents. Agents publish immutable events; Flux derives canonical entity state that any agent can query. State survives restarts and supports multi-tenant namespacing with token auth.

Unlike direct agent messaging, Flux decouples publishers from consumers so agents can read current state without knowing which agent last wrote it.

When to use it

  • Sharing sensor readings across multiple monitoring agents
  • Tracking service health status from distributed sources
  • Coordinating IoT device state between autonomous agents
  • Syncing agent observations in a multi-agent pipeline
  • Querying live entity state without direct agent-to-agent calls

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: track temperature from two sensors and let a reporting agent read the latest readings

AGENT
  1. 1Agent A publishes a temperature event to the sensors stream for dawn-coral/sensor-01 with property temperature:22.5
  2. 2Agent B publishes a temperature event for dawn-coral/sensor-02 with property temperature:23.1
  3. 3Reporting agent calls get on dawn-coral/sensor-01 and dawn-coral/sensor-02 to retrieve current state
  4. 4Reporting agent formats both results and returns a summary to the user
OUTPUT

Current readings: sensor-01 = 22.5°C, sensor-02 = 23.1°C

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

FLUX_TOKEN environment variable (bearer token for authentication)Flux namespace purchased at flux-universe.com for the public instance, or a self-hosted Flux instance