Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/andregusman-raiz/a-gusman-claudenpx agentmods add skills/andregusman-raiz/a-gusman-claude/docxWrote 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/andregusman-raiz/a-gusman-claude/docx)<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/docx"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/docx/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/andregusman-raiz/a-gusman-claude/docx"><img src="https://agentmods.dev/badge/skills/andregusman-raiz/a-gusman-claude/docx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 4 Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
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.1 | $0.00044 | $0.02372 |
| Opus 5 | $0.00022 | $0.01186 |
| Sonnet 5 | $0.00009 | $0.00474 |
| Haiku 4.5 | $0.00004 | $0.00237 |
Grade A, and why
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 8d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 307 lines — stays where its author put it; the contents beside it link to each section on GitHub.
DOCX Skill
Criar, editar e analisar documentos Word. docx-js para criacao, OOXML para edicao, pandoc para extracao.
Workflow Decision Tree
Quer o que?
├── Ler/extrair texto → pandoc ou python-docx
├── Criar do zero → docx-js (Node) ou python-docx
├── Editar existente → OOXML unpack/edit/pack
├── Tracked changes → OOXML XML direto (w:ins, w:del)
├── Converter para PDF → LibreOffice headless
└── Converter para imagem → LibreOffice + ImageMagick
Reading Content
pandoc (text extraction)
# To plain text
pandoc input.docx -t plain -o output.txt
# To markdown
pandoc input.docx -t markdown -o output.md
# To HTML
pandoc input.docx -t html -o output.html
python-docx (structured reading)
from docx import Document
doc = Document("input.docx")
# Paragraphs
for para in doc.paragraphs:
print(f"[{para.style.name}] {para.text}")
# Tables
for table in doc.tables:
for row in table.rows:
print([cell.text for cell in row.cells])
Raw XML inspection
unzip -p input.docx word/document.xml | xmllint --format -
Creating with docx-js (Node)
npm install docx
import { Document, Packer, Paragraph, TextRun, HeadingLevel,
Table, TableRow, TableCell, WidthType, BorderStyle,
AlignmentType, PageBreak, Header, Footer,
ImageRun, NumberFormat } from "docx";
import * as fs from "fs";
const doc = new Document({
sections: [{
properties: {
page: {
size: { width: 11906, height: 16838 }, // A4 in twips
margin: { top: 1440, right: 1440, bottom: 1440, left: 1440 }, // 1 inch
},
},
headers: {
default: new Header({
children: [new Paragraph({ text: "Header Text", alignment: AlignmentType.RIGHT })],
}),
},
footers: {
default: new Footer({
children: [new Paragraph({
children: [new TextRun("Page "), new TextRun({ children: [PageNumber.CURRENT] })],
alignment: AlignmentType.CENTER,
})],
}),
},
children: [
// Title
new Paragraph({
text: "Document Title",
heading: HeadingLevel.TITLE,
alignment: AlignmentType.CENTER,
spacing: { after: 400 },
}),
// Heading
new Paragraph({
text: "Section 1",
heading: HeadingLevel.HEADING_1,
spacing: { before: 240, after: 120 },
}),
// Body text with formatting
new Paragraph({
children: [
new TextRun("Normal text, "),
new TextRun({ text: "bold text", bold: true }),
new TextRun(", "),
new TextRun({ text: "italic text", italics: true }),
new TextRun(", "),
new TextRun({ text: "colored text", color: "FF0000" }),
],
spacing: { after: 200 },
}),
// Bulleted list
new Paragraph({ text: "First item", bullet: { level: 0 } }),
new Paragraph({ text: "Second item", bullet: { level: 0 } }),
new Paragraph({ text: "Sub-item", bullet: { level: 1 } }),
// Numbered list
new Paragraph({
text: "Step one",
numbering: { reference: "numbered-list", level: 0 },
}),
// Table
new Table({
rows: [
new TableRow({
children: [
new TableCell({
children: [new Paragraph({ text: "Header 1", bold: true })],
width: { size: 3000, type: WidthType.DXA },
shading: { fill: "1a1a2e" },
}),
new TableCell({
children: [new Paragraph({ text: "Header 2", bold: true })],
width: { size: 3000, type: WidthType.DXA },
shading: { fill: "1a1a2e" },
}),
],
}),
new TableRow({
children: [
new TableCell({ children: [new Paragraph("Value 1")] }),
new TableCell({ children: [new Paragraph("Value 2")] }),
],
}),
],
width: { size: 100, type: WidthType.PERCENTAGE },
}),
// Page break
new Paragraph({ children: [new PageBreak()] }),
// Image
new Paragraph({
children: [
new ImageRun({
data: fs.readFileSync("image.png"),
transformation: { width: 400, height: 300 },
type: "png",
}),
],
}),
],
}],
// Numbering definitions
numbering: {
config: [{
reference: "numbered-list",
levels: [{
level: 0,
format: NumberFormat.DECIMAL,
text: "%1.",
alignment: AlignmentType.START,
}],
}],
},
});
// Generate file
const buffer = await Packer.toBuffer(doc);
fs.writeFileSync("output.docx", buffer);
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.
- 8d ago First seen · 307 lines · 44 tokens per session scan A 2498d2fb7d90
docx is a skill published in the GitHub repository andregusman-raiz/a-gusman-claude (19 stars, last pushed 2d ago), licensed MIT. It adds 44 tokens to every session and 2,372 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
docs-sync-internal
Use when code changes on the current branch need matching internal or developer documentation — "update our internal docs", "the architecture docs are stale after this change", "document what I just changed", "do the dev docs still match the code?" — or as a pre-push check that developer docs track the code. Narrower…
lab-report-writer
A writing workflow for producing structured, journal-style laboratory, research, engineering, or competition reports from experiment details and results.
community-profiler
A skill for analyzing technical community chat records from text, screenshots, JSON, or CSV. It creates member profiles, activity assessments, influence rankings, and community-health findings.
svg-flowchart
A tool for turning written steps into a consistent SVG flowchart. SVG is a scalable image format that can be embedded in web pages and documents.
frontend-dataviz
A skill for choosing and creating clear charts from user-provided data, following the Storytelling with Data approach. It matches chart types to tasks such as comparing categories, showing trends, or displaying distributions.
storybook-story-generation
Use after React components are built (Phase 4.5 of the Figma/Canva/screenshot pipeline) or whenever a project needs Storybook coverage — auto-generates .stories.tsx and .mdx docs from components via ts-morph AST parsing, with prop controls, variant stories, action args, and default args. Keywords: Storybook, generate…