starchild-ai-agent/official-skills

office-document

Route editable PDF, DOCX, XLSX, and PPTX creation or modification tasks to the appropriate official Hermes document skill. Use when the user asks to create, edit, format, convert, fill, annotate, review, or otherwise produce an editable office document. Do not activate for simple read-only extraction or summarization. For presentation-only output where the user does not need an editable PowerPoint file, use Starchild's official slide-creator skill.

First seen Aug 25, 2026

Installation

$ npx skills add starchild-ai-agent/official-skills --skill office-document

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from starchild-ai-agent/official-skills · top by installs.

npx skills add starchild-ai-agent/official-skills

Browse all from starchild-ai-agent/official-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 26
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
More metadata
starchild
{"emoji":"📄","skillKey":"office-document"}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,842 B
  • docs SUMMARY.md 475 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 15 installs

SKILL.md

Office document routing

Use this skill as a routing decision, not as a replacement for the document engines. The official Hermes skills are separate skills:

User task Hermes skill
Create, read, edit, template, or review Word .docx docx
Create, read, or edit Excel .xlsx / CSV xlsx
Create, read, or edit editable PowerPoint .pptx powerpoint
Create, read, merge, fill, secure, or otherwise manipulate PDF pdf
Read-only extraction or summarization Do not route here; read the file directly
Visual presentation that does not need an editable .pptx Starchild slide-creator

Decision rules

  1. Determine whether the user needs an editable output or only information.

Read-only is not a document-production task. Do not install or invoke a document skill merely to extract or summarize file contents.

  1. Select exactly one format-specific Hermes skill from the table above.
  2. For a mixed request, route each artifact to its own format-specific skill;

do not use powerpoint for a PDF or docx for a general presentation.

  1. For scanned or image-only PDFs, use Hermes ocr-and-documents before or

instead of pdf; a PDF skill cannot invent a missing text layer.

  1. After any edit or creation, follow the selected skill's verification steps.

Do not claim format fidelity without read-back and, where applicable, render/visual inspection.

Installing the official Hermes skills

These are the official skills from NousResearch/hermes-agent, not similarly named community skills.

Skills CLI installation

Install only the one skill required by the current task. Do not install all format-specific skills in advance.

Use the matching command:

  • DOCX task:npx skills add NousResearch/hermes-agent --skill docx
  • XLSX/CSV task:npx skills add NousResearch/hermes-agent --skill xlsx
  • Editable PPTX task:npx skills add NousResearch/hermes-agent --skill powerpoint
  • PDF task:npx skills add NousResearch/hermes-agent --skill pdf
  • Scanned or image-only PDF:install ocr-and-documents only when OCR is actually needed:

npx skills add NousResearch/hermes-agent --skill ocr-and-documents

Do not substitute a community package with a similar name unless the user explicitly asks for that package. After installation, confirm the selected skill's SKILL.md is present and use its own scripts and verification commands.

Official source mapping

The upstream source paths are:

  • https://github.com/NousResearch/hermes-agent/tree/main/skills/productivity/docx
  • https://github.com/NousResearch/hermes-agent/tree/main/skills/productivity/xlsx
  • https://github.com/NousResearch/hermes-agent/tree/main/skills/productivity/powerpoint
  • https://github.com/NousResearch/hermes-agent/tree/main/skills/productivity/pdf
  • https://github.com/NousResearch/hermes-agent/tree/main/skills/productivity/ocr-and-documents

The Hermes docx skill uses python-docx helpers and package health checks; xlsx uses openpyxl; powerpoint uses python-pptx; and pdf uses pypdf, reportlab, and pdfplumber. These implementation details describe the official skills and should not be replaced with guessed local commands.