Zouroboros Swarm Gate

v1.0.0

Zero-cost task classifier (~2ms) that decides if a task needs multi-agent orchestration. 7 weighted signals, no API calls. Part of the Zouroboros ecosystem.

0· 112·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for marlandoj/zouroboros-swarm-gate.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Zouroboros Swarm Gate" (marlandoj/zouroboros-swarm-gate) from ClawHub.
Skill page: https://clawhub.ai/marlandoj/zouroboros-swarm-gate
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: node
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install zouroboros-swarm-gate

ClawHub CLI

Package manager switcher

npx clawhub@latest install zouroboros-swarm-gate
Security Scan
Capability signals
Crypto
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (task-complexity classifier) align with the shipped code: evaluate() and a CLI that runs local regex/heuristics. Minor inconsistency: SKILL.md and README reference the package name 'zouroboros-swarm-gate' / import name 'zouroboros-swarm-gate', while package-lock.json shows '@zouroboros/swarm-gate' (namespaced). This is likely a packaging/naming mismatch but not indicative of malicious behavior.
Instruction Scope
SKILL.md only documents local CLI and programmatic use, thresholds, and signals. The runtime instructions do not ask the agent to read unrelated files, environment variables, or call external endpoints.
Install Mechanism
Install spec uses npm (node package) and provides a binary 'swarm-gate' — expected for a Node CLI. No external arbitrary URL downloads or extract steps. Note: package-lock references many esbuild/platform dev artifacts (normal for JS packages) and there is the package-name discrepancy noted above; you should confirm the exact npm package name/publisher before install.
Credentials
The skill declares no required environment variables, no credentials, and no config paths. The code excerpts show only local text analysis (regex/heuristics), so no secrets are requested or needed.
Persistence & Privilege
Skill does not request always:true and uses normal user-invocable/autonomous defaults. Install produces its own binary and package files only; it does not modify other skills or system-wide agent settings in the provided artifacts.
Assessment
This package appears to be what it says: a small, local regex-based task classifier. Before installing: verify the exact npm package name and publisher on npmjs.com (SKILL.md/README package name differs from package-lock), inspect package.json on the published package to confirm the 'bin' entry points, and review the published package contents for unexpected network calls or postinstall scripts. As with any global Node package, consider installing in a sandbox or limited environment first and avoid granting extra credentials or system permissions unless you review and trust the maintainer. If you need higher assurance, confirm the GitHub repository and npm publisher identity (signatures, stars, recent activity).

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Clawdis
Binsnode

Install

Install Zouroboros Swarm Gate (npm)
Bins: swarm-gate
npm i -g zouroboros-swarm-gate
latestvk97cjt58eweyce9m7zesq7nw3s84rws2
112downloads
0stars
1versions
Updated 2w ago
v1.0.0
MIT-0

Zouroboros Swarm Gate

Mechanical task complexity classifier that determines whether a task warrants multi-agent swarm orchestration. Runs in ~2ms with zero API cost — pure regex + heuristic scoring.

Usage

CLI

npx zouroboros-swarm-gate "build a REST API with auth, tests, and deploy to production"
# → [Swarm Decision Gate: SWARM — score 0.68]

npx zouroboros-swarm-gate --json "fix the typo on line 42"
# → { "decision": "DIRECT", "score": 0.05, ... }

Programmatic

import { evaluate } from "zouroboros-swarm-gate";

const result = evaluate("implement dashboard with 9 components, API routes, and deploy");
console.log(result.decision); // "SWARM"
console.log(result.score);    // 0.72
console.log(result.signals);  // { parallelism: 0.8, scopeBreadth: 0.6, ... }

Exit Codes

CodeDecisionMeaning
0SWARM / FORCE_SWARMTask warrants multi-agent orchestration
2DIRECTExecute directly, no orchestration needed
3SUGGESTOrchestration recommended but not required
1ErrorSomething went wrong

7 Signals

SignalWeightWhat It Detects
parallelism20%Multiple independent workstreams, action verbs, lists
scopeBreadth15%Files, systems, and domains referenced
qualityGates15%Test/validation/review requirements
crossDomain15%Multiple executor types (code, design, ops, etc.)
deliverableComplexity15%Multiple output artifacts
mutationRisk10%Production/shared state changes
durationSignal10%Estimated effort and complexity

Part of the Zouroboros Ecosystem

Zouroboros is a self-improving AI orchestration framework. These standalone packages give you a taste of what's possible. For the full experience — persistent memory, swarm orchestration, scheduled agents, persona routing, and self-healing infrastructure — get a Zo Computer.

Built by @Xmarlandoj

Comments

Loading comments...