agentsclimarketplace

Documents core

Skill Sheshiyer/skill-clusters/skills/documents-core

Hub-and-spoke agent-skill clusters, one per stack (Astro·GSAP·Remotion, Tauri, …). Installable via skills.sh.

Install
npx -y skills add Sheshiyer/skill-clusters --skill documents-core

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 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.

What its author says it does

Copied from the file, not written here

Shared reference for the documents cluster: the editable-source vs rendered-artifact decision every task turns on, the format→tool matrix (DOCX/PDF/PPTX/XLSX/diagram), the ingest (OCR/NotebookLM) and publish (Mintlify/changelog) paths, and the fidelity/round-trip guardrails. USE WHEN choosing how to create, edit, extract from, or render a document — the conventions every documents spoke shares.

SKILL.md

5.1 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it

Documents Core

Shared model for the documents cluster. Every spoke either keeps a file editable or turns it into a rendered artifact — get that call right first and the tool choice follows. Keep the matrix below consistent so no spoke contradicts another.

1. The defining decision: editable source vs rendered artifact

A document is processed in one of two modes, and the mode is a one-way door:

Editable source  ──(render)──>  Rendered artifact
  (OOXML, openpyxl,                (Playwright PDF, OCR'd text,
   .drawio XML, .md)                flattened PDF, GIF)
  round-trippable, diff-able        pixel/print fidelity, terminal — you can't edit back
  • Editable — work in the native structured format (DOCX OOXML, XLSX cells+formulas, PPTX OOXML, .drawio XML, Markdown). Structure, tracked changes, and formulas survive; the file can be re-opened and re-edited. Default here.
  • Rendered — produce a fixed output for delivery or print (HTML→PDF via Playwright, a flattened/filled PDF, OCR text from a scan, a GIF of a diagram). High fidelity, but the source structure is gone — treat it as terminal.

Rule: stay editable as long as the user might edit again; only render at the last step, and state it when you do. Keep the original; write the render alongside, never over it.

2. Format → tool matrix

Format / taskSpokeEditable pathRendered path
Word (DOCX)documentsdocx/docx-js create · OOXML edit · tracked changesexport/convert to PDF
PDF (office)documentspdf/reportlab create · pypdf merge/split · pdfplumber extract · forms fillflatten / fill-and-flatten
PDF (quick NL edit)nano-pdfnatural-language page ops
PowerPoint (PPTX)documentspptx/html2pptx · OOXML edit · templatesthumbnail grid / images
Excel (XLSX)documentsxlsx/openpyxl + formulas · recalc.py
Consulting reportdocuments (ConsultingReport)structured HTMLPlaywright PDF (A4, TOC, headers)
Scanned PDF → datadeepread-ocrOCR text + structured data with confidence flags
Corpus → notebook/podcastnotebooklmsources/notebookbriefing / audio artifact
Docs sitemintlifyMDX pages + nav configpublished site
Release noteschangelog-generatorMarkdown changelog
draw.io diagramdrawio-diagrams-enhanced.drawio XMLexported image
Mermaid → motionmermaid-to-gif.mmd / fenced blockGIF

3. Ingest path (document → data)

  • OCR first, never blind. Scanned or image-only PDFs go through deepread-ocr, which scores confidence and flags low-quality regions — surface those flags; don't pass OCR text downstream as if it were clean.
  • Synthesize after. Once you have text, notebooklm turns a corpus into a notebook, briefing, or podcast. Typical chain: deepread-ocrnotebooklm.

4. Publish path (docs about the work)

  • mintlify builds and maintains the documentation site (MDX pages, navigation, API refs).
  • changelog-generator turns git history into user-facing release notes. These narrate the project; they don't process arbitrary user files — keep them distinct from the office-format engine.

5. Fidelity & conventions

  • XLSX: always use Excel formulas, never hardcode computed values; run recalc.py after create/edit; deliver zero formula errors; follow input/formula/link color coding.
  • DOCX: use the redlining (tracked-changes) workflow for review; mark only what changes, preserve RSIDs; verify by converting to Markdown.
  • PPTX: web-safe fonts only; generate a thumbnail grid to visually verify before delivery.
  • PDF: pick the library by job — pypdf (structure), pdfplumber (text/tables), reportlab (create); nano-pdf for quick NL edits; flatten only at the end.
  • Diagrams: keep the .drawio/.mmd source in the repo; the image/GIF is the render.

6. Shared guardrails

  • Preserve the source: stay in the editable format; render only at the last step and say so.
  • Render is one-way: never overwrite the original with its rendered output.
  • No fabricated values: formulas compute (XLSX); OCR confidence is shown, not hidden.
  • No silent flattening: don't drop tracked changes, form fields, or layers without stating it.
  • Right tool per format: follow the matrix above; don't reach for a generic converter when a format-native spoke exists.
  • Diagram-as-code: source diagrams live as text (.drawio XML / Mermaid); export is derived.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.