一键导入
wip-universal-installer
Reference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Reference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Complete DevOps toolkit for AI-assisted software development. Release pipeline, license compliance, copyright enforcement, repo visibility guard, identity file protection, manifest reconciler, and best practices. All core tools are agent-callable via MCP.
Private-to-public repo sync. Copies everything except ai/ to the public mirror. Creates PR, merges, syncs releases.
PreToolUse hook that enforces branch discipline, blocks destructive commands, requires repo onboarding before first write, tracks blocked-file retries, and gates PR creation against external repos. Read when: a tool call was denied by the guard, or you're about to make the first write in a new repo, or an agent is setting up a new Claude Code / OpenClaw install.
Hook that blocks destructive edits to protected identity files. For Claude Code CLI and OpenClaw.
One-command release pipeline. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.
Repo manifest reconciler. Makes repos-manifest.json the single source of truth for repo organization.
| 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+. |
Reference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all.
Use wip-install for:
Use detect.mjs for:
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
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));
See SPEC.md for the full specification.
package.json bin fieldpackage.json main/exportsmcp-server.mjsopenclaw.plugin.jsonSKILL.mdguard.mjs or claudeCode.hook