← Back to Skills Marketplace
kikikari

Cluster Gateway

by KikiKari · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
61
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install cluster-gateway
Description
Verwaltet das OpenClaw Cluster Gateway als zentralen Hub zur Koordination, Task-Verteilung und Kommunikation zwischen Sub-Agenten im Cluster.
README (SKILL.md)

Cluster Gateway Node Skill

Status: 🚧 Vorbereitend - Wartet auf Messaging-Schnittstelle

Zweck

Verwaltet das OpenClaw Gateway als zentraler Hub für Sub-Agent-Kommunikation, Task-Verteilung und Cluster-Koordination.

Verwendung

# Gateway-Status prüfen
openclaw cluster gateway status

# Sub-Agent auf Node deployen
openclaw cluster gateway deploy --node \x3Cnode-id> --agent \x3Cagent-type>

# Task an Worker Node senden
openclaw cluster gateway task --target \x3Cnode-id> --command "\x3Ctask>"

# Relay Node konfigurieren
openclaw cluster gateway relay --enable --node \x3Cnode-id>

Architektur

┌─────────────────────────────────────┐
│         CLUSTER GATEWAY              │
│        (Node 1 - Haupt-Hub)          │
├─────────────────────────────────────┤
│  • Task Queue                         │
│  • Node Registry                      │
│  • Sub-Agent Orchestration            │
│  • Resource Scheduler                 │
│  • Messaging Router (zukünftig)       │
└──────────────┬──────────────────────┘
               │
    ┌──────────┼──────────┐
    │          │          │
┌───▼───┐  ┌──▼───┐  ┌───▼──┐
│ Node 2│  │Node 3│  │Node 4│
│Worker │  │Relay │  │Worker│
└───────┘  └──────┘  └──────┘

Node-Typen

Typ Funktion Beispiel
gateway Zentraler Hub Node 1
worker Task-Ausführung Node 2, Node 4
relay Weiterleitung/Proxy Node 3
storage Datenspeicherung Node 5

Konfiguration

// cluster-gateway.config.json
{
  "gateway": {
    "id": "node-1",
    "role": "hub",
    "bind": "0.0.0.0",
    "port": 18789
  },
  "nodes": [
    {"id": "node-2", "role": "worker", "host": "10.10.0.2"},
    {"id": "node-3", "role": "relay", "host": "10.10.0.3"},
    {"id": "node-4", "role": "worker", "host": "10.10.0.4"}
  ],
  "messaging": {
    "enabled": false,
    "provider": "pending"
  }
}

Offene Punkte (Blocker)

  • Messaging-Schnittstelle wählen (Slack/WebChat/GMX/SMTP/anderes)
  • Node 4 (Redmi) Anbindung abschließen
  • SMTP-Tests durchführen
  • Alerting-System implementieren

Siehe auch

Usage Guidance
Before installing, verify the following: (1) confirm whether the 'openclaw' CLI is available on the agent host — the skill's commands depend on it but it is not declared as a required binary; (2) ask the author/source for a homepage or repo to review full behavior and for clarity about required credentials; (3) if you plan to enable messaging (Slack/SMTP/etc.), expect the skill to need tokens/credentials — only provide scoped, least-privilege credentials and preferably test in an isolated environment; (4) check that the node host addresses and ports in the config will only target internal, trusted network endpoints (avoid exposing private credentials to unknown hosts); (5) be cautious granting this skill network access or secrets until the dependency/credential gaps are resolved.
Capability Analysis
Type: OpenClaw Skill Name: cluster-gateway Version: 1.0.0 The skill bundle contains only architectural documentation (SKILL.md) and metadata (_meta.json) for a cluster gateway system. It describes a framework for managing sub-agents and task distribution but lacks any executable code, scripts, or instructions that could be used for malicious purposes or prompt injection.
Capability Assessment
Purpose & Capability
The SKILL.md clearly expects use of an 'openclaw' CLI (commands like `openclaw cluster gateway ...`) and refers to cluster configuration files and other node skills. However, the registry metadata lists no required binaries or primary credential. The omission of the required CLI and any network/credentials declarations is inconsistent with the stated purpose.
Instruction Scope
Runtime instructions are narrowly scoped to CLI operations and a local JSON config example; they do not explicitly instruct reading unrelated system files or exfiltrating data. However, the document lists messaging providers (Slack/SMTP/etc.) as open blockers — integrating those would normally require credentials and endpoints, which are not specified here.
Install Mechanism
No install spec and no code files are present, so nothing will be written to disk by the skill itself. This is the lowest-risk install pattern for an instruction-only skill.
Credentials
The skill requests no environment variables or credentials, yet it references external messaging providers (Slack/SMTP/GMX/others) that normally require tokens/credentials. That mismatch is disproportionate: either the skill is incomplete, or it will expect secrets at runtime but doesn't declare them.
Persistence & Privilege
always is false and model invocation is allowed (platform default). The skill does not request elevated persistence or modifications to other skills' configs.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install cluster-gateway
  3. After installation, invoke the skill by name or use /cluster-gateway
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of the Cluster Gateway Node Skill. - Manages the OpenClaw Gateway as the central hub for sub-agent communication, task distribution, and cluster coordination - Provides CLI commands for status checks, sub-agent deployment, task dispatching, and relay node configuration - Includes cluster architecture diagram and node role definitions (gateway, worker, relay, storage) - Offers a sample configuration file and outlines current blockers (e.g., pending messaging interface)
Metadata
Slug cluster-gateway
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Cluster Gateway?

Verwaltet das OpenClaw Cluster Gateway als zentralen Hub zur Koordination, Task-Verteilung und Kommunikation zwischen Sub-Agenten im Cluster. It is an AI Agent Skill for Claude Code / OpenClaw, with 61 downloads so far.

How do I install Cluster Gateway?

Run "/install cluster-gateway" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Cluster Gateway free?

Yes, Cluster Gateway is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Cluster Gateway support?

Cluster Gateway is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Cluster Gateway?

It is built and maintained by KikiKari (@kikikari); the current version is v1.0.0.

💬 Comments