🧪 Skills
Wip Universal Installer
Reference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all.
v1.9.12
Description
name: wip-universal-installer description: Reference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all. license: MIT interface: [cli, module, skill] metadata: display-name: "Universal Installer" version: "2.1.5" homepage: "https://github.com/wipcomputer/wip-universal-installer" author: "Parker Todd Brooks" category: dev-tools capabilities: - detect-interfaces - install-cli - install-mcp - install-openclaw-plugin - install-claude-code-hook requires: bins: [node, npm, git] openclaw: requires: bins: [node, npm, git] install: - id: node kind: node package: "@wipcomputer/universal-installer" bins: [wip-install] label: "Install via npm" emoji: "🔌" compatibility: Requires git, npm, node. Node.js 18+.
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.
- CLI ...
package.jsonbin field - Module ...
package.jsonmain/exports - MCP Server ...
mcp-server.mjs - OpenClaw Plugin ...
openclaw.plugin.json - Skill ...
SKILL.md - Claude Code Hook ...
guard.mjsorclaudeCode.hook
Reviews (0)
Sign in to write a review.
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!