# Send Kmoe Manga Download to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "kmoe-manga-download",
    "name": "Kmoe Manga Download",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/InphinitiZ/kmoe-manga-download",
    "canonicalUrl": "https://clawhub.ai/InphinitiZ/kmoe-manga-download",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/kmoe-manga-download",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kmoe-manga-download",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/kmoe-manga-download"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/kmoe-manga-download",
    "downloadUrl": "https://openagent3.xyz/downloads/kmoe-manga-download",
    "agentUrl": "https://openagent3.xyz/skills/kmoe-manga-download/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kmoe-manga-download/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kmoe-manga-download/agent.md"
  }
}
```
## Documentation

### 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

### 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>

### 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

kmdr download -l https://kxx.moe/c/50076.htm -v 1-3 \\
  --callback "echo '{b.name} - {v.name} done!' >> ~/kmdr.log"

### Use credential pool for large batch

kmdr pool add -u user1 -o 1 -n "main account"
kmdr pool add -u user2 -o 2 -n "backup"
kmdr download -l https://kxx.moe/c/50076.htm -v all --use-pool

### Download via proxy

kmdr download -l https://kxx.moe/c/50076.htm -v 1-10 -p http://localhost:7890

### Error Handling

ProblemSolutionNot logged inRun kmdr login -u <username> firstDownload quota exhaustedUse --use-pool with multiple accounts, or wait for quota resetNetwork timeoutIncrease --retry count, or set a proxy with -pVolumes not foundCheck -t flag — the volume may be under extra or seri typeMirror unavailableSwitch mirror with kmdr config -b https://mox.moe

### Tips

Set defaults once: Use kmdr config --set dest=~/manga proxy=http://localhost:7890 to avoid repeating flags
Credential pool: For large downloads, set up multiple accounts with kmdr pool add to avoid hitting quota limits
Volume types: Manga on Kmoe may have vol (main volumes), extra (bonus chapters), and seri (serialized chapters) — use -t all to get everything
Callback automation: Use callbacks to trigger file organization, notifications, or syncing after each volume downloads
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: InphinitiZ
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/kmoe-manga-download)
- [Send to Agent page](https://openagent3.xyz/skills/kmoe-manga-download/agent)
- [JSON manifest](https://openagent3.xyz/skills/kmoe-manga-download/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/kmoe-manga-download/agent.md)
- [Download page](https://openagent3.xyz/downloads/kmoe-manga-download)