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-setupnpx skills add aiocean/claude-plugins --skill aio-epub-setupgit 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-setup)<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>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.00025 | $0.01457 |
| Opus 5 | $0.00013 | $0.00728 |
| Sonnet 5 | $0.00005 | $0.00291 |
| Haiku 4.5 | $0.00003 | $0.00146 |
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 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:
- Web app: https://read.aiocean.io — giao diện đọc và dịch sách
- API server: https://read-api.aiocean.dev — ConnectRPC API cho AI agents
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
- Truy cập https://read.aiocean.io
- Click Sign In ở góc trên phải
- Đăng nhập bằng tài khoản Google hoặc email
- 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
- Đăng nhập tại https://read.aiocean.io
- Vào Settings → License
- Chọn gói phù hợp và thanh toán
- 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")
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.
- 4d ago First seen · 169 lines · 25 tokens per session scan A 506a2cb97134
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.
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.
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…
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…
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…
source-command-methodology-advisor
Analyzes your codebase and asks 3 targeted questions to recommend the right AI-assisted development methodology stack.
source-command-ccguide-daily
Daily update check — official Anthropic docs diff + guide/CC releases digest.