Install
$ agentstack add skill-rylaispirit-rylai-codex-hermes-skills-pdf ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Rylai PDF
Original Codex-Hermes skill by Rylai.
Use local files and deterministic tools. Preserve the source document unless the user explicitly requests an in-place replacement. Never invent passwords, embed credentials, or upload documents to an external service without direct approval.
Runtime
Use Python 3 with:
pypdffor page-level inspection and editing.pdfplumberwhen higher-quality text extraction is useful.pypdfium2or Popplerpdftoppmfor optional page rendering.- LibreOffice only when converting an Office source into PDF.
Probe before installing:
python -c "import pypdf; print(pypdf.__version__)"
python -c "import pdfplumber; print(pdfplumber.__version__)"
Install only missing Python packages:
```bash
python -m pip install pypdf pdfplumber pypdfium2
Resolve `scripts/rylai_pdf.py` relative to this skill directory.
## Workflow
1. Confirm the input path, requested operation, output path, and page range.
2. Run `info` before editing an unfamiliar or encrypted PDF.
3. Write to a new output path. Use `--force` only when replacement is intended.
4. Re-open the result and check page count, metadata, and extracted text where applicable.
5. For layout-sensitive work, render representative pages and inspect the PNG output.
6. Report skipped checks when Poppler, LibreOffice, OCR, or another optional dependency is absent.
For scanned pages with no useful text layer, use an available local OCR engine. Keep the original
PDF and state which OCR tool and language model were used.
## Bundled CLI
Inspect:
```bash
python scripts/rylai_pdf.py info input.pdf
Extract selected pages:
```bash
python scripts/rylai_pdf.py extract input.pdf output.txt --pages 1-3,7
Merge:
```bash
python scripts/rylai_pdf.py merge output.pdf first.pdf second.pdf
Split selected pages into individual files:
```bash
python scripts/rylai_pdf.py split input.pdf output-pages --pages 2-5
Rotate selected pages clockwise:
```bash
python scripts/rylai_pdf.py rotate input.pdf rotated.pdf 90 --pages 1,3
Render with local PDFium or Poppler:
```bash
python scripts/rylai_pdf.py render input.pdf rendered-pages --dpi 144
Add `--password` only when the user supplied the password for that document.
## Quality Bar
- The output opens without repair warnings.
- Page order, count, rotation, and selected ranges match the request.
- Extracted text is not silently empty; scanned pages are identified.
- Rendered pages have no unexpected clipping or blank output.
- No source file, temporary file, password, or user path is bundled with the skill.
## Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- **Author:** [Rylaispirit](https://github.com/Rylaispirit)
- **Source:** [Rylaispirit/rylai-codex-hermes-skills](https://github.com/Rylaispirit/rylai-codex-hermes-skills)
- **License:** MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.