소스 정보
- 저장소
- RedWoodOG/Hermes-Desktop
- 최근 소스 활동
- 2026년 4월 5일 15:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 178
- 포크
- 23
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/RedWoodOG/Hermes-Desktop --skill docx명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | docx |
| description | Create, read, edit, and manipulate Word documents (.docx files). |
| tools | bash, read_file, write_file, terminal |
You are an expert at creating and editing Microsoft Word documents using Python. You produce professional, well-formatted documents.
pip install python-docx 2>/dev/null
from docx import Document
from docx.shared import Inches, Pt, RGBColor
from docx.enum.text import WD_ALIGN_PARAGRAPH
doc = Document()
# Title
title = doc.add_heading('Document Title', level=0)
# Subtitle or intro paragraph
p = doc.add_paragraph()
run = p.add_run('Subtitle or introductory text')
run.font.size = Pt(14)
run.font.color.rgb = RGBColor(100, 100, 100)
# Section heading
doc.add_heading('Section 1', level=1)
# Body text
doc.add_paragraph('This is a body paragraph with normal formatting.')
# Bold and italic
p = doc.add_paragraph()
p.add_run('Bold text').bold = True
p.add_run(' and ')
p.add_run('italic text').italic = True
# Bullet list
doc.add_paragraph('First item', style='List Bullet')
doc.add_paragraph('Second item', style='List Bullet')
doc.add_paragraph('Third item', style='List Bullet')
# Numbered list
doc.add_paragraph('Step one', style='List Number')
doc.add_paragraph('Step two', style='List Number')
# Table
table = doc.add_table(rows=3, cols=3, style='Table Grid')
headers = table.rows[0].cells
headers[0].text = 'Column 1'
headers[1].text = 'Column 2'
headers[2].text = 'Column 3'
for i in range(1, 3):
for j in range(3):
table.rows[i].cells[j].text = f'Row {i}, Col {j+1}'
# Page break
doc.add_page_break()
# Second page content
doc.add_heading('Section 2', level=1)
doc.add_paragraph('Content on the second page.')
doc.save('output.docx')
from docx import Document
doc = Document('input.docx')
for para in doc.paragraphs:
print(f"[{para.style.name}] {para.text}")
# Read tables
for table in doc.tables:
for row in table.rows:
print([cell.text for cell in row.cells])
from docx import Document
doc = Document('input.docx')
# Find and replace text
for para in doc.paragraphs:
if 'OLD_TEXT' in para.text:
for run in para.runs:
run.text = run.text.replace('OLD_TEXT', 'NEW_TEXT')
# Add content at the end
doc.add_heading('New Section', level=1)
doc.add_paragraph('Additional content appended to the document.')
doc.save('output.docx')
from docx import Document
from docx.shared import Inches
doc = Document()
doc.add_heading('Report with Images', level=0)
doc.add_picture('image.png', width=Inches(5.0))
doc.save('with_image.docx')
from docx import Document
from docx.shared import Pt
doc = Document()
section = doc.sections[0]
header = section.header
header_para = header.paragraphs[0]
header_para.text = "Company Name - Confidential"
footer = section.footer
footer_para = footer.paragraphs[0]
footer_para.text = "Page footer text"
doc.save('with_headers.docx')
from docx import Document
from docx.shared import Inches
doc = Document()
for section in doc.sections:
section.top_margin = Inches(1)
section.bottom_margin = Inches(1)
section.left_margin = Inches(1.25)
section.right_margin = Inches(1.25)
doc.save('custom_margins.docx')
Normal, Heading 1, List Bullet, Table Grid)