document-skills-docx

document-skills-docx is a skill for Claude Code, Codex from ihatesea69/kiro-kit. It costs 37 tokens per session (289 once invoked), scanned A, original, MIT.

Process and generate Word documents (DOCX) programmatically. Use when creating reports, extracting text from documents, or automating document generation in data pipelines.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ihatesea69/kiro-kit/docx
Any agent
npx skills add ihatesea69/kiro-kit --skill docx
Clone the repo
git clone --depth 1 https://github.com/ihatesea69/kiro-kit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for document-skills-docx

README.md
[![agentmods](https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/docx.svg)](https://agentmods.dev/skills/ihatesea69/kiro-kit/docx)
Your own site
<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/docx"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/docx.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 289 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin unknown No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00037 $0.00289
Opus 5 $0.00018 $0.00144
Sonnet 5 $0.00007 $0.00058
Haiku 4.5 $0.00004 $0.00029

Measured today against content hash 1f46075f8858, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

document-skills-docx scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.kiro/skills/document-skills/docx/SKILL.md · 50 lines

What it actually says

Document Skills - DOCX

Activate this skill when working with Microsoft Word documents in Python.

When to Use

  • Generating automated reports from data analysis
  • Extracting text and tables from Word documents
  • Creating templated documents with dynamic content
  • Converting analysis results to formatted reports
  • Batch processing document collections

Libraries

  • python-docx: Create and modify DOCX files
  • docx2txt: Simple text extraction
  • mammoth: Convert DOCX to HTML/Markdown

Usage

from docx import Document

# Create report
doc = Document()
doc.add_heading("Analysis Report", level=0)
doc.add_paragraph(f"Generated: {datetime.now()}")
doc.add_table(rows=len(data)+1, cols=len(columns))
doc.save("report.docx")

# Extract content
doc = Document("input.docx")
for para in doc.paragraphs:
    print(para.text)

Rules

  • Use templates for consistent formatting
  • Handle encoding issues with non-ASCII text
  • Validate document structure before processing
  • Close file handles properly in pipelines
  • Test with various DOCX versions
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 50 lines · 37 tokens per session scan A 1f46075f8858

Subscribe to this mod's changes

document-skills-docx is a skill published in the GitHub repository ihatesea69/kiro-kit (18 stars, last pushed 15d ago), licensed MIT. It adds 37 tokens to every session and 289 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

pptx-maker

Generate or restyle a PowerPoint deck. Use when the user wants to create or edit a .pptx presentation, build slides from text or a URL, or design a reusable slide style.

kirodotdev/KiroCrew · 43 tokens

make-pdf

Generate professional PDFs from code, markdown, or HTML in the current repository. Supports cover pages, tables of contents, watermarks, custom margins, and page sizes.

timurgaleev/vibestack · 37 tokens

bedrock-guardrails

Audit the guardrail layer around Amazon Bedrock usage: region pinning and cross-region inference profiles, IAM scoping to model ARNs, Bedrock Guardrails configuration (PII, denied topics, content and word filters, grounding, versioning), invocation logging and KMS, per-tenant isolation, prompt injection boundaries…

timurgaleev/vibestack · 127 tokens

media-ingest

Ingest video, audio, PDF, book, screenshot, and GitHub repo content into the brain. Multi-format handling with entity extraction and backlink propagation. Covers video-ingest, youtube-ingest, and book-ingest subtypes.

garrytan/gbrain · 52 tokens

read

Reads URLs and PDFs by fetching source content, defaulting to concise summaries for plain read requests and clean Markdown when asked to convert, save, quote, cite, or feed downstream work. Use when users ask in any language to read, fetch, check, summarize, quote, cite, convert, or save a URL or PDF. Not for local…

tw93/Waza · 78 tokens

docx-comment-reply

Reply to comments (批注) in Word .docx/.doc files: extract comment context, draft replies, write threaded replies back, and validate OOXML.

foryourhealth111-pixel/Vibe-Skills · 39 tokens