aio-epub-setup

aio-epub-setup is a skill for Claude Code, Codex from aiocean/claude-plugins. It costs 25 tokens per session (1,457 once invoked), scanned A, original, MIT.

A setup guide for an EPUB translation service. EPUB is a common digital-book file format.

In plain words
What is it for?
Registering for the service, buying its license, and configuring the API key.
Why use it?
It explains the account, license, and API-key steps needed before the translation service can be used.

Skill for Claude CodeCodex

Part of the aio-epub-translate plugin — 9 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/aiocean/claude-plugins/aio-epub-setup
Any agent
npx skills add aiocean/claude-plugins --skill aio-epub-setup
Clone the repo
git clone --depth 1 https://github.com/aiocean/claude-plugins

Made for: Claude Code, Codex.

Or install aio-epub-translate, the plugin that ships this one along with the rest of its 9 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aio-epub-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/aiocean/claude-plugins/aio-epub-setup.svg)](https://agentmods.dev/skills/aiocean/claude-plugins/aio-epub-setup)
Your own site
<a href="https://agentmods.dev/skills/aiocean/claude-plugins/aio-epub-setup"><img src="https://agentmods.dev/badge/skills/aiocean/claude-plugins/aio-epub-setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,457 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00025 $0.01457
Opus 5 $0.00013 $0.00728
Sonnet 5 $0.00005 $0.00291
Haiku 4.5 $0.00003 $0.00146

Measured 4d ago against content hash 506a2cb97134, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

aio-epub-setup scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

import json, urllib.request, os
plugins/aio-epub-translate/skills/aio-epub-setup/SKILL.md · 169 lines

How it starts

The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.

EPUB Setup — Account & License Configuration

Hướng dẫn đăng ký tài khoản, mua license, và cấu hình API key để sử dụng dịch vụ dịch EPUB.

Tổng quan

Dịch vụ EPUB Translation gồm 2 phần:

Prerequisite: Đây là skill đầu tiên trong workflow. Sau khi setup xong, dùng aio-epub-upload để tải sách lên.

Bước 1: Đăng ký tài khoản

  1. Truy cập https://read.aiocean.io
  2. Click Sign In ở góc trên phải
  3. Đăng nhập bằng tài khoản Google hoặc email
  4. Sau khi đăng nhập, bạn có thể duyệt sách cộng đồng và khám phá giao diện

Guest mode: Bạn có thể khám phá toàn bộ tính năng mà chưa cần đăng nhập. Chỉ khi thực hiện hành động (dịch, upload, lưu) mới cần xác thực.

Bước 2: Mua License

License cho phép bạn:

  • Upload sách EPUB lên server
  • Dịch sách bằng AI (sử dụng models trên server)
  • Xuất sách đã dịch (bilingual hoặc translation-only)
  • Sử dụng API cho AI agents

Cách mua

  1. Đăng nhập tại https://read.aiocean.io
  2. Vào SettingsLicense
  3. Chọn gói phù hợp và thanh toán
  4. License key sẽ hiển thị trong Settings sau khi thanh toán

Gói license

Gói Mô tả
Free Đọc sách cộng đồng, xem demo
Personal Upload sách, dịch bằng AI, xuất EPUB
Pro Tất cả tính năng + API access cho agents

Bước 3: Cấu hình API Key

Cho AI Agent (Claude Code)

Thêm API key vào environment variable hoặc trực tiếp trong code:

# Option 1: Environment variable (khuyến nghị)
export AIO_EPUB_API_KEY="your-license-key-here"

# Option 2: Thêm vào .env file của project
echo 'AIO_EPUB_API_KEY=your-license-key-here' >> .env

Verify kết nối

import json, urllib.request, os

BASE = "https://read-api.aiocean.dev/ListBooks.v1.BookService"
KEY = os.environ.get("AIO_EPUB_API_KEY", "")

if not KEY:
    print("ERROR: AIO_EPUB_API_KEY not set")
    print("Run: export AIO_EPUB_API_KEY='your-license-key'")
    exit(1)

def api(method, body):
    data = json.dumps(body).encode('utf-8')
    req = urllib.request.Request(f"{BASE}/{method}", data=data, headers={
        "Content-Type": "application/json",
        "X-License-Key": KEY
    })
    with urllib.request.urlopen(req) as resp:
        return json.loads(resp.read())

# Test: validate license
try:
    result = api("ValidateLicense", {"licenseKey": KEY})
    if result.get("valid"):
        print("License is valid!")
        print(f"Message: {result.get('message', '')}")
    else:
        print(f"License invalid: {result.get('message', 'Unknown error')}")
except Exception as e:
    print(f"Connection failed: {e}")
    print("Check your network and API key")

Read the full file on GitHub · 169 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 169 lines · 25 tokens per session scan A 506a2cb97134

Subscribe to this mod's changes

aio-epub-setup is a skill published in the GitHub repository aiocean/claude-plugins (4 stars, last pushed 2d ago), licensed MIT. It adds 25 tokens to every session and 1,457 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

guide-recap

Transform CHANGELOG entries into social content (LinkedIn, Twitter/X, Newsletter, Slack) in FR + EN. Use after releases or weekly to generate ready-to-post content from guide updates.

FlorianBruniaux/claude-code-ultimate-guide · 42 tokens

om-integration-builder

Build integration provider packages for the Open Mercato Integration Marketplace (payment, shipping, data-sync, webhook). Scaffolds the npm package, adapter, credentials, widget injection, webhook processing, health checks, i18n, tests. Triggers on "build integration", "add provider", "integrate with…

open-mercato/open-mercato · 73 tokens

hns-oss-docs-readme-sync

README 4-file synchronization procedure for the oss-docs harness: Korean README.ko.md as primary source, en/ja/zh derivation, the shared language-switcher header contract, section-order parity checklist, and the manual verification recipe (no linter exists for READMEs). Loaded by the content-author and…

modu-ai/moai-adk · 83 tokens

moai-domain-humanize

AI text humanization and 윤문 (post-editing) specialist that detects and removes AI tells while preserving meaning, facts, and figures. Covers Korean, English, Japanese, and Chinese with a shared severity model (S1/S2/S3), quality grades (A/B/C/D), and 30%/50% over-editing guardrails. Use to make AI-generated text read…

modu-ai/moai-adk · 101 tokens

source-command-methodology-advisor

Analyzes your codebase and asks 3 targeted questions to recommend the right AI-assisted development methodology stack.

FlorianBruniaux/claude-code-ultimate-guide · 27 tokens

source-command-ccguide-daily

Daily update check — official Anthropic docs diff + guide/CC releases digest.

FlorianBruniaux/claude-code-ultimate-guide · 23 tokens