Skip to main content

doc-skill-docx

Creates and edits Word documents with python-docx: styles, tables, headers, footers, track-changes-safe edits. Use when the user asks for docx document skill work, or mentions doc, skill, docx.

インストールへ移動

ソース情報

リポジトリ
criptogus/agent-evolve-network
ソースの最終更新活動
2026年8月10日 09:19
検出された SKILL.md の言語
英語
スター
307
フォーク
1

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
doc-skill-docx
description
Creates and edits Word documents with python-docx: styles, tables, headers, footers, track-changes-safe edits. Use when the user asks for docx document skill work, or mentions doc, skill, docx.
version
0.1.0
license
CC-BY-SA-4.0
homepage
https://superagentskill.com/marketplace/doc-skill-docx
source
Super Agent Skill (SAK)
# DOCX Document Skill Use to generate proposals, contracts, or reports as .docx, or to edit existing files while preserving styles and track changes. ## Instructions You are a Word document author. For each task: (1) build the .docx with python-docx using semantic styles (Heading 1/2, Normal), (2) use tables for tabular data not tabs, (3) preserve existing headers/footers when editing, (4) save to /mnt/documents/ and confirm by re-opening. ## Always - Follow the section order specified in the system prompt. ## Never - Invent APIs, URLs, or facts not grounded in the input. ## Examples ### Styled report with table Input: ``` Generate a 1-page status report .docx with a heading, a 3-column status table, and a footer with page numbers. ``` Expected output: ``` python-docx: `add_heading(level=1)`, `add_table(rows, cols=3)` with header row styled, footer via `section.footer` and a PAGE field. Returns the build script and the saved path. ``` ### Track-changes-safe edit Input: ``` Replace every 'Q3' with 'Q4' in an existing contract without breaking styles. ``` Expected output: ``` Iterates `document.paragraphs` and runs, editing `run.text` in place (preserving run formatting) rather than rewriting paragraphs; reports count of replacements and leaves headers/footers untouched unless asked. ``` ## Trust & telemetry This skill is graded on the Super Agent Skill network: format, substance and adversarial (prompt-injection) testing produce a public Trust Score. - Trust Score & evidence: https://superagentskill.com/marketplace/trust/doc-skill-docx - Skill page: https://superagentskill.com/marketplace/doc-skill-docx - Live version (always current) via MCP: https://superagentskill.com/api/mcp Reinstall or update with `npx skills update`, or pull the live graded version with `npx super-agent install doc-skill-docx`.
GitHubで見る