← 返回
AI智能 中文

Wip Universal Installer

Reference installer for agent-native software. Scans a repo, detects which interfaces it exposes, and installs them all.
代理原生软件的参考安装器,扫描仓库,检测并安装所有暴露的接口。
parkertoddbrooks
AI智能 clawhub v1.9.72 3 版本 99924.5 Key: 无需
★ 0
Stars
📥 1,324
下载
💾 12
安装
3
版本
#latest

概述

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

版本历史

共 3 个版本

  • v1.9.72 当前
    2026-05-03 03:03 安全 安全
  • v1.9.33
    2026-03-27 21:32
  • v1.9.8
    2026-03-14 01:59

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,362 📥 318,921
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 714 📥 244,075
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,061 📥 799,140