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.
npx agentmods add skills/ihatesea69/kiro-kit/docxnpx skills add ihatesea69/kiro-kit --skill docxgit clone --depth 1 https://github.com/ihatesea69/kiro-kitWrote 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.
[](https://agentmods.dev/skills/ihatesea69/kiro-kit/docx)<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>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.
| Model | Per session | Once 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 |
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.
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
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.
- today First seen · 50 lines · 37 tokens per session scan A 1f46075f8858
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.
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.
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.
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…
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.
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…
docx-comment-reply
Reply to comments (批注) in Word .docx/.doc files: extract comment context, draft replies, write threaded replies back, and validate OOXML.