Jump to related tools in the same category or review the original source on GitHub.

Coding Agents & IDEs @parkertoddbrooks Updated 6/28/2026 1,439 downloads 0 stars Security: Pass

🔌 Wip Universal Installer OpenClaw Plugin & Skill | ClawHub

Looking to integrate Wip Universal Installer into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate coding agents & ides tasks instantly, without having to write custom tools from scratch.

What this skill does

Reference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all.

Install

ClawHub CLI
openclaw skills install @parkertoddbrooks/wip-universal-installer
Node.js (npx)
npx clawhub@latest install wip-universal-installer

Full SKILL.md

Open original
Metadata table.
namedescriptionlicense
wip-universal-installerReference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all.MIT

SKILL.md content below is scrollable.

wip-universal-installer

Reference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all.

When to Use This Skill

Use wip-install for:

  • Installing any repo that follows the Universal Interface pattern
  • Detecting what interfaces a repo provides
  • Setting up CLI tools, MCP servers, OpenClaw plugins, and Claude Code hooks in one command

Use detect.mjs for:

  • Programmatically detecting interfaces in a repo
  • Building custom installers or CI pipelines
  • Validating that a repo follows the spec

Do NOT Use For

  • Installing standard npm packages (use npm directly)
  • Repos that don't follow the Universal Interface conventions
  • Building or compiling code (this only installs)

API Reference

CLI

wip-install /path/to/repo           # install all interfaces
wip-install org/repo                 # clone from GitHub + install
wip-install --dry-run /path/to/repo  # detect only, no changes
wip-install --json /path/to/repo     # JSON output

Module (detect.mjs)

import { detectInterfaces, describeInterfaces, detectInterfacesJSON } from './detect.mjs';

const { interfaces, pkg } = detectInterfaces('/path/to/repo');
console.log(describeInterfaces(interfaces));

const json = detectInterfacesJSON('/path/to/repo');
console.log(JSON.stringify(json, null, 2));

Universal Interface

See SPEC.md for the full specification.

  1. CLI ... package.json bin field
  2. Module ... package.json main/exports
  3. MCP Server ... mcp-server.mjs
  4. OpenClaw Plugin ... openclaw.plugin.json
  5. Skill ... SKILL.md
  6. Claude Code Hook ... guard.mjs or claudeCode.hook
ClawHub Registry URL: https://clawhub.ai/parkertoddbrooks/skills/wip-universal-installer

Related skills

If this matches your use case, these are close alternatives in the same category.