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.
npx agentmods add skills/aiocean/claude-plugins/aio-epub-exportnpx skills add aiocean/claude-plugins --skill aio-epub-exportgit clone --depth 1 https://github.com/aiocean/claude-pluginsWrote 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.
[](https://agentmods.dev/skills/aiocean/claude-plugins/aio-epub-export)<a href="https://agentmods.dev/skills/aiocean/claude-plugins/aio-epub-export"><img src="https://agentmods.dev/badge/skills/aiocean/claude-plugins/aio-epub-export.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00063 | $0.00881 |
| Opus 5 | $0.00032 | $0.00441 |
| Sonnet 5 | $0.00013 | $0.00176 |
| Haiku 4.5 | $0.00006 | $0.00088 |
Grade A, and why
aio-epub-export 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 5d 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 How it starts
The opening of the file, as written. The whole thing — 107 lines — stays where its author put it; the contents beside it link to each section on GitHub.
EPUB Export — Pack & Download
Pack translated books back into EPUB format for reading or distribution.
Trước khi xuất: Chạy
aio-epub-qualityđể kiểm tra chất lượng. Chapters chưa dịch xong? Dùngaio-epub-translate.
API Setup
import json, urllib.request, os
BASE = "https://read-api.aiocean.dev/ListBooks.v1.BookService"
KEY = os.environ.get("AIO_EPUB_API_KEY", "")
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())
Workflow
1. Check Translation Status First
progress = api("GetTranslationProgress", {"bookId": BOOK_ID})
pct = progress["progress"]["translationPercentage"]
print(f"Translation progress: {pct:.1f}%")
if pct < 100:
untranslated = []
for fp in progress["progress"].get("fileProgress", []):
if fp["translationPercentage"] < 100:
untranslated.append(f" {fp['filePath']}: {fp['translationPercentage']:.0f}%")
print(f"\nWarning: {len(untranslated)} chapters incomplete:")
print("\n".join(untranslated))
2. Pack EPUB
# Bilingual (original + translation side by side)
result = api("PackEpub", {
"bookId": BOOK_ID,
"packMode": "BILINGUAL"
})
print(f"EPUB URL: {result['epubUrl']}")
print(f"Message: {result['message']}")
# Translation only (remove original text)
result = api("PackEpub", {
"bookId": BOOK_ID,
"packMode": "TRANSLATION_ONLY",
"stripMarkers": True # remove data-* attributes for clean output
})
print(f"EPUB URL: {result['epubUrl']}")
3. Send to Kindle
result = api("SendToKindle", {
"bookId": BOOK_ID,
"name": "My Book",
"email": "[email protected]"
})
print(result["message"])
Pack Modes
| Mode | Description | Use Case |
|---|---|---|
BILINGUAL |
Original + translation paragraphs | Learning, reference |
TRANSLATION_ONLY |
Only translated text | Reading, distribution |
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.
- 5d ago First seen · 107 lines · 63 tokens per session scan A e11babaa4baf
aio-epub-export is a skill published in the GitHub repository aiocean/claude-plugins (4 stars, last pushed 3d ago), licensed MIT. It adds 63 tokens to every session and 881 once invoked, about $0.0003 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.
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.
tech-doc-writer
Write, review, and improve technical documents (技术文档, 设计文档, 操作手册, 故障报告, API文档). Use when users ask to write/draft/review/improve a technical document, create an RFC/ADR, write a runbook or operation guide, produce API docs, or create any structured technical writing deliverable. Audience-aware, evidence-based, with…
local-transcript
Transcribe a specified local video or audio file into cleaned final .txt, .pdf, or .docx transcripts using speech recognition with Apple Silicon GPU acceleration and optional LLM-based proofreading. Use when the user wants text extracted from a local media file path such as .mp4, .mov, .mkv, .webm, .mp3, .m4a, or…
managing-artifacts
Artifact storage paths and project-encoded conventions for generated documents, reports, plans, and audits. Loaded by the core rule module. Triggers: 'where should I put this', 'save report', 'output directory'.
azure-ai-translation-document-py
Client library for Azure AI Translator document translation service for batch document translation with format preservation.
alego-translate-docs
Manually run the extended Alego bilingual-document workflow, including generated briefings, delegated prose translation, whole-document translation, and scoped pairing verification.