Bilingual reader maker
Skill PhilRobinluo/ai-coevolution-skills/skills/bilingual-reader-maker
Use when the user asks to make bilingual reading materials, bilingual PDFs, Chinese-English study editions, mobile-readable HTML/PDF readers, or to turn an English PDF/article into a polished bilingual reader.From its SKILL.md
npx -y skills add PhilRobinluo/ai-coevolution-skills --skill bilingual-reader-makerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 2 commands, including `"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --headless=new --disable-gpu --no-sandbox --print-to-pdf="$PDF" --print-to-pdf-no-header "$HTML_URL"` and 1 more.
SKILL.md
4.2 KB, 916 tokens by cl100k_base, as published. Nobody here has run it
Bilingual Reader Maker
Produce polished bilingual reading materials from English source PDFs or long articles.
Default output:
- Real-text HTML for editing, copying, searching, parsing, and mobile reading.
- PDF exported from that HTML for sharing.
- English source paragraph first, Simplified Chinese translation immediately below.
Workspace
Create one project folder per source:
<workspace>/<semantic-slug>/
├── source/ # source PDF/article/assets, preserve originals
├── intermediate/ # extracted text, translation cache, page samples
├── output/ # final HTML/PDF and copied assets
├── qa/ # screenshots/thumbnails/render checks
└── scripts/ # project-specific generation scripts
If the user already has a project folder, work inside it. Do not create duplicates.
Production Standard
- Preserve the source's visual identity where appropriate: cover, chapter art, color palette, logos, icons, and typographic mood.
- Do not force the original layout if it hurts learning. For phone-friendly reading, prefer normal single-column flow.
- Structure each reading unit as:
- English source paragraph
- Chinese translation
- Light divider
- Use real text HTML, not a screenshot-only artifact.
- Export PDF from the HTML using Chrome headless when available.
- Add attribution only if the user wants it. Keep it subtle and place it in a final colophon, not on the cover.
Suggested colophon pattern:
This bilingual study edition was prepared for learning, reading, and discussion.
Prepared by: <name or organization>
For Chinese-facing editions:
本中英双语学习版基于原英文材料整理制作,仅用于学习、阅读与交流。
整理制作:<name or organization>
Avoid aggressive calls to follow, QR codes, sales language, or cover branding unless explicitly requested.
Workflow
-
Bootstrap:
- Locate source file(s) and project folder.
- Preserve the original source file.
- Check for local project instructions such as
AGENTS.mdorCLAUDE.md.
-
Extract and inspect:
- Extract text with
pypdffirst. - If text extraction is poor, render pages and consider OCR.
- Render representative original pages into
qa/original/to inspect real colors, cover, chapter art, icons, and layout.
- Extract text with
-
Translate:
- Translate by coherent paragraph/segment, not whole-page blobs.
- Preserve the English source text.
- Keep a translation cache in
intermediate/translation_cache.json. - Verify there are no missing translations, empty translations, or placeholder strings.
-
Design HTML:
- Use original visual assets for cover/chapter pages when possible and legally appropriate.
- Use single-column mobile-readable body layout by default.
- Use calm editorial typography: serif for English headings/body when it fits; readable Chinese fonts for translation.
- Keep the HTML source clear enough to modify later.
-
Export and QA:
- Export PDF from HTML.
- Capture screenshots for cover, table of contents, a chapter/section page, a body page, and one narrow mobile viewport.
- Check for horizontal overflow, clipped text, missing assets, old copy, missing translations, and unreadable density.
- Open/reveal final artifacts or provide direct paths/links.
Useful Commands
Chrome PDF export:
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
--headless=new --disable-gpu --no-sandbox \
--print-to-pdf="$PDF" --print-to-pdf-no-header "$HTML_URL"
Phone-width screenshot:
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
--headless=new --disable-gpu --no-sandbox \
--window-size=430,1200 --screenshot="$SHOT" "$HTML_URL"
Naming
Use descriptive output names:
<source>_bilingual-mobile-reader.html<source>_bilingual-mobile-reader.pdf
For Chinese-facing editions:
<source>_中英双语移动阅读版.html<source>_中英双语移动阅读版.pdf
What ships with it: 2 files
3.1 KB alongside SKILL.md
examples/
- example-prompt.md407 B
- README.md2.7 KB