ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

kmoe-manga-download

Download manga from Kmoe (kxx.moe / mox.moe) with concurrent downloads, credential management, and automation callbacks.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/inphinitiz/kmoe-manga-download
Or

Kmoe Manga Downloader

Download manga from Kmoe (kxx.moe / mox.moe) as EPUB or MOBI files using the kmdr CLI.

Prerequisite: This skill requires the kmdr command-line tool. Install it with:

pip install kmoe-manga-downloader

Requires Python >= 3.9.

When to Use This Skill

Activate when the user:

  • Wants to download manga from Kmoe / kxx.moe / mox.moe
  • Asks to batch-download manga volumes
  • Needs to manage Kmoe account credentials or credential pools
  • Wants to automate post-download actions (e.g., move files, send notifications)

Quick Start

# 1. Log in to Kmoe
kmdr login -u <username> -p <password>

# 2. Download volumes 1-3 of a manga
kmdr download -l https://kxx.moe/c/50076.htm -v 1-3 -d ~/manga

Commands

Authentication

# Log in (password prompted if omitted)
kmdr login -u <username> [-p <password>]

# Check account status and download quota
kmdr status

Download

kmdr download -l <book-url> -v <volumes> [options]

Required flags:

  • -l, --book-url — Manga homepage URL on Kmoe
  • -v, --volume — Volume selection: 1,2,3 or 1-5,8 or all

Common options:

FlagDescriptionDefault
-d, --destDownload directoryconfig or current dir
-t, --vol-typeVolume type: vol, extra, seri, allvol
-f, --formatOutput format: epub or mobiepub
-r, --retryRetry attempts on failure3
-m, --methodDownload method: 1 or 21
--num-workersConcurrent download workers8
-P, --use-poolUse credential pool with failoveroff
-p, --proxyProxy server addressnone
-c, --callbackPost-download callback scriptnone

Configuration

# Set default options
kmdr config --set proxy=http://localhost:7890 dest=~/manga

# List current config
kmdr config -l

# Clear all config
kmdr config -c all

# Switch mirror source
kmdr config -b https://mox.moe

Credential Pool

Manage multiple accounts for failover when one account's quota is exhausted.

# Add account to pool
kmdr pool add -u <username> [-o <priority>] [-n "note"]

# List pool accounts (with optional quota refresh)
kmdr pool list [-r] [--num-workers 3]

# Switch active account
kmdr pool use <username>

# Update account info
kmdr pool update <username> [-n "note"] [-o <priority>]

# Remove account from pool
kmdr pool remove <username>

Examples

Download specific volumes

kmdr download -d ~/manga -l https://kxx.moe/c/50076.htm -v 1-5

Download all extras as MOBI

kmdr download -l https://kxx.moe/c/50076.htm -t extra -v all -f mobi

Download with callback

Post-download callbacks support template variables:

  • {v.name} — Volume name
  • {v.page} — Page count
  • {v.size} — File size
  • {b.name} — Book/manga name
  • {b.author} — Author name

Metadata

Stars2287
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-inphinitiz-kmoe-manga-download": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.