원클릭으로
office-word
Read and write Microsoft Word (.docx) files. Use when the user asks to read, analyze, create, or convert Word documents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read and write Microsoft Word (.docx) files. Use when the user asks to read, analyze, create, or convert Word documents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Read and write Microsoft Excel (.xlsx) files. Use when the user asks to read, analyze, create, or convert Excel spreadsheets.
Read and write Microsoft PowerPoint (.pptx) files. Use when the user asks to read, analyze, create, or convert PowerPoint presentations.
Convert PDF files to Markdown format and create PDFs from Markdown. Use when the user asks to read, analyze, extract content from PDFs, or generate PDF documents.
| name | office-word |
| description | Read and write Microsoft Word (.docx) files. Use when the user asks to read, analyze, create, or convert Word documents. |
Converts a .docx to Markdown:
uv run --with python-docx ~/.kiro/skills/office-word/scripts/read_docx.py "<path_to_docx>"
Save as .md file:
uv run --with python-docx ~/.kiro/skills/office-word/scripts/read_docx.py "<path_to_docx>" "<output.md>"
Pipe markdown content directly into the script using --stdin:
echo '<markdown_content>' | uv run --with python-docx ~/.kiro/skills/office-word/scripts/write_docx.py --stdin "<output.docx>"
For multi-line content, use a heredoc:
uv run --with python-docx ~/.kiro/skills/office-word/scripts/write_docx.py --stdin "<output.docx>" <<'EOF'
# Title
Some paragraph with **bold** text.
EOF
If a .md file already exists, use it directly:
uv run --with python-docx ~/.kiro/skills/office-word/scripts/write_docx.py "<input.md>" "<output.docx>"
If you had to create the .md file as an intermediate step (it didn't exist before), delete it after generating the docx.
--stdin to avoid intermediate files..md file, convert, then delete it.