🦞

OpenClaw Skills on Mirdan.ai

Browse, install, and submit OpenClaw skills from the Mirdan registry

Mirdan.ai is a cross-compatible skill registry for the OpenClaw ecosystem. Browse curated skills from ClawHub, the awesome-openclaw-skills collection, and community submissions. All skills are compatible with OpenClaw, Claude Code, and other AI coding agents.

rocket_launchQuick Start: Fetch Skills from Mirdan

Use the free public API to fetch OpenClaw-compatible skills:

bash
# Browse all skills (JSON format)
curl "https://mirdan.ai/api/openclaw/skills"

# Search for Docker skills
curl "https://mirdan.ai/api/openclaw/skills?search=docker"

# Get skills in SKILL.md format
curl "https://mirdan.ai/api/openclaw/skills?format=skillmd"

# Filter by category
curl "https://mirdan.ai/api/openclaw/skills?category=DevOps+%26+Cloud"

# Filter by tag
curl "https://mirdan.ai/api/openclaw/skills?tag=openclaw"

# Sort by downloads, limit to 10
curl "https://mirdan.ai/api/openclaw/skills?sort=downloads&limit=10"

apiAPI Reference

GET/api/openclaw/skills

Fetch skills from the Mirdan registry. Public, CORS-enabled, no authentication required.

Query Parameters

ParameterTypeDefaultDescription
searchstring-Full-text search on name, displayName, description
categorystring-Filter by category (e.g., "DevOps & Cloud")
tagstring-Filter by tag (e.g., "openclaw", "docker")
sortstringstarsSort by: stars, downloads, updatedAt, createdAt
formatstringjsonResponse format: json or skillmd (SKILL.md compatible)
pagenumber1Page number for pagination
limitnumber50Results per page (max: 200)
POST/api/openclaw/skills/submit

Submit a new skill to the Mirdan registry. Requires authentication. Accepts JSON or raw SKILL.md content.

JSON Body

{
  "name": "my-openclaw-skill",
  "displayName": "My OpenClaw Skill",
  "description": "What this skill does in one sentence.",
  "version": "1.0.0",
  "license": "MIT",
  "readme": "# My Skill\n\nFull markdown instructions...",
  "tags": ["openclaw", "automation", "devops"],
  "categories": ["DevOps & Cloud"],
  "source": "openclaw"
}

Or submit raw SKILL.md

curl -X POST https://mirdan.ai/api/openclaw/skills/submit \
  -H "Content-Type: text/markdown" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  --data-binary @SKILL.md

data_objectResponse Format

JSON Response
{
  "registry": "mirdan.ai",
  "api_version": "v1",
  "total": 150,
  "page": 1,
  "limit": 50,
  "totalPages": 3,
  "items": [
    {
      "name": "nextjs-expert",
      "displayName": "Next.js Expert",
      "description": "Expert guidance for Next.js 14/15...",
      "version": "v1.3.0",
      "author": "openclaw",
      "authorVerified": true,
      "license": "MIT",
      "isOfficial": false,
      "isFeatured": true,
      "stars": 2890,
      "downloads": 34000,
      "weeklyDownloads": 1800,
      "tags": ["nextjs", "react", "openclaw"],
      "categories": ["Frameworks & Languages"],
      "readme": "# Next.js Expert\n\n...",
      "mirdan_url": "https://mirdan.ai/resource/nextjs-expert"
    }
  ]
}

categorySkill Categories from OpenClaw

Skills sourced from the OpenClaw ecosystem span 30+ categories. Here are the most popular categories available on Mirdan:

smart_toy
Coding Agents & IDEs55+ skills
web
Web & Frontend46+ skills
merge_type
Git & GitHub34+ skills
cloud
DevOps & Cloud144+ skills
security
Security & Auditing20+ skills
science
Testing & Quality15+ skills
account_tree
Workflow & Process30+ skills
code
Frameworks & Languages40+ skills

syncCross-Platform Compatibility

Skills on Mirdan use the standard SKILL.md format, making them compatible with:

  • check_circleOpenClaw - Full SKILL.md support with YAML frontmatter, requirements, and install specs
  • check_circleClaude Code - Native skill.md support in .claude/skills/ directory
  • check_circleClawHub - Cross-registry publishing - publish once, available everywhere
  • check_circleCodex CLI - Compatible prompt-based skills via AGENTS.md pattern
  • check_circleSkillShare - Sync skills across all AI CLI tools with one command

uploadSubmit Your OpenClaw Skills to Mirdan

1

Via the Web Form

Use the Submit Resource page to upload your SKILL.md content through a guided form. Select "Skill" as the resource type and paste your skill content into the README field.

2

Via the API

Submit programmatically using the submit endpoint. Send your SKILL.md directly:

# Submit a SKILL.md file
curl -X POST https://mirdan.ai/api/openclaw/skills/submit \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: text/markdown" \
  --data-binary @my-skill/SKILL.md

# Or submit as JSON
curl -X POST https://mirdan.ai/api/openclaw/skills/submit \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-skill",
    "displayName": "My Skill",
    "description": "What it does",
    "readme": "# Full skill content...",
    "tags": ["openclaw", "my-category"]
  }'
3

Via SkillShare CLI

Use the SkillShare CLI tool to sync your skills across OpenClaw, Claude Code, Mirdan, and 40+ other AI CLI tools with a single command.

linkOpenClaw Resources

Ready to explore OpenClaw skills?

Browse our curated collection of OpenClaw-compatible skills, or submit your own.