agentsclimarketplace

Docx

Skill axoviq-ai/synthadoc/synthadoc/skills/docx

Synthadoc: An open-source LLM knowledge compilation engine that turns raw documents into structured, local-first wikis. A transparent, human-readable alternative to traditional RAG, which can be self-managed and self-improved without the use of any tools.

Install
npx -y skills add axoviq-ai/synthadoc --skill docx

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

What its author says it does

Copied from the file, not written here

Extract text from Microsoft Word documents

The file declares its own license as AGPL-3.0-or-later. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

0.8 KB, as published. Nobody here has run it

DOCX Skill

Extracts paragraph text from .docx files using python-docx.

Setup

pip install python-docx

Standalone usage

import asyncio
from synthadoc.skills.docx.scripts.main import DocxSkill

skill = DocxSkill()

async def main():
    result = await skill.extract("/path/to/document.docx")
    print(result.text)      # all paragraphs joined as plain text

asyncio.run(main())

When this skill is used

  • Source path ends with .docx
  • User intent contains: word document, docx

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.