A complete pipeline to discover, evaluate, and automatically convert OpenClaw skills from the ClawHub registry into native Manus skills.
Created by SimplioLabs — Nir Appelton
This repository contains a native Manus skill that acts as an automated pipeline for the OpenClaw ecosystem. The ClawHub registry contains over 52,700 skills built for Claude. While they share the same SKILL.md foundation as Manus, they often contain platform-specific instructions (like ~/.claude/ paths or macOS commands).
This skill teaches Manus how to hunt for these skills and develop them into fully compatible, installable Manus skill batches.
OpenClaw skills are the raw material. This skill is the forge that shapes them for Manus.
When this skill is activated, Manus automatically:
- Hunts — Uses vector search against the ClawHub API to find skills matching your intent (not just keyword matching — semantic search powered by OpenAI embeddings).
- Analyzes — Parses the
SKILL.mdagainst a compatibility matrix to detect macOS-only commands, Claude-specific references, or missing dependencies. Produces a score (0-100) and readiness level. - Transforms — Automatically rewrites paths, replaces package managers (e.g.,
brewtoapt), removes platform-specific commands, and normalizes YAML frontmatter. - Bundles — Creates thematic skill batches (e.g., "Web Scraping Pack") with an automated install script, provenance tracking, and a summary README.
The skill provides four Python scripts in the scripts/ directory:
| Script | Role | What It Does |
|---|---|---|
fetch_claw_skills.py |
Hunter | Vector search, deep dives, detailed stats, offline cache browsing |
analyze_skill.py |
Analyzer | Compatibility scoring (0-100), readiness levels (READY/ADAPTABLE/PARTIAL/INCOMPATIBLE) |
transform_skill.py |
Developer | Path rewrites, brew-to-apt conversion, frontmatter normalization, provenance tracking |
batch_builder.py |
Orchestrator | Runs the full hunt-analyze-transform pipeline across multiple skills at once |
The skill activates automatically when you mention "claw skill", "openclaw", "clawhub", or ask Manus to "find", "convert", "develop", or "batch" skills for a specific workflow.
The repository is structured as a ready-to-import Manus skill:
├── SKILL.md # Core agent instructions (87 lines)
├── scripts/
│ ├── fetch_claw_skills.py # API integration & search
│ ├── analyze_skill.py # Compatibility matrix engine
│ ├── transform_skill.py # Code rewriting & normalization
│ └── batch_builder.py # Batch orchestration
├── references/
│ ├── popular_skills_cache.json # Offline fallback cache (80+ skills)
│ ├── clawhub_api_reference.md # API documentation
│ ├── compatibility_matrix.md # Conversion rules & scoring rubric
│ └── category_map.json # 20 categories with search queries
├── templates/
│ ├── batch_manifest.json # Template for batch outputs
│ └── converted_skill_template/ # Skeleton for new skills
├── README.md
├── LICENSE
└── CONTRIBUTING.md
- Open Manus and go to Settings
- Click Skills → + Add → Import from GitHub
- Paste this repository link:
https://github.com/simpliolabs/manus-open-claw-skill-hunter-and-developer
- Done — the skill is now active and will trigger automatically when you mention "claw skill", "openclaw", or ask Manus to find/convert skills
- Download this repository as a
.zipfile (Code → Download ZIP) - In Manus, go to Skills → + Add → Upload a skill
- Upload the
.zipfile
Zero setup required. Manus comes with Python pre-configured. The skill uses only standard libraries and the ClawHub public API — no API keys, no dependencies, no configuration. Just import and go.
| Priority | Source | Method | Notes |
|---|---|---|---|
| 1 | ClawHub API | Vector search (real-time) | 52,700+ skills, 180 req/min anonymous |
| 2 | Local cache | Keyword match (offline) | Auto-fallback, 80+ popular skills |
| 3 | VoltAgent/awesome-openclaw-skills | GitHub README parse | Curated 5,400+ skills |
See CONTRIBUTING.md for guidelines on adding new transformation rules or improving the compatibility matrix.
| Component | Author |
|---|---|
| Open Claw Skill Hunter and Developer | SimplioLabs — Nir Appelton |
| ClawHub API | OpenClaw |
| Built with | Manus Skill Creator workflow |
This project is licensed under the MIT License + Commons Clause v1.0. You are free to use, modify, and redistribute this software, but you may not sell it. See the LICENSE file for full details.