Home / rudycity / superagent · .agents/skills/docx/SKILL.md · GitHub

docx skillA

This file is byte-identical to the first copy the registry indexed, one of 4 copies on public GitHub. Same content hash, same audit grade.

docx is agent-read markdown (skill) from rudycity/superagent: Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, .

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# DOCX creation, editing, and analysis

## Overview

A .docx file is a ZIP archive containing XML files.

## Quick Reference

| Task | Approach |
|------|----------|
| Read/analyze content | `pandoc` or unpack for raw XML |
| Create new document | Use `docx-js` - see Creating New Documents below |
| Edit existing document | Unpack → edit XML → repack - see Editing Existing Documents below |

### Converting .doc to .docx

Legacy `.doc` files must be converted before editing:

```bash
python scripts/office/soffice.py --headless --convert-to docx document.doc
```

### Reading Content

```bash
# Text extraction with tracked changes
pandoc --track-changes=all document.docx -o output.md

# Raw XML access
python scripts/office/unpack.py document.docx unpacked/
```

### Converting to Images

```bash
python scripts/office/soffice.py --headless --convert-to pdf document.docx
pdftoppm -jpeg -r 150 document.pdf page
```

### Accepting Tracked Changes

To produce a clean document with all tracked changes accepted (requires LibreOffice):

```bash
python scripts/accept_changes.py input.docx output.docx
```

---

## Creating New Documents
…

Read the whole file at its exact version.

How to install

Latest version
mdr add rudycity/superagent/docx@git:20260626.019dba9
Exact content
mdr add rudycity/superagent/docx@sha256:cfbabd72b1aec7df

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_qmauq4e7lu3ivwzu.svg)](https://markdownregistry.com/a/art_qmauq4e7lu3ivwzu)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260626.019dba9 latest2026-06-26 019dba9 20,084 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (20084 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

rudycity/superagent · 23 stars · license MIT · pushed 2026-09-22 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_qmauq4e7lu3ivwzu
GET https://markdownregistry.com/api/v1/resolve?ref=rudycity/superagent/docx
GET https://markdownregistry.com/api/v1/blob/cfbabd72b1aec7dfaad988fb6e5e16b27dc744b9a00cae15db9045e95f53903e

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from rudycity/superagent

AGENTS.md@.agents agents
rudycity/superagent · .agents/AGENTS.md
git:20260904.647a093 · audit A · 23 stars
accessibility-compliance skill
rudycity/superagent · .agents/skills/accessibility-compliance/SKILL.md · Implement WCAG 2.2 compliant interfaces with mobile accessibility, inclusive design patterns, and assistive technology…
git:20260626.019dba9 · audit A · 23 stars
adhd skill
rudycity/superagent · .agents/skills/adhd/SKILL.md · Designed to assist users with ADHD (Attention Deficit Hyperactivity Disorder) by mitigating task paralysis, managing…
git:20260724.a9e7b76 · audit A · 23 stars
agent-browser skill
rudycity/superagent · .agents/skills/agent-browser/SKILL.md · Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages…
git:20260626.019dba9 · audit A · 23 stars
airflow-dag-patterns skill
rudycity/superagent · .agents/skills/airflow-dag-patterns/SKILL.md · Build production Apache Airflow DAGs with best practices for operators, sensors, testing, and deployment. Use when…
git:20260626.019dba9 · audit A · 23 stars
algorithmic-art skill
rudycity/superagent · .agents/skills/algorithmic-art/SKILL.md · Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users…
git:20260626.019dba9 · audit B · 23 stars
angular-migration skill
rudycity/superagent · .agents/skills/angular-migration/SKILL.md · Migrate from AngularJS to Angular using hybrid mode, incremental component rewriting, and dependency injection updates…
git:20260626.019dba9 · audit A · 23 stars
anti-reversing-techniques skill
rudycity/superagent · .agents/skills/anti-reversing-techniques/SKILL.md · Understand anti-reversing, obfuscation, and protection techniques encountered during software analysis. Use this skill…
git:20260626.019dba9 · audit A · 23 stars
api-design-principles skill
rudycity/superagent · .agents/skills/api-design-principles/SKILL.md · Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight…
git:20260626.019dba9 · audit A · 23 stars
architecture-decision-records skill
rudycity/superagent · .agents/skills/architecture-decision-records/SKILL.md · Write and maintain Architecture Decision Records (ADRs) following best practices for technical decision documentation…
git:20260626.019dba9 · audit A · 23 stars
architecture-patterns skill
rudycity/superagent · .agents/skills/architecture-patterns/SKILL.md · Implement proven backend architecture patterns including Clean Architecture, Hexagonal Architecture, and Domain-Driven…
git:20260626.019dba9 · audit A · 23 stars
article-writing skill
rudycity/superagent · .agents/skills/article-writing/SKILL.md · Write articles, guides, blog posts, tutorials, newsletter issues, and other long-form content in a distinctive voice…
git:20260802.933d9db · audit A · 23 stars

Every file in rudycity/superagent

Other files named docx

docx skill
anthropics/skills · skills/docx/SKILL.md · Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word…
git:20260717.fa0fa64 · audit A · 177,978 stars
docx skill
k-dense-ai/scientific-agent-skills · skills/docx/SKILL.md · Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word…
v2.1 · audit A · 46,526 stars
docx skill
eigent-ai/eigent · resources/example-skills/docx/SKILL.md · Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers…
git:20260226.343050b · audit A · 15,412 stars
docx skill
thinkinaixyz/deepchat · resources/skills/docx/SKILL.md · Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting…
git:20260812.5b18395 · audit A · 6,342 stars
docx skill
davepoon/buildwithclaude · plugins/all-skills/skills/docx/SKILL.md · Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting…
git:20260104.903b22f · audit A · 3,530 stars
docx skill
ginlix-ai/langalpha · plugins/langalpha_deliverables/skills/docx/SKILL.md · Word documents a human will review and edit: build with python-docx, edit an existing file in place with tracked…
git:20260921.26f807b · audit A · 1,774 stars
docx skill
axoviq-ai/synthadoc · synthadoc/skills/docx/SKILL.md · Extract text from Microsoft Word documents
v1.0 · audit A · 1,332 stars
docx skill
fcakyon/claude-codex-settings · plugins/anthropic-office-skills/skills/docx/SKILL.md · Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word…
git:20260720.d26d2c8 · audit A · 1,153 stars

Browse by kind, by grade A, or by owner.