universal-company-operator-plugin

OpenClaw plugin for Universal Company Operator System — execution commands for /run workflows.

Audits

Pass

Install

openclaw plugins install clawhub:universal-company-operator-plugin

Universal Company Operator System Plugin

Version: 1.0.4
Author: gwapupward-hub
License: MIT
Platform: OpenClaw / ClaWHub


What it does

Execution plugin for routing business requests into structured operator workflows via /run commands. Drop this into any OpenClaw-compatible runtime to get instant company operating-system capabilities.

Commands

CommandDescription
run_company_auditOperator audit with priorities, risks, and department map
route_operator_taskRole inference + step-by-step execution plan
generate_sprint_plan7-day sprint structure with owners and deliverables
build_department_mapDepartment needs ranked by company stage and type

Install

npm install
npm test   # runs --self-test

Usage

import { execute } from "./src/index.js";

const result = execute("route_operator_task", {
  task: "Build a 30-day launch marketing plan",
  priority: "high"
});

console.log(result);

Self-test

node src/index.js --self-test

Version history

VersionChanges
1.0.4Merged schemaVersion + id fields; input validation; expanded role inference (Web3/Solana keywords); improved department priority tiers; full self-test suite
1.0.3Stripped manifest to minimal fields; empty src/index.js
1.0.2Minimal manifest, no commands array
1.0.1Added compat + build fields to package.json
1.0.0Initial release — 4 commands, full src, docs, examples